#pragma region License /* License (OLC-3) ~~~~~~~~~~~~~~~ Copyright 2024 Joshua Sigona Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions or derivations of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions or derivative works in binary form must reproduce the above copyright notice. This list of conditions and the following disclaimer must be reproduced in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Portions of this software are copyright © 2024 The FreeType Project (www.freetype.org). Please see LICENSE_FT.txt for more information. All rights reserved. */ #pragma endregion #include "VisualNovel.h" #include "GameState.h" #include "AdventuresInLestoria.h" #include #include "DEFINES.h" #include "Unlock.h" #include "Menu.h" #include "util.h" INCLUDE_game INCLUDE_GFX VisualNovel VisualNovel::novel; safemap>>VisualNovel::storyLevelData; std::setVisualNovel::graphicsToLoad; Font VisualNovel::font,VisualNovel::narratorFont,VisualNovel::locationFont; void VisualNovel::Initialize(){ font=Font("GFX_Prefix"_S+"dialog_font_size"_s[0]+".ttf","dialog_font_size"_i[1]); narratorFont=Font("GFX_Prefix"_S+"narrator_font_size"_s[0]+".ttf","narrator_font_size"_i[1]); locationFont=Font("GFX_Prefix"_S+"location_font_size"_s[0]+".ttf","location_font_size"_i[1]); for(int chapter=1;chapter<=6;chapter++){ std::string chapterFilename="assets/"+"story_directory"_S+"Chapter "+std::to_string(chapter)+".txt"; std::ifstream file(chapterFilename); if(!file)ERR("Failed to open file "<args; size_t counter=0; while(text.find(',',counter)!=std::string::npos){ std::string arg=text.substr(counter,text.find(',',counter)-counter); counter=text.find(',',counter)+1; if(arg.find(',')!=std::string::npos)ERR("Found an erraneous comma inside parsed arg "<&arguments){ for(std::string&arg:arguments){ if(arg=="story_player_name"_S){ graphicsToLoad.insert("character_image_location"_S+"Player_F.png"); graphicsToLoad.insert("character_image_location"_S+"Player_M.png"); }else{ graphicsToLoad.insert("character_image_location"_S+arg+".png"); } } }; size_t spacePos=line.find(' '); std::vectorarguments; if(spacePos!=std::string::npos){//There are arguments to parse... size_t endingBracePos=line.find('}',spacePos+1); if(endingBracePos==std::string::npos)ERR("Cannot parse arguments from "<(arguments[0])); }else if(line.find("{BACKGROUND")!=std::string::npos){//Background command if(arguments.size()!=1)ERR("Arguments size is "<(arguments[0])); }else if(line.find("{LEFT")!=std::string::npos){//Left command AddImagesForLoading(arguments); data.push_back(std::make_unique(arguments)); }else if(line.find("{RIGHT")!=std::string::npos){//Right command AddImagesForLoading(arguments); data.push_back(std::make_unique(arguments)); }else if(line.find("{PAUSE")!=std::string::npos){//Pause command if(arguments.size()!=0)ERR("Arguments size is "<()); }else{ ERR("Unknown command "<arguments=ReadCSVArgs(args); if(arguments.size()>2)ERR("Expecting a maximum of two arguments for parsed args in "<(arguments[0])); }else{ data.push_back(std::make_unique(arguments[0],arguments[1])); } }break; default:{ auto&data=storyLevelData.at(currentStory); data.push_back(std::make_unique(line)); }break; } } } storyLevelData.SetInitialized(); }; void VisualNovel::LoadVisualNovel(std::string storyLevelName){ novel.storyLevel=storyLevelName; novel.activeText=U""; novel.leftCharacters.clear(); novel.rightCharacters.clear(); novel.backgroundFilename=novel.prevBackgroundFilename=""; novel.commands.clear(); novel.commandIndex=0; for(std::unique_ptr&command:storyLevelData.at(storyLevelName)){ novel.commands.push_back(command.get()); } GameState::ChangeState(States::STORY,0.5f); novel.ExecuteNextCommand(); novel.prevTheme=Menu::GetCurrentTheme().GetThemeName(); Menu::themeSelection="Purple"; } void VisualNovel::Update(){ if(transitionTime==0&&game->KEY_CONFIRM.Pressed()){ activeText=U""; novel.ExecuteNextCommand(); } locationDisplayTime=std::max(0.f,locationDisplayTime-game->GetElapsedTime()); transitionTime=std::max(0.f,transitionTime-game->GetElapsedTime()); textScrollTime=std::max(0.f,textScrollTime-game->GetElapsedTime()); } void VisualNovel::ExecuteNextCommand(){ if(commandIndexExecute(novel); }else{ Unlock::UnlockCurrentMap(); Menu::themeSelection=novel.prevTheme; GameState::ChangeState(States::OVERWORLD_MAP,0.5f); } } void VisualNovel::Draw(){ if(backgroundFilename!=""){ float alpha=1; if(transitionTime>0){ alpha=util::lerp(0,1,1-(transitionTime/maxTransitionTime)); } if(prevBackgroundFilename!=""){ game->DrawDecal({0,0},GFX["story_background_image_location"_S+prevBackgroundFilename].Decal()); } game->DrawDecal({0,0},GFX["story_background_image_location"_S+backgroundFilename].Decal(),{1,1},{255,255,255,uint8_t(255*alpha)}); }else{ game->FillRectDecal({0,0},game->GetScreenSize()); } for(int i=leftCharacters.size()-1;i>=0;i--){ //Start 72 from the bottom. std::u32string character(leftCharacters[i].begin(),leftCharacters[i].end()); Pixel fadeColor=WHITE; if(character!=actualSpeakerName)fadeColor={128,128,128,255}; game->DrawRotatedDecal(vi2d{0,game->GetScreenSize().y}-vi2d{-i*64-36,152},GFX[GetCharacterImage(character)].Decal(),0,GFX[GetCharacterImage(character)].Sprite()->Size()/2,vf2d{72.f,168.f}/GFX[GetCharacterImage(character)].Sprite()->Size(),fadeColor); } for(int i=rightCharacters.size()-1;i>=0;i--){ //Start 72 from the bottom. std::u32string character(rightCharacters[i].begin(),rightCharacters[i].end()); Pixel fadeColor=WHITE; if(character!=actualSpeakerName)fadeColor={128,128,128,255}; game->DrawRotatedDecal(game->GetScreenSize()-vi2d{i*64+36,152},GFX[GetCharacterImage(character)].Decal(),0,GFX[GetCharacterImage(character)].Sprite()->Size()/2,vf2d{-72.f,168.f}/GFX[GetCharacterImage(character)].Sprite()->Size(),fadeColor); } if(locationDisplayTime>0){ std::u32string locationStr=std::u32string(locationDisplayText.begin(),locationDisplayText.end()); FontRect textSize=locationFont.GetStringBounds(locationStr); textSize.offset*=2; textSize.size*=2; game->FillRectDecal(game->GetScreenSize()/2-textSize.size/2-vi2d{4,4}+textSize.offset/2,textSize.size+vi2d{8,8},BLACK); game->DrawRectDecal(game->GetScreenSize()/2-textSize.size/2-vi2d{4,4}+textSize.offset/2,textSize.size+vi2d{8,8},WHITE); game->DrawShadowStringDecal(locationFont,game->GetScreenSize()/2-textSize.size/2+textSize.offset/2,locationStr,WHITE,VERY_DARK_BLUE,{2.f,2.f}); } if(activeText.length()>0){ vf2d nameDisplayPos={24.f,game->GetScreenSize().y-60.f}; vf2d nameDisplayWindowSize={48.f,-12.f}; if(speakerDisplayName.length()>0){ Menu::DrawThemedWindow(nameDisplayPos,nameDisplayWindowSize); } vf2d dialogDisplayPos={24.f,game->GetScreenSize().y-48.f}; vf2d dialogDisplaySize={game->GetScreenSize().x-48.f,20.f}; Menu::DrawThemedWindow(dialogDisplayPos,dialogDisplaySize); FontRect dialogTextSize=font.GetStringBounds(activeText); FontRect speakerTextSize=font.GetStringBounds(speakerDisplayName); if(speakerDisplayName.length()>0){ game->DrawShadowStringDecal(font,nameDisplayPos-vf2d{10,7}+(nameDisplayWindowSize+vf2d{24,0})/2-speakerTextSize.size/2+speakerTextSize.offset/2,speakerDisplayName); game->DrawShadowStringDecal(font,dialogDisplayPos-vf2d{10,6}+dialogTextSize.offset,activeText); }else{ game->DrawDropShadowStringDecal(narratorFont,dialogDisplayPos-vf2d{10,6}+dialogTextSize.offset,activeText); } float yOffset=util::lerp(dialogDisplaySize.y+12,-8,textScrollTime/maxTextScrollTime); game->DrawPolygonDecal( Menu::GetPatchPart(1,1).Decal(), {dialogDisplayPos-vf2d{12,-yOffset},dialogDisplayPos+vf2d{-12,dialogDisplaySize.y+12},dialogDisplayPos+dialogDisplaySize+vf2d{12,12},dialogDisplayPos+vf2d{dialogDisplaySize.x+12,yOffset}}, {{0,0},{0,1},{1,1},{1,0}}, {{255,255,255,240},{255,255,255,255},{255,255,255,255},{255,255,255,240}}); } } std::string VisualNovel::GetCharacterImage(std::u32string name){ if(name==U"You"){ //Assume we are using female player avatar for now! return "character_image_location"_S+"Player_F.png"; } return "character_image_location"_S+std::string(name.begin(),name.end())+".png"; } VisualNovel::VisualNovel(){} Command::Command(){} void LocationCommand::Execute(VisualNovel&vn){ vn.locationDisplayTime=5.f; vn.locationDisplayText=location; vn.ExecuteNextCommand(); } LocationCommand::LocationCommand(std::string location) :location(location){} CommandType::CommandType LocationCommand::GetType(){return CommandType::LOCATION;} void BackgroundCommand::Execute(VisualNovel&vn){ vn.prevBackgroundFilename=vn.backgroundFilename; vn.backgroundFilename=backgroundFilename; vn.transitionTime=2.0f; vn.ExecuteNextCommand(); } BackgroundCommand::BackgroundCommand(std::string backgroundFilename) :backgroundFilename(backgroundFilename){} CommandType::CommandType BackgroundCommand::GetType(){return CommandType::BACKGROUND;} void LeftCommand::Execute(VisualNovel&vn){ vn.leftCharacters=characters; vn.ExecuteNextCommand(); } LeftCommand::LeftCommand(std::vectorcharacters) :characters(characters){} CommandType::CommandType LeftCommand::GetType(){return CommandType::LEFT;} void RightCommand::Execute(VisualNovel&vn){ vn.rightCharacters=characters; vn.ExecuteNextCommand(); } RightCommand::RightCommand(std::vectorcharacters) :characters(characters){} CommandType::CommandType RightCommand::GetType(){return CommandType::RIGHT;} void SpeakerCommand::Execute(VisualNovel&vn){ vn.speakerDisplayName.assign(displayedName.begin(),displayedName.end()); vn.actualSpeakerName.assign(actualSpeakerName.begin(),actualSpeakerName.end()); vn.ExecuteNextCommand(); } SpeakerCommand::SpeakerCommand(std::string speaker) :displayedName(speaker),actualSpeakerName(speaker){} SpeakerCommand::SpeakerCommand(std::string displayedName,std::string speaker) :displayedName(displayedName),actualSpeakerName(speaker){} CommandType::CommandType SpeakerCommand::GetType(){return CommandType::SPEAKER;} void DialogCommand::Execute(VisualNovel&vn){ vn.textScrollTime=VisualNovel::maxTextScrollTime; bool mustDisplay=vn.activeText.length()==0; Font*displayFont=&VisualNovel::font; if(vn.actualSpeakerName.length()==0)displayFont=&VisualNovel::narratorFont; std::u32string newText=util::WrapText(game,vn.activeText+(vn.activeText.length()>0?U" ":U"")+std::u32string(dialog.begin(),dialog.end()),game->GetScreenSize().x-24,*displayFont,{1,1}); if(VisualNovel::font.GetStringBounds(newText).size.y>48){//Hit the maximum of 3 lines. if(!mustDisplay){ vn.commandIndex--; }else{ vn.activeText=newText; } }else{ vn.activeText=newText; if(vn.commandIndexGetType(); if(nextCommandType==CommandType::DIALOG){ //Only add to dialog when the next command type is a dialog as well. vn.ExecuteNextCommand(); } } } } DialogCommand::DialogCommand(std::string dialog) :dialog(dialog){} CommandType::CommandType DialogCommand::GetType(){return CommandType::DIALOG;} void PauseCommand::Execute(VisualNovel&vn){} PauseCommand::PauseCommand(){} CommandType::CommandType PauseCommand::GetType(){return CommandType::PAUSE;}