zeoverlord

LD24

Looks like im doing this

So first time doing LD48 which is going to be interesting, While my game will be most likely entirely in 3d i don’t think it is going to be that advanced, as in no animations (beyond anything i can code by hand into it that is), minimal physics and so on.
But i will make it gamepad compatible which is something i think pc games lack sometimes.

I have really no idea of what game type or art style I’m going to choose, but i guess i will do that in about 1 day and 7 hours.

Language: C++

Libraries:
– OpenGL
– FMOD ( for sound )

IDE:Visual C++ 2008 Express

Basecode: i have my own based on the old NeHe base code with the addition of my new toolkit which should be available on flashbang.se before this starts, essentially my starting point will be the toolkit + basecode download

Graphics: photoshop more or less, though i might be using one or two other random tools

Sound/Music: SFXR  i think, the audio part of this game is going to be crap.

progress report #1

I have made movements and collisions working pretty well, next up is better terrain rendering, guns and stuff like that.
Maybe even start making some 3D models and new textures to make it look better

 

Comments

Webjoch
25. Aug 2012 · 12:08 UTC
Do you’ve a livestream?

progress report #2

Terrain generation took way longer than i had expected, but now at least i have an acceptable terrain and a new probe model.
I think tomorrow is all about weapons and enemies to begin with, then i will dig deeper into the upgrade system.

I have to say that i have leaned a lot this first day about what should have been in my toolkit from the beginning, like terrain generation, collision response, the ability to load a texture so that it can be accessed by the CPU and so on.

Probes of fury post mortem

So i completed my first ludum dare and i learned a lot. trough my “failure” so here are the lessons i learned in hope that i an whomever reads this will not repeat them.

1.Gamedesign should have been done ahead of time
Though i did have an idea it’s important to work trough a few ideas beforehand, especially when it comes to planning.
The main error i did was that i had like two hours at the start of the compo to shoehorn in the theme into an already existing idea and thereby making it too bloated.
The original idea i had was this helicopter sim in where you fly around shooting guns and rocket creating majestic explosions, destroying buildings.
But then came the theme “evolution”, i paniced and made up a story about a small mars probe that suddenly gained sentience and had to evolve itself by collecting parts from other probes sent to destroy you in order to survive.
What i should have done was to come up with a handful of base ideas that could each fit a few the final 20 themes, then plan each of them so that i the game will be made in time and that i know what kind of pieces i need beforehand.
Really if you have done the planning correctly all you need to do is follow the plan and do exactly as it says.

2. Keep up the phase
Anything not critically important  that takes more than 1 hour is not worth doing, seriously, i spent two hours on collision detection three on the terrain and at least 4 on making the bullets fly properly, not to mention setting up  the enemy spawning system and so on.
Now while reinventing terrain generation and collision detection is all fun in itself, that’s at least five hours i could have spent coding the AI, upgrade system and making more 3d models, all of which i now never got around to.
So note to self, next time if my toolkit cant do it or if i have to invent it, it’s not going to end up in the game at all.

3, Finish the game the first day.
After the first day i had my probe running around, terrain generated, camera working, collisions working and so on, that is to say not that different from the final product.
You will probably need at least 5-6 hours at the end to tidy things up and make it presentable which leaves you with like half a days worth of coding the second day, that is not a lot of time to code major parts of the game, not to mention if something goes horribly wrong and you have to spend time fixing it.
So if the game is not functionally finished the first day it will probably not be at the end of the second day.
If you do it that way you will have things to add instead of having to cut things from your design, not to mention more time to polish.

4. KISS
As in Keep It Simple Stupid, my game idea turned out to be pretty complicated, i mean there is a reason why a majority of games are 2D and pretty low fi.
And while i think i could have completed it properly given two more days, it should really have been done after the first one.
I think that if you want to keep it simple enough then imagine making an NES game with all it’s limitations.
So next time it’s either going to be a proper tile based 2D game or something like it.

5. Practice makes perfect
I have to say that i was pretty unprepared for this, although i once made a simple game in six hours this was compleetly different.
Before next time I’m going to attempt to train myself making a specific game type in a single day and you should too because that’s really what you have to work with, if it takes any longer than it’s not going to work and your design is too complicated.

