Zombie Outrage 2 (ZO2 Updates)
Moderator: PC Supremacists
Re: Zombie Outrage 2 (ZO2 Updates)
:O everytime I get on the forums you have an update :D that's so awesome its not even funny
- TheAustech
- Chaos Rift Cool Newbie
- Posts: 96
- Joined: Fri Sep 03, 2010 4:38 pm
- Current Project: BeatTapper
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++, C#
- Location: Maryland
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
Hey guys, this is the probably the last time I'll be posting about these damn lights. The previous picture was very well optimized but had some flaws and errors. But now they're fixed and still optimized. I don't have pics, but I do have an unlisted YouTube video specially made for this occasion!
http://www.youtube.com/watch?v=tILhn-kLBZg
Don't you feel lucky to have the url? XD
http://www.youtube.com/watch?v=tILhn-kLBZg
Don't you feel lucky to have the url? XD
- TheAustech
- Chaos Rift Cool Newbie
- Posts: 96
- Joined: Fri Sep 03, 2010 4:38 pm
- Current Project: BeatTapper
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++, C#
- Location: Maryland
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
I haven't been programming ZO2 too much. But although programming is the shit, there's other things that distract you. Things like:
Gaming
Fooding
Reading
And also, messing around with OpenGL + 3D. It's a lot harder than I expected.
Do you like? It would look like a 3D shape if I added quads to connect the triangle faces.
But don't worry. ZO2 isn't dead. It was put off for most of this week. But, today, (mostly tonight), I was working on the free mode game mode a little more. And some menu / state systems.
-snip-
Took out media and deleted it because it didn't even meet my standards. Sorry. :/
Gaming
Fooding
Reading
And also, messing around with OpenGL + 3D. It's a lot harder than I expected.
Do you like? It would look like a 3D shape if I added quads to connect the triangle faces.
Code: Select all
#include <SFML/Graphics.hpp>
#include <SFML/OpenGL.hpp>
int main()
{
sf::RenderWindow win(sf::VideoMode( 800, 600), "3D");
sf::Event event;
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(90, 1.5, 0, 400);
while(win.IsOpened())
{
while(win.GetEvent(event))
{
if(event.Type == sf::Event::Closed){win.Close();}
}
win.Clear();
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glTranslatef(0,-3,-5);
glBegin(GL_TRIANGLES);
glVertex3f(0,0,0);
glVertex3f(1, 1, 0);
glVertex3f(2, 0, 0);
glVertex3f(0,0,-5);
glVertex3f(1,1,-5);
glVertex3f(2,0,-5);
glEnd();
win.Display();
}
}
But don't worry. ZO2 isn't dead. It was put off for most of this week. But, today, (mostly tonight), I was working on the free mode game mode a little more. And some menu / state systems.
-snip-
Took out media and deleted it because it didn't even meet my standards. Sorry. :/
- epicasian
- Chaos Rift Junior
- Posts: 232
- Joined: Mon Feb 22, 2010 10:32 pm
- Current Project: Gigazilla Engine
- Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
- Programming Language of Choice: C/++
- Location: WoFo, KY
Re: Zombie Outrage 2 (ZO2 Updates)
That's punny because...you know....zombies...dead? XDTheAustech wrote: But don't worry. ZO2 isn't dead.
- GroundUpEngine
- Chaos Rift Devotee
- Posts: 835
- Joined: Sun Nov 08, 2009 2:01 pm
- Current Project: mixture
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: UK
Re: Zombie Outrage 2 (ZO2 Updates)
Good manTheAustech wrote:And also, messing around with OpenGL + 3D.
- TheAustech
- Chaos Rift Cool Newbie
- Posts: 96
- Joined: Fri Sep 03, 2010 4:38 pm
- Current Project: BeatTapper
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++, C#
- Location: Maryland
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
Oh youuuu. XDepicasian wrote: That's punny because...you know....zombies...dead? XD
Thanks dude. :DGroundUpEngine wrote: Good man
But yeah, I'm gonna probably re-upload a different video for media today. Because I want to clean up some things with free mode before I show it off.
Re: Zombie Outrage 2 (ZO2 Updates)
Sweet harnessing the power of OpenGL :D Edit you should make space invaders in OpenGL, then you could totally out do mine...
- cypher1554R
- Chaos Rift Demigod
- Posts: 1124
- Joined: Sun Jun 22, 2008 5:06 pm
Re: Zombie Outrage 2 (ZO2 Updates)
likes this
keep it up!
keep it up!
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
Oh Hai, so what is going on in here?
- TheAustech
- Chaos Rift Cool Newbie
- Posts: 96
- Joined: Fri Sep 03, 2010 4:38 pm
- Current Project: BeatTapper
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++, C#
- Location: Maryland
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
So it's been a while since an update. What happened?
Well, as I said before, I have been messing with 3D a bit. But, there's something else.
All my updates involved one thing:
Sooner and sooner I was reaching that point. The point where I had to do things with them. All my videos were me playing around with them. But now, I'm proud to present, footage of my current Work in progress game mode:
Survival: Version (A)lpha
Survival is exactly what it is. You have to survive. Based of Valve's Left for Dead's survival mode. It's currently an alpha state, but it's pretty fun
So what make's it challenging?
As with any game, the thing that makes it fun, is giving a fun challenge, but step the player up gradually. That's where I used the lighting system to my advantage. As each horde is released, the world gets darker. It's not shown in the video (down below), but when the world gets as dark as it can get, the next horde reset's it to light again. This allows the player to take a good break from the darkness and try to get back in the zone. I don't want to completely torment the player forever. :P
So here's the video. Thanks for watching, and enjoy. : )
http://www.youtube.com/watch?v=yqevp2997yU
Well, as I said before, I have been messing with 3D a bit. But, there's something else.
All my updates involved one thing:
- Level Parsing
Lighting
Vehicles
Explosions
New Zombie
Dynamic Lighting
Sooner and sooner I was reaching that point. The point where I had to do things with them. All my videos were me playing around with them. But now, I'm proud to present, footage of my current Work in progress game mode:
Survival: Version (A)lpha
Survival is exactly what it is. You have to survive. Based of Valve's Left for Dead's survival mode. It's currently an alpha state, but it's pretty fun
So what make's it challenging?
As with any game, the thing that makes it fun, is giving a fun challenge, but step the player up gradually. That's where I used the lighting system to my advantage. As each horde is released, the world gets darker. It's not shown in the video (down below), but when the world gets as dark as it can get, the next horde reset's it to light again. This allows the player to take a good break from the darkness and try to get back in the zone. I don't want to completely torment the player forever. :P
So here's the video. Thanks for watching, and enjoy. : )
http://www.youtube.com/watch?v=yqevp2997yU
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
Wouldn't it be more challenging if you cannot see outside your light? or would that make the game so challenging that its impossible?
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Zombie Outrage 2 (ZO2 Updates)
Actually, if you didn't notice, it darkened as you went ondavidthefat wrote:Wouldn't it be more challenging if you cannot see outside your light? or would that make the game so challenging that its impossible?
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Zombie Outrage 2 (ZO2 Updates)
I never noticedGinto8 wrote:Actually, if you didn't notice, it darkened as you went ondavidthefat wrote:Wouldn't it be more challenging if you cannot see outside your light? or would that make the game so challenging that its impossible?
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Zombie Outrage 2 (ZO2 Updates)
One thing I noticed is that as it darkened it almost got difficult to the point of unplayable. I think that if you also added a small-ish circle of light directly around the player so that they can see what's around them would make it even more enjoyable.
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
- GroundUpEngine
- Chaos Rift Devotee
- Posts: 835
- Joined: Sun Nov 08, 2009 2:01 pm
- Current Project: mixture
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: UK