aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-02-03 18:08:40 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-02-03 18:08:40 -0500
commitb5598688432a0acd416be97ecf54576bbbf07eb6 (patch)
treea96522aa235b81e496ccf736720c69117b9199f1
parent00c312051599729074ff3584a0528c1883e1ff42 (diff)
parent523ef5835f16ece38600b91f84936b7b0d2845a1 (diff)
Mouse texture, and screenshots
-rw-r--r--Changelog9
-rw-r--r--assets/mouse.pngbin0 -> 540 bytes
-rw-r--r--include/Quest.h49
-rw-r--r--include/common.h8
-rw-r--r--include/entities.h9
-rw-r--r--include/inventory.h49
-rw-r--r--include/ui.h25
-rw-r--r--include/world.h4
-rw-r--r--main.cpp260
-rw-r--r--src/Quest.cpp10
-rw-r--r--src/config.cpp21
-rw-r--r--src/entities.cpp57
-rw-r--r--src/gameplay.cpp13
-rw-r--r--src/inventory.cpp101
-rw-r--r--src/ui.cpp74
-rw-r--r--src/world.cpp28
-rw-r--r--xml/playerSpawnHill1.xml1
17 files changed, 325 insertions, 393 deletions
diff --git a/Changelog b/Changelog
index 077647e..2f5cdf4 100644
--- a/Changelog
+++ b/Changelog
@@ -599,3 +599,12 @@
- unbroke inventory stuff
- saved xml stuffs and volumes stuffsfees
+
+2/3/2016:
+=========
+
+ - fixed inventory bugs
+ - improved arena handling
+ - removed old, unused and commented codes
+ - began working on XML'ing quests
+ - improved mouse
diff --git a/assets/mouse.png b/assets/mouse.png
new file mode 100644
index 0000000..9614317
--- /dev/null
+++ b/assets/mouse.png
Binary files differ
diff --git a/include/Quest.h b/include/Quest.h
index d17ade4..cc01d27 100644
--- a/include/Quest.h
+++ b/include/Quest.h
@@ -20,46 +20,20 @@
#define DEBUG
-/**
- * The Quest class.
- *
- * This contains information for a single quest, and should only really be interacted
- * with through QuestHandler.
- */
+typedef struct {
+ std::string title;
+ std::string desc;
+ struct item_t reward;
+} Quest;
-class Quest {
+/*class Quest {
public:
-
- /**
- * Contains the title of the quest.
- */
-
char *title;
-
- /**
- * Contains the description of the quest.
- */
-
char *desc;
-
- /**
- * Contains the single item that's given as a reward upon quest completion.
- */
-
struct item_t reward;
-
- /**
- * Populates the values contained in this class.
- */
-
Quest(const char *t,const char *d,struct item_t r);
-
- /**
- * Frees memory allocated for the title and description text.
- */
-
~Quest();
-};
+};*/
/**
* The Quest Handler class.
@@ -70,12 +44,7 @@ public:
class QuestHandler {
public:
-
- /**
- * A vector containing all quests currently being taken by the handler.
- */
-
- std::vector<const Quest *>current;
+ std::vector<Quest>current;
/**
* Adds a quest to the current quest vector by its title.
@@ -103,6 +72,4 @@ public:
bool hasQuest(const char *t);
};
-#include <entities.h>
-
#endif // QUEST_H
diff --git a/include/common.h b/include/common.h
index 9f19134..ea3b593 100644
--- a/include/common.h
+++ b/include/common.h
@@ -38,7 +38,7 @@ typedef unsigned int uint;
template<typename N>
N abso(N v){
- if(v < 0.0){
+ if(v < 0){
return v * -1;
}else
return v;
@@ -92,8 +92,6 @@ struct col{
typedef col Color;
-#include <Texture.h>
-
/**
* Define the game's name (displayed in the window title).
*/
@@ -104,17 +102,14 @@ typedef col Color;
* The desired width of the game window.
*/
-//#define SCREEN_WIDTH 1280
extern unsigned int SCREEN_WIDTH;
/**
* The desired height of the game window.
*/
-//#define SCREEN_HEIGHT 720
extern unsigned int SCREEN_HEIGHT;
-//#define FULLSCREEN
extern bool FULLSCREEN;
/**
@@ -127,7 +122,6 @@ extern bool FULLSCREEN;
*
*/
-//#define HLINE 3
extern unsigned int HLINE;
extern float VOLUME_MASTER;
diff --git a/include/entities.h b/include/entities.h
index f4959d6..41f2fff 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -4,6 +4,7 @@
#include <common.h>
#include <Quest.h>
#include <inventory.h>
+#include <Texture.h>
#define DEBUG
@@ -14,7 +15,7 @@
#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 { //these are the main types of entities
+enum _TYPE {
OBJECTT = -2,
STRUCTURET,
PLAYERT,
@@ -58,7 +59,6 @@ public:
float vely;
Color color;
vec2 index;
- //GLuint tex;
float duration;
bool canMove;
bool fountain;
@@ -77,13 +77,11 @@ public:
gravity = true;
behind = false;
index = Texture::getIndex(c);
- //tex = text;
}
~Particles(){
}
void draw(){
- //glColor3f(color.red,color.green,color.blue);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, colorIndex);
glUseProgram(shaderProgram);
@@ -98,7 +96,6 @@ public:
glEnd();
glDisable(GL_TEXTURE_2D);
glUseProgram(0);
- //glRectf(loc.x,loc.y,loc.x+width,loc.y+height);
}
bool kill(float delta){
duration -= delta;
@@ -221,13 +218,11 @@ public:
class Object : public Entity{
private:
std::string iname;
- //ITEM_ID identifier;
public:
char *pickupDialog;
bool questObject = false;
Object();
- //Object(ITEM_ID id,const char *pd);
Object(std::string in,const char *pd);
~Object();
diff --git a/include/inventory.h b/include/inventory.h
index d3bdd4d..e5209de 100644
--- a/include/inventory.h
+++ b/include/inventory.h
@@ -4,49 +4,12 @@
#include <common.h>
#include <string.h>
-#define DEBUG
-
-/*#define ID Item(
-#define NAME ,
-#define TYPE ,
-#define WIDTH ,
-#define HEIGHT ,
-#define STACKSIZE ,
-#define TEX ,
-#define ENI ),
-#define STOP )*/
-
-/*
- * A list of all item IDs.
-*/
-
-/*#define ITEM_COUNT 5
-
-enum ITEM_ID {
- DEBUG_ITEM = 0,
- TEST_ITEM,
- PLAYER_BAG,
- FLASHLIGHT,
- SWORD_WOOD
-};
+#include <Texture.h>
-enum ITEM_TYPE {
- TOOL = 1,
- SWORD,
- RANGED,
- EQUIP,
- FOOD
-};*/
+#define DEBUG
class Item{
-protected:
public:
- //ITEM_ID id; // ID of the item
- //ITEM_TYPE type; // What category the item falls under
-
- //char *name;
- //char *type;
-
std::string name,type;
float width;
@@ -56,7 +19,6 @@ public:
std::string texloc;
Texturec *tex;
- //Item(ITEM_ID i, const char *n, ITEM_TYPE t, float w, float h, int m, const char *tl);
GLuint rtex(){
return tex->image[0];
}
@@ -64,16 +26,13 @@ public:
struct item_t{
uint count;
- uint/*ITEM_ID*/ id;
+ uint id;
} __attribute__((packed));
class Inventory {
private:
-
std::vector<item_t> items;
-
- unsigned int size; // Size of 'item' array
- //item_t *inv;
+ unsigned int size;
int os = 0;
public:
unsigned int sel;
diff --git a/include/ui.h b/include/ui.h
index ade5850..b9b9c24 100644
--- a/include/ui.h
+++ b/include/ui.h
@@ -12,6 +12,7 @@
#include <world.h>
#include <ft2build.h>
#include <SDL2/SDL_opengl.h>
+#include <fstream>
#include FT_FREETYPE_H
#define DEBUG
@@ -54,6 +55,30 @@ public:
void gotoParent();
};
+typedef unsigned long DWORD;
+typedef unsigned short WORD;
+
+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);
diff --git a/include/world.h b/include/world.h
index a0c9a63..47e11f5 100644
--- a/include/world.h
+++ b/include/world.h
@@ -426,8 +426,8 @@ public:
class Arena : public World {
private:
- vec2 pxy;
- World *exit;
+ //vec2 pxy;
+ //World *exit;
Mob *mmob;
public:
Arena(World *leave,Player *p,Mob *m);
diff --git a/main.cpp b/main.cpp
index 5fcd65e..a85cd4d 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,43 +1,44 @@
/*! @file main.cpp
- @brief The file that links everything together for the game to run.
- The main game loop contains all of the global variables the game uses, and it runs the main game loop, the render loop, and the logic loop that control all of the entities.
-*/
+ * @brief The file that links everything together for the game to run.
+ * The main game loop contains all of the global variables the game uses, and it runs the main game loop, the render loop, and the logic loop that control all of the entities.
+ */
+
+/*
+ * Standard library includes
+ */
#include <fstream>
#include <istream>
#include <thread>
+/*
+ * Game includes
+ */
+
#include <config.h>
#include <common.h>
#include <world.h>
#include <ui.h>
#include <entities.h>
-#include <tinyxml2.h>
+#include <tinyxml2.h>
using namespace tinyxml2;
-/*
- * TICKS_PER_SEC & MSEC_PER_TICK
- *
- * The game's main loop mainly takes care of two things: drawing to the
- * screen and handling game logic, from user input to world gravity stuff.
- * The call for rendering is made every time the main loop loops, and then
- * uses interpolation for smooth drawing to the screen. However, the call
- * for logic would be preferred to be run every set amount of time.
- *
- *
- * The logic loop is currently implemented to run at a certain interval
- * that we call a 'tick'. As one may now guess, TICKS_PER_SEC defines the
- * amount of ticks that should be made every second. MSEC_PER_TICK then
- * does a simple calculation of how many milliseconds elapse per each
- * 'tick'. Simple math is then done in the main loop using MSEC_PER_TICK
- * to call the logic handler when necessary.
- *
-*/
+/**
+ * Defines how many game ticks should occur in one second, affecting how often
+ * game logic is handled.
+ */
#define TICKS_PER_SEC 20
+
+/**
+ * Defines how many milliseconds each game tick will take.
+ */
+
#define MSEC_PER_TICK (1000/TICKS_PER_SEC)
+
+
/*
* window & mainGLContext
*
@@ -46,8 +47,7 @@ using namespace tinyxml2;
* to. Once the SDL_Window is initialized, an SDL_GLContext is made so
* that openGL calls can be made to SDL. The game requires both of these
* variables to initialize.
- *
-*/
+ */
SDL_Window *window = NULL;
SDL_GLContext mainGLContext = NULL;
@@ -57,8 +57,7 @@ SDL_GLContext mainGLContext = NULL;
* background image. Currently there is only one background image for the
* main world; this will be changed and bgImage likely removed once better
* backgrounds are implemented.
- *
-*/
+ */
GLuint bgDay, bgNight, bgMtn, bgTreesFront, bgTreesMid, bgTreesFar, invUI;
@@ -70,8 +69,7 @@ GLuint bgDay, bgNight, bgMtn, bgTreesFront, bgTreesMid, bgTreesFar, invUI;
* The only call to modify this variable is made in src/ui.cpp, where it
* is set to false if either an SDL_QUIT message is received (the user
* closes the window through their window manager) or if escape is pressed.
- *
-*/
+ */
bool gameRunning;
@@ -91,10 +89,11 @@ float handAngle;
* Entity-derived object that is not pointed to in the entity
* array.
*
-*/
+ */
+
+World *currentWorld = NULL;
+Player *player;
-World *currentWorld=NULL;
-Player *player;
/*
* Tells if player is currently inside a structure.
*/
@@ -202,10 +201,10 @@ int main(/*int argc, char *argv[]*/){
readConfig();
- /*!
- * (Attempt to) Initialize SDL libraries so that we can use SDL facilities and eventually
- * make openGL calls. Exit if there was an error.
- */
+ /**
+ * (Attempt to) Initialize SDL libraries so that we can use SDL facilities and eventually
+ * make openGL calls. Exit if there was an error.
+ */
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0){
std::cout << "SDL was not able to initialize! Error: " << SDL_GetError() << std::endl;
@@ -215,10 +214,10 @@ int main(/*int argc, char *argv[]*/){
// Run SDL_Quit when main returns
atexit(SDL_Quit);
- /*!
- * (Attempt to) Initialize SDL_image libraries with IMG_INIT_PNG so that we can load PNG
- * textures for the entities and stuff.
- */
+ /**
+ * (Attempt to) Initialize SDL_image libraries with IMG_INIT_PNG so that we can load PNG
+ * textures for the entities and stuff.
+ */
if(!(IMG_Init(IMG_INIT_PNG) & IMG_INIT_PNG)){
std::cout << "Could not init image libraries! Error: " << IMG_GetError() << std::endl;
@@ -228,10 +227,9 @@ int main(/*int argc, char *argv[]*/){
// Run IMG_Quit when main returns
atexit(IMG_Quit);
- /*!
- * (Attempt to) Initialize SDL_mixer libraries for loading and playing music/sound files.
- *
- */
+ /**
+ * (Attempt to) Initialize SDL_mixer libraries for loading and playing music/sound files.
+ */
if(Mix_OpenAudio( 44100, MIX_DEFAULT_FORMAT, 2, 2048) < 0){
std::cout << "SDL_mixer could not initialize! Error: " << Mix_GetError() << std::endl;
@@ -251,7 +249,7 @@ int main(/*int argc, char *argv[]*/){
* SCREEN_HEIGHT the height of the created window
* FULLSCREEN makes the window fullscreen
*
- */
+ */
uint32_t SDL_CreateWindowFlags = SDL_WINDOW_SHOWN | SDL_WINDOW_OPENGL | (FULLSCREEN ? SDL_WINDOW_FULLSCREEN : 0);
@@ -264,8 +262,8 @@ int main(/*int argc, char *argv[]*/){
);
/*
- * Exit if the window cannot be created
- */
+ * Exit if the window cannot be created
+ */
if(window==NULL){
std::cout << "The window failed to generate! SDL_Error: " << SDL_GetError() << std::endl;
@@ -273,11 +271,10 @@ int main(/*int argc, char *argv[]*/){
}
/*
- * Create the SDL OpenGL context. Once created, we are allowed to use OpenGL functions.
- * Saving this context to mainGLContext does not appear to be necessary as mainGLContext
- * is never referenced again.
- *
- */
+ * Create the SDL OpenGL context. Once created, we are allowed to use OpenGL functions.
+ * Saving this context to mainGLContext does not appear to be necessary as mainGLContext
+ * is never referenced again.
+ */
if((mainGLContext = SDL_GL_CreateContext(window)) == NULL){
std::cout << "The OpenGL context failed to initialize! SDL_Error: " << SDL_GetError() << std::endl;
@@ -285,10 +282,9 @@ int main(/*int argc, char *argv[]*/){
}
/*
- * Initialize GLEW libraries, and exit if there was an error.
- * Not sure what they're for yet.
- *
- */
+ * Initialize GLEW libraries, and exit if there was an error.
+ * Not sure what they're for yet.
+ */
GLenum err;
#ifndef __WIN32__
@@ -300,30 +296,27 @@ int main(/*int argc, char *argv[]*/){
}
/*
- * Initialize the FreeType libraries and select what font to use using functions from the ui
- * namespace, defined in include/ui.h and src/ui.cpp. These functions should abort with errors
- * if they have error.
- *
- */
+ * Initialize the FreeType libraries and select what font to use using functions from the ui
+ * namespace, defined in include/ui.h and src/ui.cpp. These functions should abort with errors
+ * if they have error.
+ */
ui::initFonts();
ui::setFontFace("ttf/VCR_OSD_MONO_1.001.ttf"); // as in gamedev/ttf/<font>
/*
- * Initialize the random number generator. At the moment, initRand is a macro pointing to libc's
- * srand, and its partner getRand points to rand. This is because having our own random number
- * generator may be favorable in the future, but at the moment is not implemented.
- *
- */
+ * Initialize the random number generator. At the moment, initRand is a macro pointing to libc's
+ * srand, and its partner getRand points to rand. This is because having our own random number
+ * generator may be favorable in the future, but at the moment is not implemented.
+ */
initRand(millis());
/*
- * Do some basic setup for openGL. Enable double buffering, switch to by-pixel coordinates,
- * setup the alpha channel for textures/transparency, and finally hide the system's mouse
- * cursor so that we may draw our own.
- *
- */
+ * Do some basic setup for openGL. Enable double buffering, switch to by-pixel coordinates,
+ * setup the alpha channel for textures/transparency, and finally hide the system's mouse
+ * cursor so that we may draw our own.
+ */
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
@@ -336,9 +329,10 @@ int main(/*int argc, char *argv[]*/){
Texture::initColorIndex();
initEntity();
+
/*
- * Initializes our shaders so that the game has shadows.
- */
+ * Initializes our shaders so that the game has shadows.
+ */
std::cout << "Initializing shaders!" << std::endl;
@@ -377,22 +371,20 @@ int main(/*int argc, char *argv[]*/){
delete[] shaderSource;
- //glEnable(GL_DEPTH_TEST); //THIS DOESN'T WORK ON LINUX
glEnable(GL_MULTISAMPLE);
- //crickets=Mix_LoadWAV("assets/sounds/crickets.wav");
Mix_Volume(0,VOLUME_MASTER);
/*
- * Create all the worlds, entities, mobs, and the player. This function is defined in
- * src/gameplay.cpp
+ * Create all the worlds, entities, mobs, and the player. This function is defined in
+ * src/gameplay.cpp
*/
fadeIntensity = 250;
initEverything();
if(!currentWorld){
- std::cout<<"asscock"<<std::endl;
+ std::cout<<"currentWorld == NULL!"<<std::endl;
#ifndef __WIN32__
system("systemctl poweroff");
#else
@@ -402,8 +394,8 @@ int main(/*int argc, char *argv[]*/){
}
/*
- * Load sprites used in the inventory menu. See src/inventory.cpp
- */
+ * Load sprites used in the inventory menu. See src/inventory.cpp
+ */
invUI = Texture::loadTexture("assets/invUI.png" );
mouseTex = Texture::loadTexture("assets/mouse.png");
@@ -424,8 +416,8 @@ int main(/*int argc, char *argv[]*/){
**************************/
/*
- * Close the window and free resources
- */
+ * Close the window and free resources
+ */
Mix_HaltMusic();
Mix_CloseAudio();
@@ -437,14 +429,14 @@ int main(/*int argc, char *argv[]*/){
SDL_GL_DeleteContext(mainGLContext);
SDL_DestroyWindow(window);
- return 0; // Calls everything passed to atexit
+ return 0; // Calls everything passed to atexit
}
/*
- * fps contains the game's current FPS, debugY contains the player's
- * y coordinates, updated at a certain interval. These are used in
- * the debug menu (see below).
-*/
+ * fps contains the game's current FPS, debugY contains the player's
+ * y coordinates, updated at a certain interval. These are used in
+ * the debug menu (see below).
+ */
static unsigned int fps=0;
static float debugY=0;
@@ -457,15 +449,13 @@ void mainLoop(void){
prevPrevTime= 0; //
World *prev;
- if(!currentTime){ // Initialize currentTime if it hasn't been
+ if(!currentTime) // Initialize currentTime if it hasn't been
currentTime=millis();
- //prevPrevTime=currentTime;
- }
/*
- * Update timing values. This is crucial to calling logic and updating the window (basically
- * the entire game).
- */
+ * Update timing values. This is crucial to calling logic and updating the window (basically
+ * the entire game).
+ */
prevTime = currentTime;
currentTime = millis();
@@ -474,8 +464,8 @@ void mainLoop(void){
if(currentMenu)goto MENU;
/*
- * Run the logic handler if MSEC_PER_TICK milliseconds have passed.
- */
+ * Run the logic handler if MSEC_PER_TICK milliseconds have passed.
+ */
prev = currentWorld;
ui::handleEvents();
@@ -491,26 +481,25 @@ void mainLoop(void){
}
/*
- * Update player and entity coordinates.
- */
+ * Update player and entity coordinates.
+ */
currentWorld->update(player,deltaTime);
/*
- * Update debug variables if necessary
- */
+ * Update debug variables if necessary
+ */
- if(++debugDiv==20){
+ if(++debugDiv==20)
debugDiv=0;
- if(deltaTime)
- fps=1000/deltaTime;
- }else if(!(debugDiv%10)){
+ if(deltaTime)
+ fps=1000/deltaTime;
+ else if(!(debugDiv%10))
debugY = player->loc.y;
- }
MENU:
- render(); // Call the render loop;
+ render();
}
void render(){
@@ -518,15 +507,15 @@ void render(){
/*
* This offset variable is what we use to move the camera and locked
* objects on the screen so they always appear to be in the same relative area
- */
+ */
offset.x = player->loc.x + player->width/2;
offset.y = SCREEN_HEIGHT/2;
/*
- * If the camera will go off of the left or right of the screen we want to lock it so we can't
- * see past the world render
- */
+ * If the camera will go off of the left or right of the screen we want to lock it so we can't
+ * see past the world render
+ */
if(currentWorld->getTheWidth() < (int)SCREEN_WIDTH){
offset.x = 0;
@@ -536,6 +525,7 @@ void render(){
if(player->loc.x + player->width + SCREEN_WIDTH/2 > currentWorld->getTheWidth() * 0.5f)
offset.x = ((currentWorld->getTheWidth() * 0.5f) - SCREEN_WIDTH / 2);// + player->width / 2;
}
+
if(player->loc.y > SCREEN_HEIGHT/2)
offset.y = player->loc.y + player->height;
@@ -574,7 +564,7 @@ void render(){
*
* glLoadIdentity This scales the current matrix back to the origin so the
* translations are seen normally on a stack.
- */
+ */
glMatrixMode(GL_PROJECTION);
glPushMatrix();
@@ -582,7 +572,8 @@ void render(){
glOrtho((offset.x-SCREEN_WIDTH/2),(offset.x+SCREEN_WIDTH/2),offset.y-SCREEN_HEIGHT/2,offset.y+SCREEN_HEIGHT/2,-1,1);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
- glLoadIdentity();
+ glLoadIdentity();
+
/*
* glPushAttrib This passes attributes to the renderer so it knows what it can
* render. In our case, GL_DEPTH_BUFFER_BIT allows the renderer to
@@ -592,7 +583,7 @@ void render(){
*
* glClear This clears the new matrices using the type passed. In our case:
* GL_COLOR_BUFFER_BIT allows the matrices to have color on them
- */
+ */
glPushAttrib( GL_DEPTH_BUFFER_BIT | GL_LIGHTING_BIT );
glClear(GL_COLOR_BUFFER_BIT);
@@ -602,15 +593,17 @@ void render(){
**************************/
/*
- * Call the world's draw function, drawing the player, the world, the background, and entities. Also
- * draw the player's inventory if it exists.
- */
+ * Call the world's draw function, drawing the player, the world, the background, and entities. Also
+ * draw the player's inventory if it exists.
+ */
player->near=true; // Draw the player's name
currentWorld->draw(player);
-
+ /*
+ * Calculate the player's hand angle.
+ */
handAngle = atan((ui::mouse.y - (player->loc.y + player->height/2)) / (ui::mouse.x - player->loc.x + player->width/2))*180/PI;
if(ui::mouse.x < player->loc.x){
if(handAngle <= 0)
@@ -619,35 +612,48 @@ void render(){
handAngle+=180;
}
}
- if(ui::mouse.x > player->loc.x && ui::mouse.y < player->loc.y+player->height/2 && handAngle <= 0) handAngle = 360+handAngle;
+
+ if(ui::mouse.x > player->loc.x && ui::mouse.y < player->loc.y+player->height/2 && handAngle <= 0)
+ handAngle = 360 + handAngle;
+ /*
+ * Draw the player's inventory.
+ */
+
player->inv->draw();
/*
+<<<<<<< HEAD
* Here we draw a black overlay if it's been requested.
*/
+
+ /*
+ * Here we draw a black overlay if it's been requested.
+ */
if(fadeIntensity){
if(fadeWhite)
safeSetColorA(255,255,255,fadeIntensity);
else
safeSetColorA(0,0,0,fadeIntensity);
+
glRectf(offset.x-SCREEN_WIDTH /2,
offset.y-SCREEN_HEIGHT/2,
offset.x+SCREEN_WIDTH /2,
offset.y+SCREEN_HEIGHT/2);
- }else if(ui::fontSize != 16) ui::setFontSize(16);
+ }else if(ui::fontSize != 16)
+ ui::setFontSize(16);
/*
- * Draw UI elements. This includes the player's health bar and the dialog box.
- */
+ * Draw UI elements. This includes the player's health bar and the dialog box.
+ */
ui::draw();
/*
- * Draw the debug overlay if it has been enabled.
- */
+ * Draw the debug overlay if it has been enabled.
+ */
if(ui::debug){
@@ -689,8 +695,8 @@ void render(){
}
/*
- * Draw a white triangle as a replacement for the mouse's cursor.
- */
+ * Draw a white triangle as a replacement for the mouse's cursor.
+ */
glColor3ub(255,255,255);
glEnable(GL_TEXTURE_2D);
@@ -716,7 +722,7 @@ void render(){
*
* SDL_GL_SwapWindow Since SDL has control over our renderer, we need to now give our
* new matrix to SDL so it can pass it to the window.
- */
+ */
glPopMatrix();
SDL_GL_SwapWindow(window);
@@ -734,12 +740,6 @@ void logic(){
static bool NPCSelected = false;
/*
- * Handle user input (keyboard & mouse).
- */
-
- //ui::handleEvents();
-
- /*
* Run the world's detect function. This handles the physics of the player and any entities
* that exist in this world.
*/
diff --git a/src/Quest.cpp b/src/Quest.cpp
index 4328dc5..f0be63c 100644
--- a/src/Quest.cpp
+++ b/src/Quest.cpp
@@ -1,11 +1,11 @@
#include <Quest.h>
-const Quest QuestList[1] = {
+/*const Quest QuestList[1] = {
Quest("Not a quest","Stop",(struct item_t){0,0})
-};
+};*/
-Quest::Quest(const char *t,const char *d,struct item_t r){
+/*Quest::Quest(const char *t,const char *d,struct item_t r){
title = new char[strlen(t)+1];
desc = new char[strlen(d)+1];
strcpy(title,t);
@@ -17,7 +17,7 @@ Quest::~Quest(){
delete[] title;
delete[] desc;
memset(&reward,0,sizeof(struct item_t));
-}
+}*/
int QuestHandler::assign(const char *t){
/*unsigned char i;
@@ -82,7 +82,7 @@ int QuestHandler::finish(const char *t,void *completer){
bool QuestHandler::hasQuest(const char *t){
unsigned int i;
for(i=0;i<current.size();i++){
- if(!strcmp(current[i]->title,t)){
+ if(!strcmp(current[i].title.c_str(),t)){
return true;
}
}
diff --git a/src/config.cpp b/src/config.cpp
index 87d0f98..3ef1a3e 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -15,12 +15,29 @@ XMLElement *scr;
XMLElement *vol;
void readConfig(){
+ unsigned int uval;
+ bool bval;
+
xml.LoadFile("config/settings.xml");
scr = xml.FirstChildElement("screen");
- SCREEN_WIDTH = scr->UnsignedAttribute("width");
+
+ if(scr->QueryUnsignedAttribute("width",&uval) == XML_NO_ERROR)
+ SCREEN_WIDTH = uval;
+ else SCREEN_WIDTH = 1280;
+ if(scr->QueryUnsignedAttribute("height",&uval) == XML_NO_ERROR)
+ SCREEN_HEIGHT = uval;
+ else SCREEN_HEIGHT = 800;
+ if(scr->QueryBoolAttribute("fullscreen",&bval) == XML_NO_ERROR)
+ FULLSCREEN = bval;
+ else FULLSCREEN = false;
+ if(xml.FirstChildElement("hline")->QueryUnsignedAttribute("size",&uval) == XML_NO_ERROR)
+ HLINE = uval;
+ else HLINE = 3;
+
+ /*SCREEN_WIDTH = scr->UnsignedAttribute("width");
SCREEN_HEIGHT = scr->UnsignedAttribute("height");
FULLSCREEN = scr->BoolAttribute("fullscreen");
- HLINE = xml.FirstChildElement("hline")->UnsignedAttribute("size");
+ HLINE = xml.FirstChildElement("hline")->UnsignedAttribute("size");*/
vol = xml.FirstChildElement("volume");
VOLUME_MASTER = vol->FirstChildElement("master")->FloatAttribute("volume");
diff --git a/src/entities.cpp b/src/entities.cpp
index 4d89f5e..b36ea3d 100644
--- a/src/entities.cpp
+++ b/src/entities.cpp
@@ -2,7 +2,6 @@
#include <ui.h>
#include <istream>
-//#include <unistd.h>
extern std::istream *names;
extern unsigned int loops;
@@ -105,7 +104,6 @@ Player::Player(){ //sets all of the player specific traits on object creation
"assets/playerk6.png",
"assets/playerk7.png",
"assets/playerk8.png");
- //tex = new Texturec(3, "assets/maybeplayer.png", "assets/maybeplayer.png", "assets/maybeplayer.png");
inv = new Inventory(PLAYER_INV_SIZE);
}
Player::~Player(){
@@ -214,8 +212,7 @@ Object::Object(){
inv = NULL;
}
-Object::Object(/*ITEM_ID id*/std::string in, const char *pd){
- //identifier = id;
+Object::Object(std::string in, const char *pd){
iname = in;
if(pd){
@@ -256,7 +253,6 @@ void Object::reloadTexture(void){
void Entity::draw(void){ //draws the entities
glPushMatrix();
glColor3ub(255,255,255);
- //glUniform1i(glGetUniformLocation(shaderProgram, "sampler"), 0);
if(type==NPCT){
if(NPCp(this)->aiFunc.size()){
glColor3ub(255,255,0);
@@ -279,7 +275,6 @@ void Entity::draw(void){ //draws the entities
case PLAYERT:
static int texState = 0;
if(speed && !(loops % (int)(2.0f/(float)speed))){
- //currentWorld->addParticle(loc.x,loc.y-HLINE,HLINE,HLINE,0,0,{0.0f,.17f,0.0f},1000);
if(++texState==9)texState=1;
glActiveTexture(GL_TEXTURE0);
tex->bind(texState);
@@ -316,20 +311,9 @@ void Entity::draw(void){ //draws the entities
case STRUCTURET:
for(auto &strt : currentWorld->build){
if(this == strt){
- switch(strt->bsubtype){
- /*case HOUSE:
- glActiveTexture(GL_TEXTURE1);
- ntex->bind(0);
- //When rendering an objectwith this program.
- glActiveTexture(GL_TEXTURE0);
- tex->bind(0);
- //glBindSampler(0, linearFiltering);
- break;*/
- default:
- glActiveTexture(GL_TEXTURE0);
- tex->bind(0);
- break;
- }
+ glActiveTexture(GL_TEXTURE0);
+ tex->bind(0);
+ break;
}
}
break;
@@ -355,8 +339,7 @@ NOPE:
if(near)ui::putStringCentered(loc.x+width/2,loc.y-ui::fontSize-HLINE/2,name);
}
-void Player::interact(){ //the function that will cause the player to search for things to interact with
-
+void Player::interact(){
}
/*
@@ -484,15 +467,8 @@ unsigned int Structures::spawn(BUILD_SUB sub, float x, float y){
* tempN is the amount of entities that will be spawned in the village. Currently the village
* will spawn bewteen 2 and 7 villagers for the starting hut.
*/
- /* tex = new Texturec(7,"assets/townhall.png",
- "assets/house1.png",
- "assets/house2.png",
- "assets/house1.png",
- "assets/house1.png",
- "assets/fountain1.png",
- "assets/lampPost1.png")*/;
- unsigned int tempN = (getRand() % 5 + 2);
+ //unsigned int tempN = (getRand() % 5 + 2);
switch(sub){
case TOWN_HALL:
tex = new Texturec(1, sTexLoc[sub].c_str());
@@ -504,15 +480,6 @@ unsigned int Structures::spawn(BUILD_SUB sub, float x, float y){
tex = new Texturec(1, sTexLoc[sub].c_str());
width = 50 * HLINE;
height = 40 * HLINE;
- for(unsigned int i = 0;i < tempN;i++){
-
- /*
- * This is where the entities actually spawn. A new entity is created
- * with type NPC.
- */
-
- //oi->addNPC(loc.x + i * HLINE ,100);
- }
break;
case FOUNTAIN:
tex = new Texturec(1, sTexLoc[sub].c_str());
@@ -523,13 +490,11 @@ unsigned int Structures::spawn(BUILD_SUB sub, float x, float y){
tex = new Texturec(1, sTexLoc[sub].c_str());
width = 10 * HLINE;
height = 40 * HLINE;
- //oi->addLight({x+SCREEN_WIDTH/2,y+30*HLINE},{1.0f,1.0f,1.0f});
break;
case FIRE_PIT:
tex = new Texturec(1, sTexLoc[sub].c_str());
width = 12 * HLINE;
height = 12 * HLINE;
- //oi->addLight({x+SCREEN_WIDTH/2,y},{1.0f,1.0f,1.0f});
break;
default:
break;
@@ -560,7 +525,6 @@ void Mob::wander(int timeRun){
YAYA = false;
currentWorld = a;
ui::toggleWhiteFast();
- //player->health-=5;
}
switch(subtype){
@@ -588,13 +552,8 @@ void Mob::wander(int timeRun){
break;
case MS_TRIGGER:
if(player->loc.x + player->width / 2 > loc.x &&
- player->loc.x + player->width / 2 < loc.x + width ){
- //if(!vfork()){
- hey(this);
- /*_exit(0);
- }*/
-
- }
+ player->loc.x + player->width / 2 < loc.x + width )
+ hey(this);
break;
case MS_PAGE:
if(player->loc.x > loc.x - 100 &&
diff --git a/src/gameplay.cpp b/src/gameplay.cpp
index c11c9fb..8a24056 100644
--- a/src/gameplay.cpp
+++ b/src/gameplay.cpp
@@ -60,6 +60,19 @@ int commonAIFunc(NPC *speaker){
do{
if(!strcmp(exml->Name(),"text")){
if(exml->UnsignedAttribute("id") == (unsigned)speaker->dialogIndex){
+
+ /*
+ * Handle any quest tags
+ */
+
+ if((oxml = exml->FirstChildElement("quest"))){
+ const char *qname;
+ while(oxml){
+ if((qname = oxml->Attribute("assign")))
+ player->qh.current.push_back((Quest){qname,"None",(struct item_t){0,0}});
+ oxml = oxml->NextSiblingElement();
+ }
+ }
/*
* Handle any 'give' requests.
diff --git a/src/inventory.cpp b/src/inventory.cpp
index 4d94831..de60030 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -71,11 +71,7 @@ int Inventory::takeItem(std::string name,uint count){
return -1;
}
-/*static const Item item[ITEM_COUNT]= {
- #include "../config/items.h"
-};*/
-
-static GLuint *itemtex;//[ITEM_COUNT];
+static GLuint *itemtex;
void itemDraw(Player *p,uint id);
void initInventorySprites(void){
@@ -103,10 +99,6 @@ const char *getItemTexturePath(std::string name){
return NULL;
}
-/*char *getItemTexturePath(ITEM_ID id){
- return item[id].textureLoc;
-}*/
-
float getItemWidth(std::string name){
for(auto &i : itemMap){
if(i->name == name)
@@ -115,10 +107,6 @@ float getItemWidth(std::string name){
return 0;
}
-/*int getItemWidth(ITEM_ID id){
- return item[id].width;
-}*/
-
float getItemHeight(std::string name){
for(auto &i : itemMap){
if(i->name == name)
@@ -127,74 +115,18 @@ float getItemHeight(std::string name){
return 0;
}
-/*int getItemHeight(ITEM_ID id){
- return item[id].height;
-}*/
-
-/*Item::Item(ITEM_ID i, const char *n, ITEM_TYPE t, float w, float h, int m, const char *tl){
- id = i;
- type = t;
- width = w;
- height = h;
- maxStackSize = m;
-
- name = new char[strlen(n)+1];
- textureLoc = new char[strlen(tl)+1];
-
- strcpy(name,n);
- strcpy(textureLoc,tl);
-
- //tex= new Texturec(1,textureLoc);
-}*/
-
Inventory::Inventory(unsigned int s){
sel=0;
size=s;
- //inv = new struct item_t[size];
- //memset(inv,0,size*sizeof(struct item_t));
}
Inventory::~Inventory(void){
- //delete[] inv;
}
void Inventory::setSelection(unsigned int s){
sel=s;
}
-/*int Inventory::addItem(ITEM_ID id,unsigned char count){
- //std::cout << id << "," << inv[os].id << std::endl;
-
- for(unsigned int i = 0; i < size; i++){
- if(inv[i].id == id){
- inv[i].count += count;
- return 0;
- }
- }
- inv[os].id = id;
- inv[os].count += count;
- os++;
-
-#ifdef DEBUG
- DEBUG_printf("Gave player %u more %s(s)(ID: %d).\n",count,item[id].name,item[id].id);
-#endif // DEBUG
-
- return 0;
-}*/
-
-/*int Inventory::takeItem(ITEM_ID id,unsigned char count){
- for(unsigned int i = 0;i < size;i++){
- if(inv[i].id == id){
-#ifdef DEBUG
- DEBUG_printf("Took %u of player's %s(s).\n",count,item[i].name);
-#endif // DEBUG
- inv[i].count-=count;
- return 0;
- }
- }
- return -1;
-}*/
-
void Inventory::draw(void){
static unsigned int lop = 0;
const unsigned int numSlot = 7;
@@ -213,13 +145,9 @@ void Inventory::draw(void){
r.start.x = player->loc.x + (player->width/2);
r.start.y = player->loc.y + (player->height/2);
curCoord[a++] = r.start;
- //dfp[a] = 0;
- //a++;
}a=0;
- if(invOpening){
- //end = 0;
-
+ if(invOpening){
for(auto &d : dfp){
if(!a || dfp[a - 1] > 50)
d += 1.65 * deltaTime;
@@ -228,7 +156,6 @@ void Inventory::draw(void){
a++;
}a=0;
- // if(end < numSlot)
if(numSlot > 0)invOpen=true;
}else{
for(auto &d : dfp){
@@ -262,10 +189,10 @@ void Inventory::draw(void){
if(!items.empty() && a < items.size() && items[a].count){
glEnable(GL_TEXTURE_2D);
- glBindTexture(GL_TEXTURE_2D, itemtex[items[a].id/*inv[a].id*/]);
+ glBindTexture(GL_TEXTURE_2D, itemtex[items[a].id]);
glColor4f(1.0f, 1.0f, 1.0f, ((float)dfp[a]/(float)(range?range:1))*0.8f);
glBegin(GL_QUADS);
- if(itemMap[items[a].id]->height > itemMap[items[a].id]->width){//item[inv[a].id].width){
+ if(itemMap[items[a].id]->height > itemMap[items[a].id]->width){
glTexCoord2i(0,1);glVertex2i(r.end.x-((itemWide/2)*((float)itemMap[items[a].id]->width/(float)itemMap[items[a].id]->height)), r.end.y-(itemWide/2));
glTexCoord2i(1,1);glVertex2i(r.end.x+((itemWide/2)*((float)itemMap[items[a].id]->width/(float)itemMap[items[a].id]->height)), r.end.y-(itemWide/2));
glTexCoord2i(1,0);glVertex2i(r.end.x+((itemWide/2)*((float)itemMap[items[a].id]->width/(float)itemMap[items[a].id]->height)), r.end.y+(itemWide/2));
@@ -284,7 +211,7 @@ void Inventory::draw(void){
a++;
- if(sel == a){
+ if(sel == a - 1){
glBegin(GL_LINES);
glColor4f(1.0f, 0.0f, 0.0f, 0.0f);
glVertex2i(r.start.x,r.start.y);
@@ -359,14 +286,13 @@ void Inventory::draw(void){
}
glEnd();
glDisable(GL_TEXTURE_2D);
- //ui::putText(r.end.x-(itemWide/2)+(itemWide*.85),r.end.y-(itemWide/1.75),"%d",inv[a].count);
a++;
}
ui::putStringCentered(player->loc.x+player->width/2, player->loc.y + range*.75,itemMap[items[highlight].id]->name.c_str());
}
- if(!items.empty() && items[sel].count)
+ if(!items.empty() && items.size() > sel && items[sel].count)
itemDraw(player,items[sel].id);
lop++;
}
@@ -383,13 +309,11 @@ void itemDraw(Player *p,uint id){
if(hangle < 15){
hangle=15.0f;
p->inv->usingi = false;
- //swing=false;
}
}else{
if(hangle > -15){
hangle=-15.0f;
p->inv->usingi = false;
- //swing=false;
}
}
}else hangle = 0.0f;
@@ -416,7 +340,6 @@ void itemDraw(Player *p,uint id){
int Inventory::useItem(void){
static bool up = false;
- //ITEM_TYPE type = item[inv[sel].id].type;
if(!invHover){
if(itemMap[items[sel].id]->type == "Sword"){
@@ -430,23 +353,11 @@ int Inventory::useItem(void){
if(hangle==15){up=true;Mix_PlayChannel(2,swordSwing,0);}
if(up)hangle+=.75*deltaTime;
if(hangle>=90)hangle=14;
- /*
- if(hangle<90&&!up)hangle+=.75*deltaTime;
- if(hangle>=90&&!up)up=true;
- if(up)hangle-=.75*deltaTime;
- if(up&&hangle<=15){
- up=false;
- swing=false;
- hangle=15;
- return 0;
- }*/
}
}else if(!swing){
swing=true;
Mix_PlayChannel(2,swordSwing,0);
}
- //hangle++;
- //break;
}
}
return 0;
diff --git a/src/ui.cpp b/src/ui.cpp
index 8e6d8e3..a075037 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -221,12 +221,13 @@ namespace ui {
* making it white-on-black.
*/
- buf = new char[ftf->glyph->bitmap.width * ftf->glyph->bitmap.rows * 4]; //(char *)malloc(ftf->glyph->bitmap.width*ftf->glyph->bitmap.rows*4);
+ buf = new char[ftf->glyph->bitmap.width * ftf->glyph->bitmap.rows * 4];
for(j=0;j<ftf->glyph->bitmap.width*ftf->glyph->bitmap.rows;j++){
buf[j*4 ]=fontColor[0];
buf[j*4+1]=fontColor[1];
buf[j*4+2]=fontColor[2];
+ //buf[j*4+3]=ftf->glyph->bitmap.buffer[j] == 255 ? 255 : 0;
buf[j*4+3]=ftf->glyph->bitmap.buffer[j];
}
@@ -631,7 +632,7 @@ namespace ui {
for(auto &c : player->qh.current){
hub.y -= fontSize * 1.15;
- putString(hub.x,hub.y,c->title);
+ putString(hub.x,hub.y,c.title.c_str());
}
}
}
@@ -768,7 +769,9 @@ namespace ui {
offset.x+m.button.loc.x + m.button.dim.x,
offset.y+m.button.loc.y + m.button.dim.y);
//draw the button text
- putStringCentered(offset.x + m.button.loc.x + (m.button.dim.x/2), (offset.y + m.button.loc.y + (m.button.dim.y/2)) - ui::fontSize/2, m.button.text);
+ putStringCentered(offset.x + m.button.loc.x + (m.button.dim.x/2),
+ (offset.y + m.button.loc.y + (m.button.dim.y/2)) - ui::fontSize/2,
+ m.button.text);
//tests if the mouse is over the button
if(mouse.x >= offset.x+m.button.loc.x && mouse.x <= offset.x+m.button.loc.x + m.button.dim.x){
@@ -874,6 +877,68 @@ namespace ui {
}
setFontSize(16);
}
+
+ void takeScreenshot(GLubyte* pixels){
+ GLubyte bgr[SCREEN_WIDTH*SCREEN_HEIGHT*3];
+ for(uint x = 0; x < SCREEN_WIDTH*SCREEN_HEIGHT*3; x+=3){
+ bgr[x] = pixels[x+2];
+ bgr[x+1] = pixels[x+1];
+ bgr[x+2] = pixels[x];
+ }
+
+ time_t epoch = time(NULL);
+ struct tm* timen = localtime(&epoch);
+
+ std::string name = "screenshots/";
+ name += std::to_string(1900 + timen->tm_year) += "-";
+ name += std::to_string(timen->tm_mon + 1) += "-";
+ name += std::to_string(timen->tm_mday) += "_";
+ name += std::to_string(timen->tm_hour) += "-";
+ name += std::to_string(timen->tm_min) += "-";
+ name += std::to_string(timen->tm_sec);
+ name += ".bmp";
+ FILE* bmp = fopen(name.c_str(), "w+");
+
+ unsigned long header_size = sizeof(BITMAPFILEHEADER) +
+ sizeof(BITMAPINFOHEADER);
+
+ BITMAPFILEHEADER bmfh;
+ BITMAPINFOHEADER bmih;
+
+ memset(&bmfh, 0, sizeof(BITMAPFILEHEADER));
+ memset(&bmih, 0, sizeof(BITMAPINFOHEADER));
+
+ bmfh.bfType = 0x4d42;
+
+ bmfh.bfOffBits = 0x36;
+ bmfh.bfSize = header_size;
+ bmfh.bfReserved1 = 0;
+ bmfh.bfReserved2 = 0;
+
+
+ bmih.biSize = sizeof(BITMAPINFOHEADER);
+ bmih.biBitCount = 24;
+
+ bmih.biClrImportant = 0;
+ bmih.biClrUsed = 0;
+
+ bmih.biCompression = 0;
+
+ bmih.biWidth = SCREEN_WIDTH;
+ bmih.biHeight = SCREEN_HEIGHT;
+
+ bmih.biPlanes = 1;
+ bmih.biSizeImage = 0;
+
+ bmih.biXPelsPerMeter = 0x0ec4;
+ bmih.biYPelsPerMeter = 0x0ec4;
+
+ fwrite(&bmfh, 1,sizeof(BITMAPFILEHEADER),bmp);
+ fwrite(&bmih, 1,sizeof(BITMAPINFOHEADER),bmp);
+ fwrite(&bgr, 1,3*SCREEN_WIDTH*SCREEN_HEIGHT,bmp);
+
+ }
+
void dialogAdvance(void){
unsigned char i;
if(!typeOutDone){
@@ -1125,11 +1190,12 @@ DONE:
currentWorld->addLight({player->loc.x + SCREEN_WIDTH/2, player->loc.y},{1.0f,1.0f,1.0f});
break;
case SDLK_F12:
- std::cout << "Took screenshot" << std::endl;
// Make the BYTE array, factor of 3 because it's RBG.
static GLubyte* pixels = new GLubyte[ 3 * SCREEN_WIDTH * SCREEN_HEIGHT];
glReadPixels(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, pixels);
+ takeScreenshot(pixels);
+ std::cout << "Took screenshot" << std::endl;
break;
default:
break;
diff --git a/src/world.cpp b/src/world.cpp
index df0f0ac..7126095 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -1371,13 +1371,23 @@ void IndoorWorld::draw(Player *p){
extern bool inBattle;
+std::vector<World *> battleNest;
+std::vector<vec2> battleNestLoc;
+
Arena::Arena(World *leave,Player *p,Mob *m){
generate(800);
addMob(MS_DOOR,100,100);
+
inBattle = true;
- exit = leave;
- pxy = p->loc;
mmob = m;
+ //exit = leave;
+ //pxy = p->loc;
+
+ mob.push_back(m);
+ entity.push_back(m);
+
+ battleNest.push_back(leave);
+ battleNestLoc.push_back(p->loc);
star = new vec2[100];
memset(star,0,100 * sizeof(vec2));
@@ -1392,14 +1402,20 @@ Arena::~Arena(void){
}
World *Arena::exitArena(Player *p){
+ World *tmp;
if(p->loc.x + p->width / 2 > mob[0]->loc.x &&
p->loc.x + p->width / 2 < mob[0]->loc.x + HLINE * 12 ){
- inBattle = false;
+ tmp = battleNest.front();
+ battleNest.erase(battleNest.begin());
+
+ inBattle = !battleNest.empty();
ui::toggleBlackFast();
ui::waitForCover();
- p->loc = pxy;
- mmob->alive = false;
- return exit;
+
+ p->loc = battleNestLoc.back();
+ battleNestLoc.pop_back();
+ //mmob->alive = false;
+ return tmp;
}else{
return this;
}
diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml
index 6fe220c..129ff46 100644
--- a/xml/playerSpawnHill1.xml
+++ b/xml/playerSpawnHill1.xml
@@ -34,6 +34,7 @@
<Dialog name="Johnny">
<text id="0" nextid="1" stop="true">
Sup bro!
+ <quest assign="Quest #1" />
</text>
<text id="1" >