6. Make sure your tools and procedures are up to date
I spent over an hour attempting to export a 3D model to an OBJ file, turns out that my modeling software doesn’t really agree with me that texture-coordinates are important, they are BTW.
What i should have done is make sure that i had a firm grasp on how to do the export properly.
Second mistake with the 3d models was that it utterly refused to export normal values which i also thought was important, so i had to go into a second application to generate those, in the end that was unnecessary since i didn’t have any lighting anyway (see, there goes the importance of planning again).
Third tool mistake was terrain generation, generating a flat plane with some random bumps in it shouldn’t be a problem, but it is if you have to do it from scratch, in the end i could just as well have made another 3D model and loaded it, but no i had to try to make it free roaming.
Well that failed and i was down another few hours and i was left with an impressively complicated construct using geometry shaders and a heightmap.

7. Choose your platform wisely
I chose windows using openGL and c++ which is pretty much the ultimate default choice for any game development.
That is for general game development, Ludum dare on the other hand is different beast altogether.
Don’t get me wrong, windows and c++ is really great, powerful and supreme in most regards, it’s also the platform i am mostly familiar with.
But it does have the slight problem with system bloat and you needing to basically code for every eventuality and hardware combination, which is good if you want to make a great game, but not in 48 hours.
So for the next one i might have to take the plunge into java or html5+webGL, either way it will have to run in a browser.
I’m just saying if it runs there it will run anywhere and i don’t have to worry as much about strange bugs popping up on other peoples systems.

8. Make it fun not good
Great gamedesign prioritizes fun, my initial game design idea was also fun, but not once i had to cut it down to size.
Always start with a very simple idea and work yourself up from that.

So those are the main lessons i learned, but on the bright side i did learn a lot of what my toolkit really needs for the next few versions, and that is really what i set out to do in the first place.

LD26

Yea im in

Looks like im doing this again, i have the house for myself, i got a pile of snacks at the ready and lots of lessons learned since the last time at LD #24.

I am going to limit myself a little when it comes to the scope of the game compared to last time, and it will be strictly 2D this time and physics no more advanced than super mario.
But i already have a few ideas to make it interesting

Language: C++

Libraries:
– OpenGL
– FMOD ( for sound )

IDE:Visual C++ 2008 Express

Basecode: i have my own based on the old NeHe base code with the addition of my own toolkit i am just finishing up some improvements to, though it’s largely the same as before.

Graphics: photoshop more or less, though i might be using one or two other random tools

Sound/Music: SFXR  i think, the audio part of this game is going to be crap.

Yes, finally done

and it turned out really great, there may be one or two things to think about before the next dare.

1. Make sure my toolkit actually can handle 2D really well2. Focus a bit more on gameplay next time

so anyway here is a screenshot

theescape

LD28

My in status

So third times the charm, though i am not sure how much time i have this weekend, but i will try at least if the theme is right, but it will have to be something simple.
I was originally going to do something more elaborate, but i didn’t have time to implement it in my toolkit, o well, maybe next LD48, in which i want to do something very different.

Language: C++11
Libraries:
– OpenGL
– BASS ( for sound )
IDE:Visual C++ 2013 Express (why i didn’t switch to this before is besides me, it’s fantastic)
Basecode: i have my own with roots in the old NeHe base code with the addition of my own toolkit that i am constantly adding improvements to.
Graphics: photoshop more or less, not that this game will have much of textures.

LD29

Doing this again

I think i know what to do, haven’t finalized the plan yet so it can still change depending on the theme.
It has to be simple though, this is LD48 after all and not LD148.

But this is the fourth time and i am exited, first one i came among the last and the trajectory is such that come this time next year i will probably win this whole thing. :)

Language: C++11
Libraries:
– OpenGL
– BASS ( for sound )
IDE:Visual C++ 2013 Express (why i didn’t switch to this before is besides me, it’s fantastic)
Basecode: i have my own with roots in the old NeHe base code with the addition of my own toolkit that i am constantly adding improvements to.
Graphics: photoshop more or less, might try out my new fancy tile editor i made, if i can ever make it work first, got about a day to do it in.

LD30

Fift time the charm

I think i am getting into the groove of these things i have a few ideas and the toolkit needs just a few more little tinkerings on the tile editor before i am ready to start, but hey i got 4 hours to spare so no biggie.
Lets just hope for a great theme like last time.

I might be streaming a bit during the contest somewhat randomly.

Language: C++11
Libraries:
– OpenGL
– BASS ( for sound )
IDE:Visual C++ 2013 Express
Basecode: i have my own with roots in the old NeHe base code with the addition of my own toolkit that i am constantly adding improvements to.
Graphics: photoshop more or less,  the tile editor i made for the toolkit.