Zombie Outrage 2 (ZO2 Updates)

Anything related in any way to game development as a whole is welcome here. Tell us about your game, grace us with your project, show us your new YouTube video, etc.

Moderator: PC Supremacists

Post Reply
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Zombie Outrage 2 (ZO2 Updates)

Post by eatcomics »

:O everytime I get on the forums you have an update :D that's so awesome its not even funny
Image
User avatar
TheAustech
Chaos Rift Cool Newbie
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)

Post by TheAustech »

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
User avatar
TheAustech
Chaos Rift Cool Newbie
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)

Post by TheAustech »

I haven't been programming ZO2 too much. But although programming is the shit, there's other things that distract you. Things like:


ImageGaming
ImageFooding
ImageReading


And also, messing around with OpenGL + 3D. It's a lot harder than I expected.
Image
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. :/
User avatar
epicasian
Chaos Rift Junior
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)

Post by epicasian »

TheAustech wrote: But don't worry. ZO2 isn't dead.
That's punny because...you know....zombies...dead? XD
User avatar
GroundUpEngine
Chaos Rift Devotee
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)

Post by GroundUpEngine »

TheAustech wrote:And also, messing around with OpenGL + 3D.
Good man ;)
User avatar
TheAustech
Chaos Rift Cool Newbie
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)

Post by TheAustech »

epicasian wrote: That's punny because...you know....zombies...dead? XD
Oh youuuu. XD
GroundUpEngine wrote: Good man ;)
Thanks dude. :D



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. :)
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Zombie Outrage 2 (ZO2 Updates)

Post by eatcomics »

Sweet harnessing the power of OpenGL :D Edit you should make space invaders in OpenGL, then you could totally out do mine...
Image
User avatar
cypher1554R
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1124
Joined: Sun Jun 22, 2008 5:06 pm

Re: Zombie Outrage 2 (ZO2 Updates)

Post by cypher1554R »

likes this

keep it up!
User avatar
davidthefat
Chaos Rift Maniac
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)

Post by davidthefat »

Oh Hai, so what is going on in here?
User avatar
TheAustech
Chaos Rift Cool Newbie
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)

Post by TheAustech »

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:

  • 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
User avatar
davidthefat
Chaos Rift Maniac
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)

Post by davidthefat »

Wouldn't it be more challenging if you cannot see outside your light? or would that make the game so challenging that its impossible?
User avatar
Ginto8
ES Beta Backer
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)

Post by Ginto8 »

davidthefat 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?
Actually, if you didn't notice, it darkened as you went on
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.
User avatar
davidthefat
Chaos Rift Maniac
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)

Post by davidthefat »

Ginto8 wrote:
davidthefat 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?
Actually, if you didn't notice, it darkened as you went on
I never noticed
User avatar
Ginto8
ES Beta Backer
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)

Post by Ginto8 »

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.
User avatar
GroundUpEngine
Chaos Rift Devotee
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)

Post by GroundUpEngine »

Great work!! :7
Post Reply