From 2058d60354e62f84ef915c7409bba445ad934dba Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 13 Jan 2016 08:30:23 -0500 Subject: settings xml'd --- Changelog | 16 ++++++++++++++++ config/settings.xml | 4 ++++ include/common.h | 8 +++++--- main.cpp | 14 +++++++++++++- src/gameplay.cpp | 13 +++++++------ xml/playerSpawnHill1.xml | 4 +++- 6 files changed, 48 insertions(+), 11 deletions(-) create mode 100644 config/settings.xml diff --git a/Changelog b/Changelog index 30c1a50..cad80ba 100644 --- a/Changelog +++ b/Changelog @@ -515,3 +515,19 @@ - WIP xml'd world linking - textures? - music? + +1/12/2015: +========== + + - world linking xml'd + - xml'ing indoors + - shaderssss + - more music + +1/13/2015: +========== + + - discovered how intel and nvidia gpus handle lighting + - xml'd buildings and their indoors + - xml'd settings for screen dimensions + - xml'd item giving through npc dialog diff --git a/config/settings.xml b/config/settings.xml new file mode 100644 index 0000000..82363a8 --- /dev/null +++ b/config/settings.xml @@ -0,0 +1,4 @@ + + + + diff --git a/include/common.h b/include/common.h index be32019..bfd0126 100644 --- a/include/common.h +++ b/include/common.h @@ -78,13 +78,15 @@ typedef struct{ * The desired width of the game window. */ -#define SCREEN_WIDTH 1280 +//#define SCREEN_WIDTH 1280 +extern unsigned int SCREEN_WIDTH; /** * The desired height of the game window. */ -#define SCREEN_HEIGHT 720 +//#define SCREEN_HEIGHT 720 +extern unsigned int SCREEN_HEIGHT; //#define FULLSCREEN @@ -98,7 +100,7 @@ typedef struct{ * */ -#define HLINE 3 +#define HLINE 1 /** * A 'wrapper' for libc's srand(), as we hope to eventually have our own random number diff --git a/main.cpp b/main.cpp index dba3605..06df250 100644 --- a/main.cpp +++ b/main.cpp @@ -11,6 +11,9 @@ #include #include #include +#include + +using namespace tinyxml2; /* * TICKS_PER_SEC & MSEC_PER_TICK @@ -196,12 +199,21 @@ extern bool fadeWhite; extern bool fadeFast; extern int fadeIntensity; +unsigned int SCREEN_WIDTH; +unsigned int SCREEN_HEIGHT; + /******************************************************************************* * MAIN ************************************************************************ *******************************************************************************/ int main(/*int argc, char *argv[]*/){ //*argv = (char *)argc; + gameRunning=false; + + XMLDocument xml; + xml.LoadFile("config/settings.xml"); + SCREEN_WIDTH = xml.FirstChildElement("screen")->UnsignedAttribute("width"); + SCREEN_HEIGHT = xml.FirstChildElement("screen")->UnsignedAttribute("height"); /*! * (Attempt to) Initialize SDL libraries so that we can use SDL facilities and eventually @@ -529,7 +541,7 @@ void render(){ * see past the world render */ - if(currentWorld->getTheWidth() < SCREEN_WIDTH){ + if(currentWorld->getTheWidth() < (int)SCREEN_WIDTH){ offset.x = 0; }else if(!worldInside){ if(player->loc.x - SCREEN_WIDTH/2 < currentWorld->getTheWidth() * -0.5f) diff --git a/src/gameplay.cpp b/src/gameplay.cpp index c4249a4..6626811 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -75,6 +75,13 @@ int commonAIFunc(NPC *speaker){ if(!strcmp(exml->Name(),"text")){ if(exml->UnsignedAttribute("id") == idx){ + if((oxml = exml->FirstChildElement("give"))){ + while(oxml){ + player->inv->addItem((ITEM_ID)oxml->UnsignedAttribute("id"),oxml->UnsignedAttribute("count")); + oxml = oxml->NextSiblingElement(); + } + } + if((oxml = exml->FirstChildElement("option"))){ const char *op; char *bp1 = new char[1],*bp2,*tmp; @@ -281,12 +288,6 @@ SKIP: } } } - /*for(auto &l : earthlnk){ - if(!strcmp(file+4,l.name)){ - yoyo2 = &l.ptr; - break; - } - }*/ if(wxml->QueryFloatAttribute("x",&spawnx) != XML_NO_ERROR) earth.back()->addStructure((BUILD_SUB)wxml->UnsignedAttribute("type"),getRand() % earth.back()->getTheWidth() / 2.0f,100,yoyo);//,yoyo2); else diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml index 12d55fc..e96d6a5 100644 --- a/xml/playerSpawnHill1.xml +++ b/xml/playerSpawnHill1.xml @@ -3,7 +3,7 @@