aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog9
-rw-r--r--assets/dirt.pngbin578 -> 228 bytes
-rw-r--r--assets/sounds/ozone.wavbin0 -> 12739644 bytes
-rw-r--r--main.cpp3
-rw-r--r--src/entities.cpp7
-rw-r--r--src/gameplay.cpp4
-rw-r--r--src/inventory.cpp8
-rw-r--r--src/world.cpp23
-rw-r--r--xcf/dirt.xcfbin1239 -> 757 bytes
9 files changed, 32 insertions, 22 deletions
diff --git a/Changelog b/Changelog
index d1fac71..f6f3ca0 100644
--- a/Changelog
+++ b/Changelog
@@ -426,3 +426,12 @@
- began/continued work on original player sprite
- began working on dirt textures
+
+12/16/2015:
+===========
+
+ - added more soundtracks
+ - completed dirt texturizing, improved ground shading
+ - checking files for potential divide by 0 errors, due to random floating point errors
+ still have floating point errors
+ - restarted work on real shading (GLSL stuffs)
diff --git a/assets/dirt.png b/assets/dirt.png
index 04c87b6..11252ac 100644
--- a/assets/dirt.png
+++ b/assets/dirt.png
Binary files differ
diff --git a/assets/sounds/ozone.wav b/assets/sounds/ozone.wav
new file mode 100644
index 0000000..60354e5
--- /dev/null
+++ b/assets/sounds/ozone.wav
Binary files differ
diff --git a/main.cpp b/main.cpp
index f7a1e83..80bbeb9 100644
--- a/main.cpp
+++ b/main.cpp
@@ -494,7 +494,8 @@ void mainLoop(void){
if(++debugDiv==20){
debugDiv=0;
- fps=1000/deltaTime;
+ if(deltaTime)
+ fps=1000/deltaTime;
}else if(!(debugDiv%10)){
debugY = player->loc.y;
}
diff --git a/src/entities.cpp b/src/entities.cpp
index 0df6b17..6a2f4db 100644
--- a/src/entities.cpp
+++ b/src/entities.cpp
@@ -107,7 +107,7 @@ NPC::NPC(){ //sets all of the NPC specific traits on object creation
tex = new Texturec(1,"assets/NPC.png");
inv = new Inventory(NPC_INV_SIZE);
- randDialog = rand() % 10 - 1;
+ randDialog = rand() % 12 - 1;
}
NPC::~NPC(){
while(!aiFunc.empty()){
@@ -218,7 +218,7 @@ void Entity::draw(void){ //draws the entities
case PLAYERT:
static int texState = 0;
static bool up = true;
- if(loops % (int)((float)4/(float)speed) == 0){
+ if(speed && !(loops % (int)(4.0f/(float)speed))){
//currentWorld->addParticle(loc.x,loc.y-HLINE,HLINE,HLINE,0,0,{0.0f,.17f,0.0f},1000);
if(up){
if(++texState==2)up=false;
@@ -343,7 +343,8 @@ const char *randomDialog[] = {
"HELP MY CAPS LOCK IS STUCK",
"You know, if anyone ever asked me who I wanted to be when I grow up, I would say Abby Ross.",
"I want to have the wallpaper in our house changed. It doesn\'t really fit the environment.",
- "Frig."
+ "Frig.",
+ "The sine of theta equals the opposite over the hypotenuese."
};
void NPC::interact(){ //have the npc's interact back to the player
diff --git a/src/gameplay.cpp b/src/gameplay.cpp
index 284bd78..d439814 100644
--- a/src/gameplay.cpp
+++ b/src/gameplay.cpp
@@ -109,13 +109,13 @@ void initEverything(void){
worldSpawnHill2 = new World();
worldSpawnHill2->generate(700);
worldSpawnHill2->setBackground(BG_FOREST);
- worldSpawnHill2->setBGM("assets/music/embark.wav");
+ worldSpawnHill2->setBGM("assets/music/ozone.wav");
worldSpawnHill2->addMob(MS_TRIGGER,-400,0,worldSpawnHill2_infoSprint);
worldSpawnHill3 = new World();
worldSpawnHill3->generateFunc(1000,gen_worldSpawnHill3);
worldSpawnHill3->setBackground(BG_FOREST);
- worldSpawnHill3->setBGM("assets/music/embark.wav");
+ worldSpawnHill3->setBGM("assets/music/ozone.wav");
worldSpawnHill3->addMob(MS_TRIGGER,-500,0,worldSpawnHill3_itemGet);
worldSpawnHill3->addMob(MS_TRIGGER,0,0,worldSpawnHill3_itemSee);
worldSpawnHill3->addObject(TEST_ITEM,false,"",-200,300);
diff --git a/src/inventory.cpp b/src/inventory.cpp
index 52ae02c..c0f4163 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -107,7 +107,7 @@ int Inventory::takeItem(ITEM_ID id,unsigned char count){
void Inventory::draw(void){
static unsigned int lop = 0;
- static unsigned int numSlot = 7;
+ const unsigned int numSlot = 7;
static std::vector<int>dfp(numSlot);
static std::vector<Ray>iray(numSlot);
static std::vector<vec2>curCoord(numSlot);
@@ -153,7 +153,7 @@ void Inventory::draw(void){
curCoord[a].y += float((dfp[a]) * sin(angle*PI/180));
r.end = curCoord[a];
- glColor4f(0.0f, 0.0f, 0.0f, ((float)dfp[a]/(float)range)*0.5f);
+ glColor4f(0.0f, 0.0f, 0.0f, ((float)dfp[a]/(float)(range?range:1))*0.5f);
glBegin(GL_QUADS);
glVertex2i(r.end.x-(itemWide/2), r.end.y-(itemWide/2));
glVertex2i(r.end.x-(itemWide/2)+itemWide, r.end.y-(itemWide/2));
@@ -164,7 +164,7 @@ void Inventory::draw(void){
if(inv[a].count > 0){
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, itemtex[inv[a].id]);
- glColor4f(1.0f, 1.0f, 1.0f, ((float)dfp[a]/(float)range)*0.8f);
+ glColor4f(1.0f, 1.0f, 1.0f, ((float)dfp[a]/(float)(range?range:1))*0.8f);
glBegin(GL_QUADS);
if(item[inv[a].id].height > item[inv[a].id].width){
glTexCoord2i(0,1);glVertex2i(r.end.x-((itemWide/2)*((float)item[inv[a].id].width/(float)item[inv[a].id].height)), r.end.y-(itemWide/2));
@@ -203,7 +203,7 @@ void Inventory::draw(void){
mouseSel=true;
}else{
if((ui::mouse.x - offset.x) >= mouseStart.x){
- thing = ((ui::mouse.x - offset.x) - mouseStart.x)/80;
+ thing = (ui::mouse.x - offset.x - mouseStart.x)/80;
highlight=sel+thing;
if(highlight>numSlot-1)highlight=numSlot-1;
if(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_LEFT)){
diff --git a/src/world.cpp b/src/world.cpp
index 1e205d1..7f4d6f6 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -207,7 +207,7 @@ void World::generate(unsigned int width){ // Generates the world and sets all va
* by setting an RGB value of color (red), color - 50 (green), color - 100 (blue).
*/
- line[i].color = rand() % 20 + 100; // 100 to 120
+ line[i].color = rand() % 32 / 8; // 100 to 120
/*
* Each line has two 'blades' of grass, here we generate random heights for them.
@@ -551,24 +551,23 @@ LOOP2:
bool hey=false;
glEnable(GL_TEXTURE_2D);
+ bgTex->bindNext();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); //for the s direction
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); //for the t direction
- bgTex->bindNext();
glBegin(GL_QUADS);
+ std::cout<<shade<<std::endl;
for(i=is;i<(unsigned)ie-GEN_INC;i++){
cline[i].y+=(yoff-DRAW_Y_OFFSET); // Add the y offset
if(!cline[i].y){
cline[i].y=base;
hey=true;
- //safeSetColor(cline[i].color-100+shade,cline[i].color-150+shade,cline[i].color-200+shade);
- }else{
- //safeSetColor(cline[i].color+shade,cline[i].color-50+shade,cline[i].color-100+shade); // Set the shaded dirt color
- }
- glColor4ub(255,255,255,255);
- glTexCoord2i(0,1);glVertex2i(cx_start+i*HLINE ,cline[i].y-GRASS_HEIGHT);
- glTexCoord2i(1,1);glVertex2i(cx_start+i*HLINE+HLINE,cline[i].y-GRASS_HEIGHT);
- glTexCoord2i(1,0);glVertex2i(cx_start+i*HLINE+HLINE,0);
- glTexCoord2i(0,0);glVertex2i(cx_start+i*HLINE ,0);
+ glColor4ub(0,0,0,255);
+ }else
+ safeSetColorA(150+shade*2,150+shade*2,150+shade*2,255);
+ glTexCoord2i(0,0);glVertex2i(cx_start+i*HLINE ,cline[i].y-GRASS_HEIGHT);
+ glTexCoord2i(1,0);glVertex2i(cx_start+i*HLINE+HLINE,cline[i].y-GRASS_HEIGHT);
+ glTexCoord2i(1,(int)(cline[i].y/64)+cline[i].color);glVertex2i(cx_start+i*HLINE+HLINE,0);
+ glTexCoord2i(0,(int)(cline[i].y/64)+cline[i].color);glVertex2i(cx_start+i*HLINE ,0);
cline[i].y-=(yoff-DRAW_Y_OFFSET); // Restore the line's y value
if(hey){
hey=false;
@@ -610,7 +609,7 @@ LOOP2:
cline[i].y+=(yoff-DRAW_Y_OFFSET);
- safeSetColor(shade,150+shade,shade);
+ safeSetColor(shade,100+shade*1.5,shade);
glVertex2i(cx_start+i*HLINE ,cline[i].y+cgh[0]);
glVertex2i(cx_start+i*HLINE+HLINE/2,cline[i].y+cgh[0]);
diff --git a/xcf/dirt.xcf b/xcf/dirt.xcf
index 6b50981..27a6e8f 100644
--- a/xcf/dirt.xcf
+++ b/xcf/dirt.xcf
Binary files differ