From 90f3d2ff9fe7297dae0bdcee9c441e53177a0fb7 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 3 Mar 2016 09:26:06 -0500 Subject: efficiency stuffs --- include/Texture.h | 3 ++- include/entities.h | 4 ++-- include/tinyxml2.h | 7 +++++++ include/world.h | 11 ++++------- 4 files changed, 15 insertions(+), 10 deletions(-) (limited to 'include') diff --git a/include/Texture.h b/include/Texture.h index 659c32d..7201a4c 100644 --- a/include/Texture.h +++ b/include/Texture.h @@ -58,7 +58,7 @@ public: * Contains an array of the GLuints returned from Texture::loadTexture(). */ - GLuint *image = NULL; + std::vector image; /** * Populates the image array from a list of strings, with each string as a @@ -73,6 +73,7 @@ public: Texturec(uint amt,const char **paths); Texturec(std::vectorvec); + Texturec( std::initializer_list l ); /** * Frees memory taken by the image array. diff --git a/include/entities.h b/include/entities.h index 545f0a4..3b8a19b 100644 --- a/include/entities.h +++ b/include/entities.h @@ -228,8 +228,8 @@ class Structures : public Entity{ public: BUILD_SUB bsubtype; World *inWorld; - char *inside; - char *textureLoc; + std::string inside; + std::string textureLoc; Structures(); ~Structures(); diff --git a/include/tinyxml2.h b/include/tinyxml2.h index fb7464a..4282642 100755 --- a/include/tinyxml2.h +++ b/include/tinyxml2.h @@ -38,6 +38,8 @@ distribution. # include #endif +#include + /* TODO: intern strings instead of allocation. */ @@ -1187,6 +1189,11 @@ public: */ const char* Attribute( const char* name, const char* value=0 ) const; + /** Functions the same as Attribute(), but returns the result + as a std::string. + */ + std::string StrAttribute( const char* name, const char* value=0 ) const; + /** Given an attribute name, IntAttribute() returns the value of the attribute interpreted as an integer. 0 will be returned if there is an error. For a method with error diff --git a/include/world.h b/include/world.h index b3d1071..7b9383a 100644 --- a/include/world.h +++ b/include/world.h @@ -279,7 +279,7 @@ public: * A vector of all particles in this world. */ - std::vector particles; + std::vector particles; std::vector village; @@ -294,7 +294,7 @@ public: * Vector of all building textures for the current world style */ - std::vector sTexLoc; + std::vector sTexLoc; /** * NULLifies pointers and allocates necessary memory. This should be @@ -317,8 +317,7 @@ public: * the structure. */ - void addStructure(BUILD_SUB subtype,float x,float y, char* tex, const char *inside); - //void addVillage(int buildingCount, int npcMin, int npcMax,const char *inside); + void addStructure(BUILD_SUB subtype,float x,float y, std::string tex, std::string inside); /** * Adds a Mob to the world with the specified type and coordinates. @@ -346,7 +345,7 @@ public: * upon object interaction. */ - void addObject(/*ITEM_ID id*/std::string in,const char *pickupDialog, float x, float y); + void addObject(std::string in, const char *pickupDialog, float x, float y); /** * Adds a particle to the world with the specified coordinates, dimensions, @@ -479,8 +478,6 @@ public: class Arena : public World { private: - //vec2 pxy; - //World *exit; Mob *mmob; public: Arena(World *leave,Player *p,Mob *m); -- cgit v1.2.3