From c35571e37bdd6d2fe9b95e4265c150265585f3a9 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Wed, 30 Mar 2016 08:41:16 -0400 Subject: Inv and textures --- assets/style/classic/bg/bgWoodTile.png | Bin 75181 -> 205428 bytes config/items.xml | 40 ++- include/Quest.h | 72 ----- include/Quest.hpp | 72 +++++ include/Texture.h | 103 ------ include/Texture.hpp | 103 ++++++ include/common.h | 252 --------------- include/common.hpp | 253 +++++++++++++++ include/config.h | 14 - include/config.hpp | 14 + include/entities.h | 294 ------------------ include/entities.hpp | 294 ++++++++++++++++++ include/inventory.h | 71 ----- include/inventory.hpp | 71 +++++ include/threadpool.h | 53 ---- include/threadpool.hpp | 53 ++++ include/ui.h | 197 ------------ include/ui.hpp | 197 ++++++++++++ include/world.h | 551 --------------------------------- include/world.hpp | 551 +++++++++++++++++++++++++++++++++ main.cpp | 10 +- src/Quest.cpp | 22 +- src/Texture.cpp | 2 +- src/common.cpp | 8 +- src/config.cpp | 10 +- src/entities.cpp | 4 +- src/gameplay.cpp | 14 +- src/inventory.cpp | 40 ++- src/threadpool.cpp | 2 +- src/ui.cpp | 2 +- src/world.cpp | 12 +- xml/playerSpawnHill1_Building1.xml | 40 ++- 32 files changed, 1758 insertions(+), 1663 deletions(-) delete mode 100644 include/Quest.h create mode 100644 include/Quest.hpp delete mode 100644 include/Texture.h create mode 100644 include/Texture.hpp delete mode 100644 include/common.h create mode 100644 include/common.hpp delete mode 100644 include/config.h create mode 100644 include/config.hpp delete mode 100644 include/entities.h create mode 100644 include/entities.hpp delete mode 100644 include/inventory.h create mode 100644 include/inventory.hpp delete mode 100644 include/threadpool.h create mode 100644 include/threadpool.hpp delete mode 100644 include/ui.h create mode 100644 include/ui.hpp delete mode 100644 include/world.h create mode 100644 include/world.hpp diff --git a/assets/style/classic/bg/bgWoodTile.png b/assets/style/classic/bg/bgWoodTile.png index 5b631bf..95b0667 100644 Binary files a/assets/style/classic/bg/bgWoodTile.png and b/assets/style/classic/bg/bgWoodTile.png differ diff --git a/config/items.xml b/config/items.xml index eddab3e..b3a10a5 100644 --- a/config/items.xml +++ b/config/items.xml @@ -8,4 +8,42 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/include/Quest.h b/include/Quest.h deleted file mode 100644 index 8b1e142..0000000 --- a/include/Quest.h +++ /dev/null @@ -1,72 +0,0 @@ -/** @file Quest.h - * @brief The quest handling system. - * - * This file contains Quest and QuestHandler, used to manage quests inside the - * game. - */ - -#ifndef QUEST_H -#define QUEST_H - -#include - -#include -#include - -/** - * When defined, DEBUG allows extra messages to be printed to the terminal for - * debugging purposes. - */ - -#define DEBUG - -struct need_t { - std::string name; - int n; -}; - -typedef struct { - std::string title; - std::string desc; - struct item_t reward; - std::vector need; -} Quest; - -/** - * The Quest Handler class. - * - * This class handles quests, including the assigning, dropping, and completing - * of the quests. - */ - -class QuestHandler { -public: - std::vectorcurrent; - - /** - * Adds a quest to the current quest vector by its title. - */ - - int assign(std::string title,std::string desc,std::string req); - - /** - * Drops a quest through its title. - */ - - int drop(std::string title); - - /** - * Finishes a quest through it's title, also giving a pointer to the Entity - * that gave the quest originally. - */ - - int finish(std::string t); - - /** - * Returns true if this handler is currently taking the quest. - */ - - bool hasQuest(std::string t); -}; - -#endif // QUEST_H diff --git a/include/Quest.hpp b/include/Quest.hpp new file mode 100644 index 0000000..eaf9426 --- /dev/null +++ b/include/Quest.hpp @@ -0,0 +1,72 @@ +/** @file Quest.h + * @brief The quest handling system. + * + * This file contains Quest and QuestHandler, used to manage quests inside the + * game. + */ + +#ifndef QUEST_H +#define QUEST_H + +#include + +#include +#include + +/** + * When defined, DEBUG allows extra messages to be printed to the terminal for + * debugging purposes. + */ + +#define DEBUG + +struct need_t { + std::string name; + int n; +}; + +typedef struct { + std::string title; + std::string desc; + struct item_t reward; + std::vector need; +} Quest; + +/** + * The Quest Handler class. + * + * This class handles quests, including the assigning, dropping, and completing + * of the quests. + */ + +class QuestHandler { +public: + std::vectorcurrent; + + /** + * Adds a quest to the current quest vector by its title. + */ + + int assign(std::string title,std::string desc,std::string req); + + /** + * Drops a quest through its title. + */ + + int drop(std::string title); + + /** + * Finishes a quest through it's title, also giving a pointer to the Entity + * that gave the quest originally. + */ + + int finish(std::string t); + + /** + * Returns true if this handler is currently taking the quest. + */ + + bool hasQuest(std::string t); +}; + +#endif // QUEST_H diff --git a/include/Texture.h b/include/Texture.h deleted file mode 100644 index 816a8bf..0000000 --- a/include/Texture.h +++ /dev/null @@ -1,103 +0,0 @@ -/** @file Texture.h - * @brief Defines a method for loading textures. - * - * This file gives facilities for easily loading and binding textures. - */ - -#ifndef TEXTURE_H -#define TEXTURE_H - -#include - -/** - * When defined, DEBUG allows extra messages to be printed to the terminal for - * debugging purposes. - */ - -#define DEBUG - -/** - * Texture functions are given a namespace for better organization. - */ - -namespace Texture { - - /** - * Loads a texture from the given file name, returning the GLuint used for - * later referencing of the texture. - */ - - GLuint loadTexture(std::string fileName); - - void freeTextures(void); - - void initColorIndex(); - vec2 getIndex(Color c); - dim2 imageDim(std::string fileName); -} - -/** - * The Texturec class. - * - * This class can handle an array of textures and allows easy binding of those - * textures. - */ - -class Texturec{ -private: - - /** - * Contains the index in the image array of the currently loaded texture. - */ - - unsigned int texState; - -public: - - /** - * Contains an array of the GLuints returned from Texture::loadTexture(). - */ - - std::vector image; - - /** - * Populates the image array from a list of strings, with each string as a - * separate argument. - */ - - Texturec(uint amt, ...); - - /** - * Populates the image array from an array of strings. - */ - - Texturec(uint amt,const char **paths); - Texturec(std::vectorvec); - Texturec( std::initializer_list l ); - - /** - * Frees memory taken by the image array. - */ - - ~Texturec(); - - /** - * Binds the next texture in the array, incrementing texState. - */ - - void bindNext(); - - /** - * Binds the previous texture in the array, decrementing texState. - */ - - void bindPrev(); - - /** - * Binds the texture with the provided index. - */ - - void bind(unsigned int); -}; - -#endif //TEXTURE_H diff --git a/include/Texture.hpp b/include/Texture.hpp new file mode 100644 index 0000000..4202043 --- /dev/null +++ b/include/Texture.hpp @@ -0,0 +1,103 @@ +/** @file Texture.h + * @brief Defines a method for loading textures. + * + * This file gives facilities for easily loading and binding textures. + */ + +#ifndef TEXTURE_H +#define TEXTURE_H + +#include + +/** + * When defined, DEBUG allows extra messages to be printed to the terminal for + * debugging purposes. + */ + +#define DEBUG + +/** + * Texture functions are given a namespace for better organization. + */ + +namespace Texture { + + /** + * Loads a texture from the given file name, returning the GLuint used for + * later referencing of the texture. + */ + + GLuint loadTexture(std::string fileName); + + void freeTextures(void); + + void initColorIndex(); + vec2 getIndex(Color c); + dim2 imageDim(std::string fileName); +} + +/** + * The Texturec class. + * + * This class can handle an array of textures and allows easy binding of those + * textures. + */ + +class Texturec{ +private: + + /** + * Contains the index in the image array of the currently loaded texture. + */ + + unsigned int texState; + +public: + + /** + * Contains an array of the GLuints returned from Texture::loadTexture(). + */ + + std::vector image; + + /** + * Populates the image array from a list of strings, with each string as a + * separate argument. + */ + + Texturec(uint amt, ...); + + /** + * Populates the image array from an array of strings. + */ + + Texturec(uint amt,const char **paths); + Texturec(std::vectorvec); + Texturec( std::initializer_list l ); + + /** + * Frees memory taken by the image array. + */ + + ~Texturec(); + + /** + * Binds the next texture in the array, incrementing texState. + */ + + void bindNext(); + + /** + * Binds the previous texture in the array, decrementing texState. + */ + + void bindPrev(); + + /** + * Binds the texture with the provided index. + */ + + void bind(unsigned int); +}; + +#endif //TEXTURE_H diff --git a/include/common.h b/include/common.h deleted file mode 100644 index 6f453b0..0000000 --- a/include/common.h +++ /dev/null @@ -1,252 +0,0 @@ -/** @file common.h - * @brief Common items needed by most other files. - * - * This file contains headers, variables and functions that are needed in - * most other files included in this project. - */ - -#ifndef COMMON_H -#define COMMON_H - -// holy moly -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#define GLEW_STATIC -#include - -#include -#include -#include -#include - -#ifdef __WIN32__ -typedef unsigned int uint; -#undef near -#endif - -/** - * This flag lets the compiler know that we want to use shaders. - */ - -#define SHADERS - -template -N abso(N v){ - if(v < 0){ - return v * -1; - }else - return v; -} - -template -float averagef(A v){ - float avg = 0; - for(auto &a : v){ - avg += a; - } - avg /= v.size(); - return avg; -} - - -extern GLuint colorIndex; // Texture.cpp? - -/** - * This structure contains a set of coordinates for ease of coding. - */ - -typedef struct { - int x; - int y; -} ivec2; - -typedef struct { - float x; - float y; -} vec2; - -typedef struct { - float x; - float y; - float z; -} vec3; - -typedef ivec2 dim2; - -/** - * This structure contains two sets of coordinates for ray drawing. - */ - -typedef struct { - vec2 start; - vec2 end; -} Ray; - -struct col { - float red; - float green; - float blue; - col operator-=(float a){ - red-=a; - green-=a; - blue-=a; - return{red+a,green+a,blue+a}; - } - col operator+=(float a){ - return{red+a,green+a,blue+a}; - } - col operator=(float a){ - return{red=a,green=a,blue=a}; - } -}; - -typedef col Color; - -/** - * Define the game's name (displayed in the window title). - */ - -#define GAME_NAME "Independent Study v.0.6 alpha - NOW WITH more c++" - -/** - * The desired width of the game window. - */ - -extern unsigned int SCREEN_WIDTH; - -/** - * The desired height of the game window. - */ - -extern unsigned int SCREEN_HEIGHT; - -extern bool FULLSCREEN; -extern bool uiLoop; -extern std::mutex mtx; - -/** - * Define the length of a single HLINE. - * The game has a great amount of elements that need to be drawn or detected, and having each - * of them use specific hard-coded numbers would be painful to debug. As a solution, this - * definition was made. Every item being drawn to the screen and most object detection/physic - * handling is done based off of this number. Increasing it will give the game a zoomed-in - * feel, while decreasing it will do the opposite. - * - */ - -extern unsigned int HLINE; - -extern float VOLUME_MASTER; -extern float VOLUME_MUSIC; -extern float VOLUME_SFX; -/** - * A 'wrapper' for libc's srand(), as we hope to eventually have our own random number - * generator. - */ - -#define initRand(s) srand(s) - -/** - * A 'wrapper' for libc's rand(), as we hope to eventually have our own random number - * generator. - */ - -#define getRand() rand() - -#define randGet rand -#define randInit srand - -/** - * Included in common.h is a prototype for DEBUG_prints, which writes a formatted - * string to the console containing the callee's file and line number. This macro simplifies - * it to a simple printf call. - * - * DEBUG must be defined for this macro to function. - */ - -#define DEBUG_printf( message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__ ) - -/** - * Defines pi for calculations that need it. - */ - -#define PI 3.1415926535 - - -/** - * References the variable in main.cpp, used for smoother drawing. - */ - -extern unsigned int deltaTime; - -/** - * References the variable in main.cpp, used for drawing with the player. - */ - -extern vec2 offset; - -/** - * Counts the number of times logic() (see main.cpp) has been called, for animating - * sprites. - */ -extern unsigned int loops; - -extern GLuint shaderProgram; - -/** - * Prints a formatted debug message to the console, along with the callee's file and line - * number. - */ - -void DEBUG_prints(const char* file, int line, const char *s,...); - -/** - * Sets color using glColor3ub(), but handles potential overflow. - */ - -void safeSetColor(int r,int g,int b); - -/** - * Sets color using glColor4ub(), but handles potential overflow. - */ - -void safeSetColorA(int r,int g,int b,int a); - - -/** - * We've encountered many problems when attempting to create delays for triggering - * the logic function. As a result, we decided on using the timing libraries given - * by in the standard C++ library. This function simply returns the amount - * of milliseconds that have passed since the epoch. - */ - -#ifdef __WIN32__ -#define millis() SDL_GetTicks() -#else -unsigned int millis(void); -#endif // __WIN32__ - -int getdir(const char *dir, std::vector &files); -void strVectorSortAlpha(std::vector *v); - -const char *readFile(const char *path); - -int strCreateFunc(const char *equ); - -template -size_t arrAmt(N (&)[s]){return s;} - -void UserError(std::string reason); - -#endif // COMMON_H diff --git a/include/common.hpp b/include/common.hpp new file mode 100644 index 0000000..d69fc91 --- /dev/null +++ b/include/common.hpp @@ -0,0 +1,253 @@ +/** @file common.h + * @brief Common items needed by most other files. + * + * This file contains headers, variables and functions that are needed in + * most other files included in this project. + */ + +#ifndef COMMON_H +#define COMMON_H + +// holy moly +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define GLEW_STATIC +#include + +#include +#include +#include +#include + +#ifdef __WIN32__ +typedef unsigned int uint; +#undef near +#endif + +/** + * This flag lets the compiler know that we want to use shaders. + */ + +#define SHADERS +#define C(x) std::cout << x << std::endl + +template +N abso(N v){ + if(v < 0){ + return v * -1; + }else + return v; +} + +template +float averagef(A v){ + float avg = 0; + for(auto &a : v){ + avg += a; + } + avg /= v.size(); + return avg; +} + + +extern GLuint colorIndex; // Texture.cpp? + +/** + * This structure contains a set of coordinates for ease of coding. + */ + +typedef struct { + int x; + int y; +} ivec2; + +typedef struct { + float x; + float y; +} vec2; + +typedef struct { + float x; + float y; + float z; +} vec3; + +typedef ivec2 dim2; + +/** + * This structure contains two sets of coordinates for ray drawing. + */ + +typedef struct { + vec2 start; + vec2 end; +} Ray; + +struct col { + float red; + float green; + float blue; + col operator-=(float a){ + red-=a; + green-=a; + blue-=a; + return{red+a,green+a,blue+a}; + } + col operator+=(float a){ + return{red+a,green+a,blue+a}; + } + col operator=(float a){ + return{red=a,green=a,blue=a}; + } +}; + +typedef col Color; + +/** + * Define the game's name (displayed in the window title). + */ + +#define GAME_NAME "Independent Study v.0.6 alpha - NOW WITH more c++" + +/** + * The desired width of the game window. + */ + +extern unsigned int SCREEN_WIDTH; + +/** + * The desired height of the game window. + */ + +extern unsigned int SCREEN_HEIGHT; + +extern bool FULLSCREEN; +extern bool uiLoop; +extern std::mutex mtx; + +/** + * Define the length of a single HLINE. + * The game has a great amount of elements that need to be drawn or detected, and having each + * of them use specific hard-coded numbers would be painful to debug. As a solution, this + * definition was made. Every item being drawn to the screen and most object detection/physic + * handling is done based off of this number. Increasing it will give the game a zoomed-in + * feel, while decreasing it will do the opposite. + * + */ + +extern unsigned int HLINE; + +extern float VOLUME_MASTER; +extern float VOLUME_MUSIC; +extern float VOLUME_SFX; +/** + * A 'wrapper' for libc's srand(), as we hope to eventually have our own random number + * generator. + */ + +#define initRand(s) srand(s) + +/** + * A 'wrapper' for libc's rand(), as we hope to eventually have our own random number + * generator. + */ + +#define getRand() rand() + +#define randGet rand +#define randInit srand + +/** + * Included in common.h is a prototype for DEBUG_prints, which writes a formatted + * string to the console containing the callee's file and line number. This macro simplifies + * it to a simple printf call. + * + * DEBUG must be defined for this macro to function. + */ + +#define DEBUG_printf( message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__ ) + +/** + * Defines pi for calculations that need it. + */ + +#define PI 3.1415926535 + + +/** + * References the variable in main.cpp, used for smoother drawing. + */ + +extern unsigned int deltaTime; + +/** + * References the variable in main.cpp, used for drawing with the player. + */ + +extern vec2 offset; + +/** + * Counts the number of times logic() (see main.cpp) has been called, for animating + * sprites. + */ +extern unsigned int loops; + +extern GLuint shaderProgram; + +/** + * Prints a formatted debug message to the console, along with the callee's file and line + * number. + */ + +void DEBUG_prints(const char* file, int line, const char *s,...); + +/** + * Sets color using glColor3ub(), but handles potential overflow. + */ + +void safeSetColor(int r,int g,int b); + +/** + * Sets color using glColor4ub(), but handles potential overflow. + */ + +void safeSetColorA(int r,int g,int b,int a); + + +/** + * We've encountered many problems when attempting to create delays for triggering + * the logic function. As a result, we decided on using the timing libraries given + * by in the standard C++ library. This function simply returns the amount + * of milliseconds that have passed since the epoch. + */ + +#ifdef __WIN32__ +#define millis() SDL_GetTicks() +#else +unsigned int millis(void); +#endif // __WIN32__ + +int getdir(const char *dir, std::vector &files); +void strVectorSortAlpha(std::vector *v); + +const char *readFile(const char *path); + +int strCreateFunc(const char *equ); + +template +size_t arrAmt(N (&)[s]){return s;} + +void UserError(std::string reason); + +#endif // COMMON_H diff --git a/include/config.h b/include/config.h deleted file mode 100644 index 4d56d9c..0000000 --- a/include/config.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#include -#include -#include - -void readConfig(void); - -void updateConfig(void); - -void saveConfig(); - -#endif //CONFIG_H \ No newline at end of file diff --git a/include/config.hpp b/include/config.hpp new file mode 100644 index 0000000..4d56d9c --- /dev/null +++ b/include/config.hpp @@ -0,0 +1,14 @@ +#ifndef CONFIG_H +#define CONFIG_H + +#include +#include +#include + +void readConfig(void); + +void updateConfig(void); + +void saveConfig(); + +#endif //CONFIG_H \ No newline at end of file diff --git a/include/entities.h b/include/entities.h deleted file mode 100644 index 1250708..0000000 --- a/include/entities.h +++ /dev/null @@ -1,294 +0,0 @@ -#ifndef ENTITIES_H -#define ENTITIES_H - -#include -#include -#include -#include - -#include - -#define DEBUG - -#define NPCp(n) ((NPC *)n) -#define Structurep(n) ((Structures *)n) -#define Mobp(n) ((Mob *)n) - -#define PLAYER_INV_SIZE 30 // The size of the player's inventory -#define NPC_INV_SIZE 3 // Size of an NPC's inventory - -enum _TYPE { - OBJECTT = -2, - STRUCTURET, - PLAYERT, - NPCT, - MERCHT, - MOBT -}; - -enum GENDER{ - MALE, - FEMALE -}; - -enum MOB_SUB { - MS_RABBIT = 1, - MS_BIRD, - MS_TRIGGER, - MS_DOOR, - MS_PAGE -}; - -enum BUILD_SUB{ - TOWN_HALL = 0, - HOUSE = 1, - HOUSE2 = 2, - HOUSE3 = 3, - HOUSE4 = 4, - FOUNTAIN = 5, - LAMP_POST = 6, - FIRE_PIT = 7, - STALL_MARKET = 70, - STALL_TRADER = 71 -}; - -class Trade{ -public: - std::string item[2]; - int quantity[2]; - Trade(int qo, const char* o, int qt, const char* t){ - item[0] = o; - item[1] = t; - - quantity[0] = qo; - quantity[1] = qt; - - std::cout << "Trading: " << quantity[0] << " " << item[0] << " for " << quantity[1] << " " << item[1] << std::endl; - } - Trade(){} -}; - -class World; - -class Particles{ -public: - vec2 loc; - float width; - float height; - float velx; - float vely; - Color color; - vec2 index; - float duration; - bool canMove; - bool fountain; - bool gravity; - bool behind; - Particles(float x, float y, float w, float h, float vx, float vy, Color c, float d){ - loc.x = x; - loc.y = y; - width = w; - height = h; - velx = vx; - vely = vy; - color = c; - duration = d; - fountain = false; - gravity = true; - behind = false; - index = Texture::getIndex(c); - } - ~Particles(){ - - } - void draw(){ - glActiveTexture(GL_TEXTURE0); - glBindTexture(GL_TEXTURE_2D, colorIndex); - glUseProgram(shaderProgram); - glUniform1i(glGetUniformLocation(shaderProgram, "sampler"), 0); - glEnable(GL_TEXTURE_2D); - glColor3ub(255,255,255); - glBegin(GL_QUADS); - glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x, loc.y); - glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x + width, loc.y); - glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x + width, loc.y + height); - glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x, loc.y + width); - glEnd(); - glDisable(GL_TEXTURE_2D); - glUseProgram(0); - } - bool kill(float delta){ - duration -= delta; - if(duration <= 0.0f){ - return true; - } - else return false; - } -}; - -void initEntity(); - -class Entity{ -public: - Entity *followee; - Inventory *inv; - - /* - * Movement variables - */ - - vec2 loc; - vec2 vel; - - float width; - float height; - - float speed; // A speed factor for X movement - - /* - * Movement flags - */ - - bool near; // Causes name to display - bool canMove; // Enables movement - bool canJape; // Enables world leaving - bool right,left; // Direction faced by Entity - bool alive; - bool hit; - unsigned char ground; // Shows how the Entity is grounded (if it is) - - /* - * Health variables - */ - - float health; - float maxHealth; - - /* - * Identification variables - */ - - _TYPE type; - int subtype; - - char *name; - GENDER gender; - - Texturec *tex; - Texturec *ntex; - - unsigned int randDialog; - - void draw(void); - void spawn(float, float); - - int ticksToUse; // Used by wander() - - virtual void wander(int){} - virtual void interact(){} - - void follow(Entity *e); - - virtual ~Entity(){} -}; - -class Player : public Entity{ -public: - QuestHandler qh; - - Player(); - ~Player(); - void save(void); - void sspawn(float x,float y); -}; - -class Structures : public Entity{ -public: - BUILD_SUB bsubtype; - World *inWorld; - std::string inside; - std::string textureLoc; - - Structures(); - ~Structures(); - - unsigned int spawn(BUILD_SUB, float, float); -}; - - -class NPC : public Entity { -public: - std::vectoraiFunc; - int dialogIndex; - - NPC(); - NPC(NPC *n); - ~NPC(); - - void addAIFunc(int (*func)(NPC *),bool preload); - void clearAIFunc(void); - virtual void interact(); - virtual void wander(int); -}; - -class Merchant : public NPC{ -public: - std::vectortrade; - uint currTrade; - - void interact(); - Structures *inside; - - Merchant(); - ~Merchant(); - - void wander(int); -}; - -class Mob : public Entity{ -public: - bool aggressive; - double init_y; - void (*hey)(Mob *callee); - std::string heyid; - - Mob(int); - ~Mob(); - - void wander(int); -}; - -class Object : public Entity{ -private: - std::string iname; -public: - std::string pickupDialog; - bool questObject = false; - - Object(); - Object(std::string in,std::string pd); - ~Object(); - - void reloadTexture(void); - - void interact(void); -}; -#endif // ENTITIES_H - -/** -ENTITY TYPES --1 STRUCTURES -|->1 Village -|->2 Castle -| -0 PLAYERS -|->Player -| -1 NPCS -|->0 Base -|->1 Merchant -| -2 MOBS -|->1 Rabbit -|->2 Bird -**/ diff --git a/include/entities.hpp b/include/entities.hpp new file mode 100644 index 0000000..c62e625 --- /dev/null +++ b/include/entities.hpp @@ -0,0 +1,294 @@ +#ifndef ENTITIES_H +#define ENTITIES_H + +#include +#include +#include +#include + +#include + +#define DEBUG + +#define NPCp(n) ((NPC *)n) +#define Structurep(n) ((Structures *)n) +#define Mobp(n) ((Mob *)n) + +#define PLAYER_INV_SIZE 43 // The size of the player's inventory +#define NPC_INV_SIZE 3 // Size of an NPC's inventory + +enum _TYPE { + OBJECTT = -2, + STRUCTURET, + PLAYERT, + NPCT, + MERCHT, + MOBT +}; + +enum GENDER{ + MALE, + FEMALE +}; + +enum MOB_SUB { + MS_RABBIT = 1, + MS_BIRD, + MS_TRIGGER, + MS_DOOR, + MS_PAGE +}; + +enum BUILD_SUB{ + TOWN_HALL = 0, + HOUSE = 1, + HOUSE2 = 2, + HOUSE3 = 3, + HOUSE4 = 4, + FOUNTAIN = 5, + LAMP_POST = 6, + FIRE_PIT = 7, + STALL_MARKET = 70, + STALL_TRADER = 71 +}; + +class Trade{ +public: + std::string item[2]; + int quantity[2]; + Trade(int qo, const char* o, int qt, const char* t){ + item[0] = o; + item[1] = t; + + quantity[0] = qo; + quantity[1] = qt; + + std::cout << "Trading: " << quantity[0] << " " << item[0] << " for " << quantity[1] << " " << item[1] << std::endl; + } + Trade(){} +}; + +class World; + +class Particles{ +public: + vec2 loc; + float width; + float height; + float velx; + float vely; + Color color; + vec2 index; + float duration; + bool canMove; + bool fountain; + bool gravity; + bool behind; + Particles(float x, float y, float w, float h, float vx, float vy, Color c, float d){ + loc.x = x; + loc.y = y; + width = w; + height = h; + velx = vx; + vely = vy; + color = c; + duration = d; + fountain = false; + gravity = true; + behind = false; + index = Texture::getIndex(c); + } + ~Particles(){ + + } + void draw(){ + glActiveTexture(GL_TEXTURE0); + glBindTexture(GL_TEXTURE_2D, colorIndex); + glUseProgram(shaderProgram); + glUniform1i(glGetUniformLocation(shaderProgram, "sampler"), 0); + glEnable(GL_TEXTURE_2D); + glColor3ub(255,255,255); + glBegin(GL_QUADS); + glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x, loc.y); + glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x + width, loc.y); + glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x + width, loc.y + height); + glTexCoord2f(.25*index.x, .125*index.y); glVertex2i(loc.x, loc.y + width); + glEnd(); + glDisable(GL_TEXTURE_2D); + glUseProgram(0); + } + bool kill(float delta){ + duration -= delta; + if(duration <= 0.0f){ + return true; + } + else return false; + } +}; + +void initEntity(); + +class Entity{ +public: + Entity *followee; + Inventory *inv; + + /* + * Movement variables + */ + + vec2 loc; + vec2 vel; + + float width; + float height; + + float speed; // A speed factor for X movement + + /* + * Movement flags + */ + + bool near; // Causes name to display + bool canMove; // Enables movement + bool canJape; // Enables world leaving + bool right,left; // Direction faced by Entity + bool alive; + bool hit; + unsigned char ground; // Shows how the Entity is grounded (if it is) + + /* + * Health variables + */ + + float health; + float maxHealth; + + /* + * Identification variables + */ + + _TYPE type; + int subtype; + + char *name; + GENDER gender; + + Texturec *tex; + Texturec *ntex; + + unsigned int randDialog; + + void draw(void); + void spawn(float, float); + + int ticksToUse; // Used by wander() + + virtual void wander(int){} + virtual void interact(){} + + void follow(Entity *e); + + virtual ~Entity(){} +}; + +class Player : public Entity{ +public: + QuestHandler qh; + + Player(); + ~Player(); + void save(void); + void sspawn(float x,float y); +}; + +class Structures : public Entity{ +public: + BUILD_SUB bsubtype; + World *inWorld; + std::string inside; + std::string textureLoc; + + Structures(); + ~Structures(); + + unsigned int spawn(BUILD_SUB, float, float); +}; + + +class NPC : public Entity { +public: + std::vectoraiFunc; + int dialogIndex; + + NPC(); + NPC(NPC *n); + ~NPC(); + + void addAIFunc(int (*func)(NPC *),bool preload); + void clearAIFunc(void); + virtual void interact(); + virtual void wander(int); +}; + +class Merchant : public NPC{ +public: + std::vectortrade; + uint currTrade; + + void interact(); + Structures *inside; + + Merchant(); + ~Merchant(); + + void wander(int); +}; + +class Mob : public Entity{ +public: + bool aggressive; + double init_y; + void (*hey)(Mob *callee); + std::string heyid; + + Mob(int); + ~Mob(); + + void wander(int); +}; + +class Object : public Entity{ +private: + std::string iname; +public: + std::string pickupDialog; + bool questObject = false; + + Object(); + Object(std::string in,std::string pd); + ~Object(); + + void reloadTexture(void); + + void interact(void); +}; +#endif // ENTITIES_H + +/** +ENTITY TYPES +-1 STRUCTURES +|->1 Village +|->2 Castle +| +0 PLAYERS +|->Player +| +1 NPCS +|->0 Base +|->1 Merchant +| +2 MOBS +|->1 Rabbit +|->2 Bird +**/ diff --git a/include/inventory.h b/include/inventory.h deleted file mode 100644 index 7369642..0000000 --- a/include/inventory.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef INVENTORY_H -#define INVENTORY_H - -#include -#include - -#include - -#define DEBUG - -class Item{ -public: - std::string name,type; - - float width; - float height; - int maxStackSize; - - std::string texloc; - Texturec *tex; - - GLuint rtex(){ - return tex->image[0]; - } -}; - -struct item_t{ - uint count; - uint id; -} __attribute__((packed)); - -class Inventory { -private: - unsigned int size; - int os = 0; -public: - std::vector items; - unsigned int sel; - bool invOpen = false; - bool invOpening = false; - bool invHover = false; - bool selected = false; - bool mouseSel = false; - bool usingi = false; - - Inventory(unsigned int s); // Creates an inventory of size 's' - ~Inventory(void); // Free's allocated memory - - int addItem(std::string name,uint count); - int takeItem(std::string name,uint count); - int hasItem(std::string name); - - int useItem(void); - bool detectCollision(vec2,vec2); - - void setSelection(unsigned int s); - void setSelectionUp(); - void setSelectionDown(); - - void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now) -}; - -void initInventorySprites(void); -void destroyInventory(void); - -const char *getItemTexturePath(std::string name); -GLuint getItemTexture(std::string name); -float getItemWidth(std::string name); -float getItemHeight(std::string name); - -#endif // INVENTORY_H diff --git a/include/inventory.hpp b/include/inventory.hpp new file mode 100644 index 0000000..cbce9d9 --- /dev/null +++ b/include/inventory.hpp @@ -0,0 +1,71 @@ +#ifndef INVENTORY_H +#define INVENTORY_H + +#include +#include + +#include + +#define DEBUG + +class Item{ +public: + std::string name,type; + + float width; + float height; + int maxStackSize; + + std::string texloc; + Texturec *tex; + + GLuint rtex(){ + return tex->image[0]; + } +}; + +struct item_t{ + uint count; + uint id; +} __attribute__((packed)); + +class Inventory { +private: + unsigned int size; + int os = 0; +public: + std::vector items; + unsigned int sel; + bool invOpen = false; + bool invOpening = false; + bool invHover = false; + bool selected = false; + bool mouseSel = false; + bool usingi = false; + + Inventory(unsigned int s); // Creates an inventory of size 's' + ~Inventory(void); // Free's allocated memory + + int addItem(std::string name,uint count); + int takeItem(std::string name,uint count); + int hasItem(std::string name); + + int useItem(void); + bool detectCollision(vec2,vec2); + + void setSelection(unsigned int s); + void setSelectionUp(); + void setSelectionDown(); + + void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now) +}; + +void initInventorySprites(void); +void destroyInventory(void); + +const char *getItemTexturePath(std::string name); +GLuint getItemTexture(std::string name); +float getItemWidth(std::string name); +float getItemHeight(std::string name); + +#endif // INVENTORY_H diff --git a/include/threadpool.h b/include/threadpool.h deleted file mode 100644 index c341673..0000000 --- a/include/threadpool.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifndef THREADPOOL_H -#define THREADPOOL_H - -#include -#include -#include -#include -#include -#include -#include - -using namespace std; - -class ThreadPool -{ -public: - - // Constructor. - ThreadPool(int threads); - - // Destructor. - ~ThreadPool(); - - // Adds task to a task queue. - void Enqueue(function f); - - // Shut down the pool. - void ShutDown(); - -private: - // Thread pool storage. - vector threadPool; - - // Queue to keep track of incoming tasks. - queue> tasks; - - // Task queue mutex. - mutex tasksMutex; - - // Condition variable. - condition_variable condition; - - // Indicates that pool needs to be shut down. - bool terminate; - - // Indicates that pool has been terminated. - bool stopped; - - // Function that will be invoked by our threads. - void Invoke(); -}; - -#endif //THRE \ No newline at end of file diff --git a/include/threadpool.hpp b/include/threadpool.hpp new file mode 100644 index 0000000..c341673 --- /dev/null +++ b/include/threadpool.hpp @@ -0,0 +1,53 @@ +#ifndef THREADPOOL_H +#define THREADPOOL_H + +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +class ThreadPool +{ +public: + + // Constructor. + ThreadPool(int threads); + + // Destructor. + ~ThreadPool(); + + // Adds task to a task queue. + void Enqueue(function f); + + // Shut down the pool. + void ShutDown(); + +private: + // Thread pool storage. + vector threadPool; + + // Queue to keep track of incoming tasks. + queue> tasks; + + // Task queue mutex. + mutex tasksMutex; + + // Condition variable. + condition_variable condition; + + // Indicates that pool needs to be shut down. + bool terminate; + + // Indicates that pool has been terminated. + bool stopped; + + // Function that will be invoked by our threads. + void Invoke(); +}; + +#endif //THRE \ No newline at end of file diff --git a/include/ui.h b/include/ui.h deleted file mode 100644 index 2a7518f..0000000 --- a/include/ui.h +++ /dev/null @@ -1,197 +0,0 @@ -/** @file ui.h - * @brief Contains functions for handling the user interface. - */ - -#ifndef UI_H -#define UI_H - -#include -#include -#include - -#include -#include -#include -#include -#include -#include FT_FREETYPE_H - -#define DEBUG - -typedef void(*menuFunc)(); - -struct menuItem{ - int member; - union{ - struct{ - vec2 loc; - dim2 dim; - Color color; - const char* text; - menuFunc func; - }button; - struct{ - vec2 loc; - dim2 dim; - Color color; - float minValue; - float maxValue; - const char* text; - float* var; - - float sliderLoc; - }slider; - }; -}; - -class Menu{ -public: - std::vectoritems; - Menu *child; - Menu *parent; - ~Menu(){ - child = NULL; - parent = NULL; - delete child; - delete parent; - } - - void gotoChild(); - void gotoParent(); -}; - -typedef uint8_t BYTE; -typedef uint16_t WORD; -typedef uint32_t DWORD; -typedef int32_t LONG; - -typedef struct{ - WORD bfType; - DWORD bfSize; - WORD bfReserved1, bfReserved2; - DWORD bfOffBits; //how many bytes before the image data -} __attribute__ ((packed)) BITMAPFILEHEADER; - -typedef struct{ - DWORD biSize; //size of header in bytes - LONG biWidth; - LONG biHeight; - WORD biPlanes; - WORD biBitCount; //how many bits are in a pixel - DWORD biCompression; - DWORD biSizeImage; //size of image in bytes - LONG biXPelsPerMeter; - LONG biYPelsPerMeter; - DWORD biClrUsed; //how many colors there are - DWORD biClrImportant; //important colors -} __attribute__ ((packed)) BITMAPINFOHEADER; - -namespace ui { - menuItem createButton(vec2 l, dim2 d, Color c, const char* t, menuFunc f); - menuItem createChildButton(vec2 l, dim2 d, Color c, const char* t); - menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t); - menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v); - /** - * Contains the coordinates of the mouse inside the window. - */ - - extern vec2 mouse; - - /* - * These flags are used elsewhere. - */ - - extern unsigned int fontSize; - - extern bool debug; - extern bool posFlag; - - extern unsigned char dialogOptChosen; - extern unsigned char merchOptChosen; - extern bool dialogBoxExists; - extern bool dialogImportant; - extern bool dialogPassive; - - extern unsigned int textWrapLimit; - extern int fontTransInv; - - /* - * Initializes the FreeType system. - */ - - void initFonts(void); - - void destroyFonts(void); - - /* - * Sets the current font/font size. - */ - - void setFontFace(const char *ttf); - void setFontSize(unsigned int size); - void setFontColor(unsigned char r,unsigned char g,unsigned char b, unsigned char a); - - /* - * Draw a centered string. - */ - - float putStringCentered(const float x,const float y,std::string s); - - /* - * Draws a formatted string at the given coordinates. - */ - - float putText(const float x,const float y,const char *str,...); - - /* - * Creates a dialogBox text string (format: `name`: `text`). This function simply sets up - * variables that are drawn in ui::draw(). When the dialog box exists player control is - * limited until a right click is given, closing the box. - */ - - void dialogBox(const char *name,const char *opt,bool passive,const char *text,...); - void merchantBox(const char *name,Trade trade,const char *opt,bool passive,const char *text,...); - void merchantBox(); - void closeBox(); - void waitForDialog(void); - - void drawPage( std::string path ); - /* - * Draws a larger string in the center of the screen. Drawing is done inside this function. - */ - - void importantText(const char *text,...); - void passiveImportantText(int duration,const char *text,...); - - /* - * Draw various UI elements (dialogBox, player health) - */ - - void draw(void); - - - /* - * Draw various menu items - */ - void quitGame(); - void drawMenu(Menu* menu); - - - /* - * Handle keyboard/mouse events. - */ - void handleEvents(void); - - /* - * Toggle the black overlay thing. - */ - - void toggleBlack(void); - void toggleBlackFast(void); - void toggleWhite(void); - void toggleWhiteFast(void); - void waitForCover(void); - -} - -#endif // UI_H diff --git a/include/ui.hpp b/include/ui.hpp new file mode 100644 index 0000000..0ab76de --- /dev/null +++ b/include/ui.hpp @@ -0,0 +1,197 @@ +/** @file ui.h + * @brief Contains functions for handling the user interface. + */ + +#ifndef UI_H +#define UI_H + +#include +#include +#include + +#include +#include +#include +#include +#include +#include FT_FREETYPE_H + +#define DEBUG + +typedef void(*menuFunc)(); + +struct menuItem{ + int member; + union{ + struct{ + vec2 loc; + dim2 dim; + Color color; + const char* text; + menuFunc func; + }button; + struct{ + vec2 loc; + dim2 dim; + Color color; + float minValue; + float maxValue; + const char* text; + float* var; + + float sliderLoc; + }slider; + }; +}; + +class Menu{ +public: + std::vectoritems; + Menu *child; + Menu *parent; + ~Menu(){ + child = NULL; + parent = NULL; + delete child; + delete parent; + } + + void gotoChild(); + void gotoParent(); +}; + +typedef uint8_t BYTE; +typedef uint16_t WORD; +typedef uint32_t DWORD; +typedef int32_t LONG; + +typedef struct{ + WORD bfType; + DWORD bfSize; + WORD bfReserved1, bfReserved2; + DWORD bfOffBits; //how many bytes before the image data +} __attribute__ ((packed)) BITMAPFILEHEADER; + +typedef struct{ + DWORD biSize; //size of header in bytes + LONG biWidth; + LONG biHeight; + WORD biPlanes; + WORD biBitCount; //how many bits are in a pixel + DWORD biCompression; + DWORD biSizeImage; //size of image in bytes + LONG biXPelsPerMeter; + LONG biYPelsPerMeter; + DWORD biClrUsed; //how many colors there are + DWORD biClrImportant; //important colors +} __attribute__ ((packed)) BITMAPINFOHEADER; + +namespace ui { + menuItem createButton(vec2 l, dim2 d, Color c, const char* t, menuFunc f); + menuItem createChildButton(vec2 l, dim2 d, Color c, const char* t); + menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t); + menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v); + /** + * Contains the coordinates of the mouse inside the window. + */ + + extern vec2 mouse; + + /* + * These flags are used elsewhere. + */ + + extern unsigned int fontSize; + + extern bool debug; + extern bool posFlag; + + extern unsigned char dialogOptChosen; + extern unsigned char merchOptChosen; + extern bool dialogBoxExists; + extern bool dialogImportant; + extern bool dialogPassive; + + extern unsigned int textWrapLimit; + extern int fontTransInv; + + /* + * Initializes the FreeType system. + */ + + void initFonts(void); + + void destroyFonts(void); + + /* + * Sets the current font/font size. + */ + + void setFontFace(const char *ttf); + void setFontSize(unsigned int size); + void setFontColor(unsigned char r,unsigned char g,unsigned char b, unsigned char a); + + /* + * Draw a centered string. + */ + + float putStringCentered(const float x,const float y,std::string s); + + /* + * Draws a formatted string at the given coordinates. + */ + + float putText(const float x,const float y,const char *str,...); + + /* + * Creates a dialogBox text string (format: `name`: `text`). This function simply sets up + * variables that are drawn in ui::draw(). When the dialog box exists player control is + * limited until a right click is given, closing the box. + */ + + void dialogBox(const char *name,const char *opt,bool passive,const char *text,...); + void merchantBox(const char *name,Trade trade,const char *opt,bool passive,const char *text,...); + void merchantBox(); + void closeBox(); + void waitForDialog(void); + + void drawPage( std::string path ); + /* + * Draws a larger string in the center of the screen. Drawing is done inside this function. + */ + + void importantText(const char *text,...); + void passiveImportantText(int duration,const char *text,...); + + /* + * Draw various UI elements (dialogBox, player health) + */ + + void draw(void); + + + /* + * Draw various menu items + */ + void quitGame(); + void drawMenu(Menu* menu); + + + /* + * Handle keyboard/mouse events. + */ + void handleEvents(void); + + /* + * Toggle the black overlay thing. + */ + + void toggleBlack(void); + void toggleBlackFast(void); + void toggleWhite(void); + void toggleWhiteFast(void); + void waitForCover(void); + +} + +#endif // UI_H diff --git a/include/world.h b/include/world.h deleted file mode 100644 index 0b87134..0000000 --- a/include/world.h +++ /dev/null @@ -1,551 +0,0 @@ -/** @file world.h - * @brief The world system. - * - * This file contains the classes and variables necessary to create an in-game - * world. - */ - -#ifndef WORLD_H -#define WORLD_H - -#include -#include - -#define GROUND_HEIGHT_INITIAL 80 -#define GROUND_HEIGHT_MINIMUM 60 -#define GROUND_HEIGHT_MAXIMUM 110 - -#define GROUND_HILLINESS 10 - -/** - * Defines how many game ticks it takes for a day to elapse. - */ - -#define DAY_CYCLE 12000 - -/** - * The background type enum. - * This enum contains all different possibilities for world backgrounds; used - * in World::setBackground() to select the appropriate images. - */ - -enum class WorldBGType : unsigned char { - Forest, /**< A forest theme. */ - WoodHouse /**< An indoor wooden house theme. */ -}; - -/** - * The weather type enum. - * This enum contains every type of weather currently implemented in the game. - * Weather is set by the world somewhere. - */ - -enum class WorldWeather : unsigned char { - Sunny = 0, /**< Sunny/daytime */ - Dark, /**< Nighttime */ - Rain, /**< Rain */ - Snowy /**< Snow */ -}; - -/** - * The line structure. - * This structure is used to store the world's ground, stored in vertical - * lines. Dirt color and grass properties are also kept track of here. - */ - -typedef struct { - bool grassUnpressed; - float grassHeight[2]; - float groundHeight; - unsigned char groundColor; -} WorldData; - -/** - * A value used by World::draw() for shading, ranges from -50 to 50 depending - * on the current time of day. - */ - -extern int worldShade; - -/** - * The path to the currently loaded XML file. - */ - -extern std::string currentXML; - -// prototype so Village can reference it -class World; - -/** - * The light structure, used to store light coordinates and color. - */ - -class Light{ -public: - vec2 loc; /**< Light location */ - Color color; /**< Light color */ - float radius; /**< Light radius */ - - bool belongsTo; - Entity *following; - - bool flame; - float fireFlicker; - vec2 fireLoc; - - Light(vec2 l, Color c, float r){ - loc = l; - color = c; - radius = r; - - belongsTo = false; - following = nullptr; - - flame = false; - } - - void makeFlame(void){ - flame = true; - } - - void follow(Entity *f){ - following=f; - belongsTo = true; - } -}; - - -/** - * The village class, used to group structures into villages. - */ - -class Village { -public: - std::string name; - vec2 start; - vec2 end; - bool in; - std::vector build; - - Village(const char *meme, World *w); - ~Village(void){} -}; - -/** - * The world class. This class does everything a world should do. - */ - -class World { -protected: - - /** - * The line array. - * - * This array is created through 'new' in World::generate(), with an amount - * of elements provided by the function. - */ - - std::vector worldData; - - /** - * Starting x coordinate. - * - * This x value is the point at which line[0] should reside, can be used to - * calculate the width of the world. - */ - - int worldStart; - - /** - * Handle physics for a single entity. - * - * This function handles gravity and death for an entity. The public version - * of this, World::detect(), handles all entities in the world as well as - * the player. World::singleDetect() should never be used outside of - * World::detect(), which is why it is declared private. - */ - - void singleDetect( Entity *e ); - - /** - * Empties all entity vectors. - * - * Each entity vector is iterated through, calling delete for each entry. - * Once all specific vectors are cleared, the general entity vector is - * emptied of the pointers to those other vectors. This function should only - * be called in World's destructor, as there shouldn't be another reason to - * call this function. - */ - - void deleteEntities( void ); - - /** - * Number of lines in the world. - * - * While this number is helpful for knowing the world's width, it is kept - * private for security reasons. To compensate for this, - * World::getTheWidth() is provided (see below). - */ - - unsigned int lineCount; - - /** - * An array of star coordinates. - */ - - std::vector star; - - /** - * The Texturec object that holds the background sprites for this world. - */ - - Texturec *bgTex; - - /** - * Defines the set of background images that should be used for this world. - */ - - WorldBGType bgType; - - /** - * The Mix_Music object that holds the background soundtrack for the world. - */ - - Mix_Music *bgmObj; - - /** - * The file path of the song wished to be loaded by bgmObj. - */ - - std::string bgm; - - std::vector bgFiles; - std::vector bgFilesIndoors; - -public: - - /** - * The filename of the XML file for the world to the left; NULL if no world - * is present. - */ - - std::string toLeft; - - /** - * The filename of the XML file for the world to the right; NULL if no world - * is present. - */ - - std::string toRight; - - /** - * Sets what XML file to use for loading the world to the left. - */ - - std::string setToLeft( std::string file ); - - /** - * Sets what XML file to use for loading the world to the right. - */ - - std::string setToRight( std::string file ); - - /** - * A vector of pointers to every NPC, Structure, Mob, and Object in this - * world. - */ - - std::vector entity; - - /** - * A vector of all NPCs in this world. - */ - - std::vector npc; - std::vector merchant; - - /** - * A vector of all Structures in this world. - */ - - std::vector build; - - /** - * A vector of all Mobs in this world. - */ - - std::vector mob; - - /** - * A vector of all Objects in this world. - */ - - std::vector object; - - /** - * A vector of all particles in this world. - */ - - std::vector particles; - - - std::vector village; - - /** - * A vector of all light elements in this world. - */ - - std::vector light; - - /** - * Vector of all building textures for the current world style - */ - - std::vector sTexLoc; - - /** - * NULLifies pointers and allocates necessary memory. This should be - * followed by some combination of setBackground(), setBGM(), or - * generate(). - */ - - World( void ); - - /** - * Frees resources taken by the world. - */ - - virtual ~World(void); - - /** - * Adds a structure to the world, with the specified subtype and - * coordinates. `inside` is a file name for the IndoorWorld XML file that - * this structure will lead to; if NULL the player won't be able to enter - * the structure. - */ - - 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. - */ - - void addMob(int type,float x,float y); - - /** - * Adds a Mob to the world with a handler function that can be called by - * certain mobs to trigger events. - */ - - void addMob(int t,float x,float y,void (*hey)(Mob *)); - - /** - * Adds an NPC to the world with the specified coordinates. - */ - - void addNPC(float x,float y); - - /** - * Adds a Merchant to the world at the specified coordinates. - */ - - void addMerchant(float x, float y); - - /** - * Adds an object to the world with the specified item id and coordinates. - * If `pickupDialog` is not NULL, that string will display in a dialog box - * upon object interaction. - */ - - void addObject( std::string in, std::string pickupDialog, float x, float y); - - /** - * Adds a particle to the world with the specified coordinates, dimensions, - * velocity, color and duration (time to live). - */ - - void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int d); - void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int d, bool gravity ); - - /** - * Adds a light to the world with the specified coordinates and color. - */ - - void addLight(vec2 xy, Color color); - - /** - * Updates the coordinates of everything in the world that has coordinates - * and a velocity. The provided delta time is used for smoother updating. - */ - - void update( Player *p, unsigned int delta ); - - /** - * Generate a world of the provided width. Worlds are drawn centered on the - * y-axis, so the reachable coordinates on the world would be from negative - * half-width to positive half-width. - */ - - virtual void generate(unsigned int width); - - /** - * Sets the background theme, collecting the required textures into a - * Texturec object. - */ - - void setBackground(WorldBGType bgt); - - /** - * Sets the background music for the world, required for the world to be - * playable. - */ - - void setBGM(std::string path); - - /** - * Sets the worlds style folder - */ - - void setStyle(std::string pre); - - /** - * Plays/stops this world's BGM. If `prev` is not NULL, that world's BGM - * will be faded out followed by the fading in of this world's BGM. - */ - - void bgmPlay(World *prev) const; - - /** - * Draw the world and entities based on the player's coordinates. - */ - - virtual void draw(Player *p); - - /** - * Handles collision between the entities and the world, as well as entity - * death. - */ - - void detect(Player *p); - - /** - * Attempts to let the player enter the left-linked world specified by - * `toLeft`. Returns the world to the left if the movement is possible, - * otherwise returns this world. - */ - - World *goWorldLeft(Player *p); - bool goWorldLeft( NPC *e ); - - /** - * Attempts to let the player enter the right-linked world specified by - * `toRight`. Returns the world to the right if the movement is possible, - * otherwise returns this world. - */ - - World *goWorldRight(Player *p); - - /** - * This function looks for any structure the player is standing in front of - * that also have an inside world. Returns the inside world if those - * conditions are met, otherwise returns this world. - */ - - World *goInsideStructure(Player *p); - - /** - * Adds a hole between the specified y coordinates. If the player falls in - * this hole the game will exit. - */ - - void addHole(unsigned int start,unsigned int end); - - /** - * Adds a hill to the world, given the peak's coordinates and how wide the - * hill can be. - */ - - void addHill( ivec2 peak, unsigned int width ); - - /** - * Gets the world's width. - */ - - int getTheWidth(void) const; - - void save(void); - void load(void); -}; - -/* - * IndoorWorld - Indoor settings stored in a World class - */ - -class IndoorWorld : public World { -public: - IndoorWorld(void); - ~IndoorWorld(void); - - void generate(unsigned int width); // Generates a flat world of width 'width' - void draw(Player *p); // Draws the world (ignores layers) -}; - -/** - * The arena class - creates an arena. - * - * This world, when created, expects a pointer to a Mob. This mob will be - * transported to a temporary world with the player, and the Mob will be - * killed upon exiting the arena. - */ - -class Arena : public World { -private: - - /** - * The mob that the player is fighting. - */ - - Mob *mmob; - -public: - - /** - * Creates a world with the player and mob, returning the player to the - * world `leave` upon exit. - */ - - Arena( World *leave, Player *p, Mob *m ); - - /** - * Frees resources taken by the arena. - */ - - ~Arena( void ); - - /** - * Attempts to exit the world, returning the player to the world they were - * last in. - */ - - World *exitArena( Player *p ); -}; - -std::string getWorldWeatherStr( WorldWeather ww ); - -/** - * Loads the player into the world created by the given XML file. If a world is - * already loaded it will be saved before the transition is made. - */ - -World *loadWorldFromXML(std::string path); - -/** - * Loads the player into the XML-scripted world, but does not save data from the - * previous world if one was loaded. - */ - -World *loadWorldFromXMLNoSave(std::string path); - -World *loadWorldFromPtr( World *ptr ); - -#endif // WORLD_H diff --git a/include/world.hpp b/include/world.hpp new file mode 100644 index 0000000..c7b0a65 --- /dev/null +++ b/include/world.hpp @@ -0,0 +1,551 @@ +/** @file world.h + * @brief The world system. + * + * This file contains the classes and variables necessary to create an in-game + * world. + */ + +#ifndef WORLD_H +#define WORLD_H + +#include +#include + +#define GROUND_HEIGHT_INITIAL 80 +#define GROUND_HEIGHT_MINIMUM 60 +#define GROUND_HEIGHT_MAXIMUM 110 + +#define GROUND_HILLINESS 10 + +/** + * Defines how many game ticks it takes for a day to elapse. + */ + +#define DAY_CYCLE 12000 + +/** + * The background type enum. + * This enum contains all different possibilities for world backgrounds; used + * in World::setBackground() to select the appropriate images. + */ + +enum class WorldBGType : unsigned char { + Forest, /**< A forest theme. */ + WoodHouse /**< An indoor wooden house theme. */ +}; + +/** + * The weather type enum. + * This enum contains every type of weather currently implemented in the game. + * Weather is set by the world somewhere. + */ + +enum class WorldWeather : unsigned char { + Sunny = 0, /**< Sunny/daytime */ + Dark, /**< Nighttime */ + Rain, /**< Rain */ + Snowy /**< Snow */ +}; + +/** + * The line structure. + * This structure is used to store the world's ground, stored in vertical + * lines. Dirt color and grass properties are also kept track of here. + */ + +typedef struct { + bool grassUnpressed; + float grassHeight[2]; + float groundHeight; + unsigned char groundColor; +} WorldData; + +/** + * A value used by World::draw() for shading, ranges from -50 to 50 depending + * on the current time of day. + */ + +extern int worldShade; + +/** + * The path to the currently loaded XML file. + */ + +extern std::string currentXML; + +// prototype so Village can reference it +class World; + +/** + * The light structure, used to store light coordinates and color. + */ + +class Light{ +public: + vec2 loc; /**< Light location */ + Color color; /**< Light color */ + float radius; /**< Light radius */ + + bool belongsTo; + Entity *following; + + bool flame; + float fireFlicker; + vec2 fireLoc; + + Light(vec2 l, Color c, float r){ + loc = l; + color = c; + radius = r; + + belongsTo = false; + following = nullptr; + + flame = false; + } + + void makeFlame(void){ + flame = true; + } + + void follow(Entity *f){ + following=f; + belongsTo = true; + } +}; + + +/** + * The village class, used to group structures into villages. + */ + +class Village { +public: + std::string name; + vec2 start; + vec2 end; + bool in; + std::vector build; + + Village(const char *meme, World *w); + ~Village(void){} +}; + +/** + * The world class. This class does everything a world should do. + */ + +class World { +protected: + + /** + * The line array. + * + * This array is created through 'new' in World::generate(), with an amount + * of elements provided by the function. + */ + + std::vector worldData; + + /** + * Starting x coordinate. + * + * This x value is the point at which line[0] should reside, can be used to + * calculate the width of the world. + */ + + int worldStart; + + /** + * Handle physics for a single entity. + * + * This function handles gravity and death for an entity. The public version + * of this, World::detect(), handles all entities in the world as well as + * the player. World::singleDetect() should never be used outside of + * World::detect(), which is why it is declared private. + */ + + void singleDetect( Entity *e ); + + /** + * Empties all entity vectors. + * + * Each entity vector is iterated through, calling delete for each entry. + * Once all specific vectors are cleared, the general entity vector is + * emptied of the pointers to those other vectors. This function should only + * be called in World's destructor, as there shouldn't be another reason to + * call this function. + */ + + void deleteEntities( void ); + + /** + * Number of lines in the world. + * + * While this number is helpful for knowing the world's width, it is kept + * private for security reasons. To compensate for this, + * World::getTheWidth() is provided (see below). + */ + + unsigned int lineCount; + + /** + * An array of star coordinates. + */ + + std::vector star; + + /** + * The Texturec object that holds the background sprites for this world. + */ + + Texturec *bgTex; + + /** + * Defines the set of background images that should be used for this world. + */ + + WorldBGType bgType; + + /** + * The Mix_Music object that holds the background soundtrack for the world. + */ + + Mix_Music *bgmObj; + + /** + * The file path of the song wished to be loaded by bgmObj. + */ + + std::string bgm; + + std::vector bgFiles; + std::vector bgFilesIndoors; + +public: + + /** + * The filename of the XML file for the world to the left; NULL if no world + * is present. + */ + + std::string toLeft; + + /** + * The filename of the XML file for the world to the right; NULL if no world + * is present. + */ + + std::string toRight; + + /** + * Sets what XML file to use for loading the world to the left. + */ + + std::string setToLeft( std::string file ); + + /** + * Sets what XML file to use for loading the world to the right. + */ + + std::string setToRight( std::string file ); + + /** + * A vector of pointers to every NPC, Structure, Mob, and Object in this + * world. + */ + + std::vector entity; + + /** + * A vector of all NPCs in this world. + */ + + std::vector npc; + std::vector merchant; + + /** + * A vector of all Structures in this world. + */ + + std::vector build; + + /** + * A vector of all Mobs in this world. + */ + + std::vector mob; + + /** + * A vector of all Objects in this world. + */ + + std::vector object; + + /** + * A vector of all particles in this world. + */ + + std::vector particles; + + + std::vector village; + + /** + * A vector of all light elements in this world. + */ + + std::vector light; + + /** + * Vector of all building textures for the current world style + */ + + std::vector sTexLoc; + + /** + * NULLifies pointers and allocates necessary memory. This should be + * followed by some combination of setBackground(), setBGM(), or + * generate(). + */ + + World( void ); + + /** + * Frees resources taken by the world. + */ + + virtual ~World(void); + + /** + * Adds a structure to the world, with the specified subtype and + * coordinates. `inside` is a file name for the IndoorWorld XML file that + * this structure will lead to; if NULL the player won't be able to enter + * the structure. + */ + + 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. + */ + + void addMob(int type,float x,float y); + + /** + * Adds a Mob to the world with a handler function that can be called by + * certain mobs to trigger events. + */ + + void addMob(int t,float x,float y,void (*hey)(Mob *)); + + /** + * Adds an NPC to the world with the specified coordinates. + */ + + void addNPC(float x,float y); + + /** + * Adds a Merchant to the world at the specified coordinates. + */ + + void addMerchant(float x, float y); + + /** + * Adds an object to the world with the specified item id and coordinates. + * If `pickupDialog` is not NULL, that string will display in a dialog box + * upon object interaction. + */ + + void addObject( std::string in, std::string pickupDialog, float x, float y); + + /** + * Adds a particle to the world with the specified coordinates, dimensions, + * velocity, color and duration (time to live). + */ + + void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int d); + void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int d, bool gravity ); + + /** + * Adds a light to the world with the specified coordinates and color. + */ + + void addLight(vec2 xy, Color color); + + /** + * Updates the coordinates of everything in the world that has coordinates + * and a velocity. The provided delta time is used for smoother updating. + */ + + void update( Player *p, unsigned int delta ); + + /** + * Generate a world of the provided width. Worlds are drawn centered on the + * y-axis, so the reachable coordinates on the world would be from negative + * half-width to positive half-width. + */ + + virtual void generate(unsigned int width); + + /** + * Sets the background theme, collecting the required textures into a + * Texturec object. + */ + + void setBackground(WorldBGType bgt); + + /** + * Sets the background music for the world, required for the world to be + * playable. + */ + + void setBGM(std::string path); + + /** + * Sets the worlds style folder + */ + + void setStyle(std::string pre); + + /** + * Plays/stops this world's BGM. If `prev` is not NULL, that world's BGM + * will be faded out followed by the fading in of this world's BGM. + */ + + void bgmPlay(World *prev) const; + + /** + * Draw the world and entities based on the player's coordinates. + */ + + virtual void draw(Player *p); + + /** + * Handles collision between the entities and the world, as well as entity + * death. + */ + + void detect(Player *p); + + /** + * Attempts to let the player enter the left-linked world specified by + * `toLeft`. Returns the world to the left if the movement is possible, + * otherwise returns this world. + */ + + World *goWorldLeft(Player *p); + bool goWorldLeft( NPC *e ); + + /** + * Attempts to let the player enter the right-linked world specified by + * `toRight`. Returns the world to the right if the movement is possible, + * otherwise returns this world. + */ + + World *goWorldRight(Player *p); + + /** + * This function looks for any structure the player is standing in front of + * that also have an inside world. Returns the inside world if those + * conditions are met, otherwise returns this world. + */ + + World *goInsideStructure(Player *p); + + /** + * Adds a hole between the specified y coordinates. If the player falls in + * this hole the game will exit. + */ + + void addHole(unsigned int start,unsigned int end); + + /** + * Adds a hill to the world, given the peak's coordinates and how wide the + * hill can be. + */ + + void addHill( ivec2 peak, unsigned int width ); + + /** + * Gets the world's width. + */ + + int getTheWidth(void) const; + + void save(void); + void load(void); +}; + +/* + * IndoorWorld - Indoor settings stored in a World class + */ + +class IndoorWorld : public World { +public: + IndoorWorld(void); + ~IndoorWorld(void); + + void generate(unsigned int width); // Generates a flat world of width 'width' + void draw(Player *p); // Draws the world (ignores layers) +}; + +/** + * The arena class - creates an arena. + * + * This world, when created, expects a pointer to a Mob. This mob will be + * transported to a temporary world with the player, and the Mob will be + * killed upon exiting the arena. + */ + +class Arena : public World { +private: + + /** + * The mob that the player is fighting. + */ + + Mob *mmob; + +public: + + /** + * Creates a world with the player and mob, returning the player to the + * world `leave` upon exit. + */ + + Arena( World *leave, Player *p, Mob *m ); + + /** + * Frees resources taken by the arena. + */ + + ~Arena( void ); + + /** + * Attempts to exit the world, returning the player to the world they were + * last in. + */ + + World *exitArena( Player *p ); +}; + +std::string getWorldWeatherStr( WorldWeather ww ); + +/** + * Loads the player into the world created by the given XML file. If a world is + * already loaded it will be saved before the transition is made. + */ + +World *loadWorldFromXML(std::string path); + +/** + * Loads the player into the XML-scripted world, but does not save data from the + * previous world if one was loaded. + */ + +World *loadWorldFromXMLNoSave(std::string path); + +World *loadWorldFromPtr( World *ptr ); + +#endif // WORLD_H diff --git a/main.cpp b/main.cpp index f4a0005..9ae823b 100644 --- a/main.cpp +++ b/main.cpp @@ -18,11 +18,11 @@ using namespace tinyxml2; * Game includes */ -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include /** * Defines how many game ticks should occur in one second, affecting how often diff --git a/src/Quest.cpp b/src/Quest.cpp index 8f3c33b..781b164 100644 --- a/src/Quest.cpp +++ b/src/Quest.cpp @@ -1,14 +1,14 @@ #include -#include -#include +#include +#include extern Player *player; int QuestHandler::assign(std::string title,std::string desc,std::string req){ Quest tmp; char *tok; - + tmp.title = title; tmp.desc = desc; @@ -17,17 +17,17 @@ int QuestHandler::assign(std::string title,std::string desc,std::string req){ strcpy(buf.get(),req.c_str()); tok = strtok(buf.get(),"\n\r\t,"); tmp.need.push_back({"\0",0}); - + while(tok){ if(tmp.need.back().name != "\0"){ tmp.need.back().n = atoi(tok); tmp.need.push_back({"\0",0}); }else tmp.need.back().name = tok; - + tok = strtok(NULL,"\n\r\t,"); } - + tmp.need.pop_back(); current.push_back(tmp); @@ -39,7 +39,7 @@ int QuestHandler::drop(std::string title){ current.end(), [&](Quest q){ return q.title == title; }), current.end() ); - + return 0; } @@ -50,15 +50,15 @@ int QuestHandler::finish(std::string t){ if ( player->inv->hasItem( n.name ) < n.n ) return 0; } - + for ( auto &n : (*c).need ) player->inv->takeItem( n.name, n.n ); - + current.erase( c ); return 1; } } - + return 0; } @@ -67,6 +67,6 @@ bool QuestHandler::hasQuest(std::string t){ if ( c.title == t ) return true; } - + return false; } diff --git a/src/Texture.cpp b/src/Texture.cpp index 1ae5567..24dbb6a 100644 --- a/src/Texture.cpp +++ b/src/Texture.cpp @@ -1,7 +1,7 @@ #include #include -#include +#include /** * A structure for keeping track of loaded textures. diff --git a/src/common.cpp b/src/common.cpp index 1c9c2b5..10ff64e 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -9,7 +9,7 @@ # include #endif // __WIN32__ -#include +#include #ifndef __WIN32__ @@ -80,18 +80,18 @@ const char *readFile(const char *path){ std::ifstream in (path,std::ios::in); unsigned int size; GLchar *buf; - + if(!in.is_open()){ std::cout<<"Error reading file "< +#include -#include +#include using namespace tinyxml2; @@ -24,7 +24,7 @@ void readConfig(){ xml.LoadFile("config/settings.xml"); scr = xml.FirstChildElement("screen"); - + if(scr->QueryUnsignedAttribute("width",&uval) == XML_NO_ERROR) SCREEN_WIDTH = uval; else SCREEN_WIDTH = 1280; @@ -39,7 +39,7 @@ void readConfig(){ else HLINE = 3; vol = xml.FirstChildElement("volume"); - + if(vol->FirstChildElement("master")->QueryFloatAttribute("volume",&fval) == XML_NO_ERROR) VOLUME_MASTER = fval; else VOLUME_MASTER = 50; @@ -49,7 +49,7 @@ void readConfig(){ if(vol->FirstChildElement("sfx")->QueryFloatAttribute("volume",&fval) == XML_NO_ERROR) VOLUME_SFX = fval; else VOLUME_SFX = 50; - + ui::initFonts(); ui::setFontFace(xml.FirstChildElement("font")->Attribute("path")); updateConfig(); diff --git a/src/entities.cpp b/src/entities.cpp index 5a92c48..6476755 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -1,7 +1,7 @@ #include -#include -#include +#include +#include extern std::istream *names; diff --git a/src/gameplay.cpp b/src/gameplay.cpp index 075aec3..f398ca0 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -1,7 +1,7 @@ -#include -#include -#include -#include +#include +#include +#include +#include #include using namespace tinyxml2; @@ -212,13 +212,13 @@ CONT: void commonPageFunc( Mob *callee ) { static bool lock = false; - + if ( !lock ) { lock = true; - + ui::drawPage( callee->heyid ); ui::waitForDialog(); - + callee->alive = false; lock = false; } diff --git a/src/inventory.cpp b/src/inventory.cpp index 7ba5909..7317179 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -1,6 +1,6 @@ -#include -#include -#include +#include +#include +#include #include using namespace tinyxml2; @@ -190,7 +190,6 @@ void Inventory::setSelectionDown(){ void Inventory::draw(void){ static unsigned int lop = 0; - //const unsigned int numSlot = 7; static std::vectordfp(numSlot); static std::vectoriray(numSlot); static std::vectorcurCoord(numSlot); @@ -314,6 +313,28 @@ void Inventory::draw(void){ glVertex2i(mr.x-(itemWide/2)+itemWide,mr.y-(itemWide/2)+itemWide); glVertex2i(mr.x-(itemWide/2), mr.y-(itemWide/2)+itemWide); glEnd(); + if(!items.empty() && a < items.size() && items[a+numSlot].count){ + glEnable(GL_TEXTURE_2D); + glBindTexture(GL_TEXTURE_2D, itemtex[items[a+numSlot].id]); + glColor4f(1.0f, 1.0f, 1.0f, ((float)massDfp[a]/(float)(massRange?massRange:1))*0.8f); + glBegin(GL_QUADS); + if(itemMap[items[a].id]->height > itemMap[items[a+numSlot].id]->width){ + glTexCoord2i(0,1);glVertex2i(mr.x-((itemWide/2)*((float)itemMap[items[a+numSlot].id]->width/(float)itemMap[items[a+numSlot].id]->height)), mr.y-(itemWide/2)); + glTexCoord2i(1,1);glVertex2i(mr.x+((itemWide/2)*((float)itemMap[items[a+numSlot].id]->width/(float)itemMap[items[a+numSlot].id]->height)), mr.y-(itemWide/2)); + glTexCoord2i(1,0);glVertex2i(mr.x+((itemWide/2)*((float)itemMap[items[a+numSlot].id]->width/(float)itemMap[items[a+numSlot].id]->height)), mr.y+(itemWide/2)); + glTexCoord2i(0,0);glVertex2i(mr.x-((itemWide/2)*((float)itemMap[items[a+numSlot].id]->width/(float)itemMap[items[a+numSlot].id]->height)), mr.y+(itemWide/2)); + }else{ + glTexCoord2i(0,1);glVertex2i(mr.x-(itemWide/2),mr.y-(itemWide/2)*((float)itemMap[items[a+numSlot].id]->height/(float)itemMap[items[a+numSlot].id]->width)); + glTexCoord2i(1,1);glVertex2i(mr.x+(itemWide/2),mr.y-(itemWide/2)*((float)itemMap[items[a+numSlot].id]->height/(float)itemMap[items[a+numSlot].id]->width)); + glTexCoord2i(1,0);glVertex2i(mr.x+(itemWide/2),mr.y+(itemWide/2)*((float)itemMap[items[a+numSlot].id]->height/(float)itemMap[items[a+numSlot].id]->width)); + glTexCoord2i(0,0);glVertex2i(mr.x-(itemWide/2),mr.y+(itemWide/2)*((float)itemMap[items[a+numSlot].id]->height/(float)itemMap[items[a+numSlot].id]->width)); + } + glEnd(); + glDisable(GL_TEXTURE_2D); + ui::setFontColor(255,255,255,((float)massDfp[a]/(float)(massRange?massRange:1))*255); + ui::putText(mr.x-(itemWide/2)+(itemWide*.85),mr.y-(itemWide/2),"%d",items[a+numSlot].count); + ui::setFontColor(255,255,255,255); + } a++; }a=0; @@ -364,14 +385,16 @@ void Inventory::draw(void){ } glEnd(); glDisable(GL_TEXTURE_2D); - ui::putText(r.end.x-(itemWide/2),r.end.y-(itemWide*.9),"%s",itemMap[items[a].id]->name.c_str()); + ui::setFontColor(255,255,255,((float)dfp[a]/(float)(range?range:1))*255); + ui::putStringCentered(r.end.x,r.end.y-(itemWide*.9),itemMap[items[a].id]->name.c_str()); ui::putText(r.end.x-(itemWide/2)+(itemWide*.85),r.end.y-(itemWide/2),"%d",items[a].count); + ui::setFontColor(255,255,255,255); } if(sel == a){ static float sc = 1; static bool up; - up ? sc += .01 : sc -= .01; + up ? sc += .0005*deltaTime : sc -= .0005*deltaTime; if(sc > 1.2){ up = false; sc = 1.2; @@ -380,10 +403,6 @@ void Inventory::draw(void){ up = true; sc = 1.0; } - glPushMatrix(); - glLoadIdentity(); - //glTranslatef(-sc, -sc, 0); - //glScalef(sc,sc,0.0f); glBegin(GL_QUADS); glColor4f(1.0f, 1.0f, 1.0f, ((float)dfp[a]/(float)(range?range:1))); glVertex2f(r.end.x - (itemWide*sc)/2 - (itemWide*sc)*.09,r.end.y - (itemWide*sc)/2 - (itemWide*sc)*.09); @@ -406,7 +425,6 @@ void Inventory::draw(void){ glVertex2f(r.end.x + (itemWide*sc)/2 + (itemWide*sc)*.09,r.end.y + (itemWide*sc)/2 + (itemWide*sc)*.09); glVertex2f(r.end.x + (itemWide*sc)/2 ,r.end.y + (itemWide*sc)/2 + (itemWide*sc)*.09); glEnd(); - glPopMatrix(); } a++; } diff --git a/src/threadpool.cpp b/src/threadpool.cpp index 619f002..c4f1c4a 100644 --- a/src/threadpool.cpp +++ b/src/threadpool.cpp @@ -1,4 +1,4 @@ -#include "threadpool.h" +#include /** * Stolen from some guy. diff --git a/src/ui.cpp b/src/ui.cpp index c646458..9b82b5d 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -1,4 +1,4 @@ -#include +#include /* * Create a macro to easily access SDL keypresses diff --git a/src/world.cpp b/src/world.cpp index d8fd2d3..54ff921 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -1,8 +1,8 @@ #include #include -#include -#include +#include +#include #include using namespace tinyxml2; @@ -433,10 +433,10 @@ void World::draw(Player *p){ safeSetColorA( 255, 255, 255, weather == WorldWeather::Snowy ? 150 : 255 - worldShade * 4); glBegin( GL_QUADS ); - glTexCoord2i( 0, 0 ); glVertex2i( worldStart, SCREEN_HEIGHT ); - glTexCoord2i( 1, 0 ); glVertex2i( -worldStart, SCREEN_HEIGHT ); - glTexCoord2i( 1, 1 ); glVertex2i( -worldStart, 0 ); - glTexCoord2i( 0, 1 ); glVertex2i( worldStart, 0 ); + glTexCoord2i( 0, 0 ); glVertex2i( offset.x - SCREEN_WIDTH/2, SCREEN_HEIGHT ); + glTexCoord2i( 1, 0 ); glVertex2i( offset.x + SCREEN_WIDTH/2, SCREEN_HEIGHT ); + glTexCoord2i( 1, 1 ); glVertex2i( offset.x + SCREEN_WIDTH/2, 0 ); + glTexCoord2i( 0, 1 ); glVertex2i( offset.x - SCREEN_WIDTH/2, 0 ); glEnd(); bgTex->bindNext(); diff --git a/xml/playerSpawnHill1_Building1.xml b/xml/playerSpawnHill1_Building1.xml index f0c8a21..cbb41d0 100644 --- a/xml/playerSpawnHill1_Building1.xml +++ b/xml/playerSpawnHill1_Building1.xml @@ -28,7 +28,45 @@ Have a sword though. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3