Jump to content

Kronos' Blog

  • entry
    1
  • comments
    4
  • views
    7,225

My New Mantra - keep it simple


Kronos

1,904 views

 Share

After a few of weeks of programming burnout I am now back in action. i think I was starting to feel a bit swamped with the increasing complexity of my project amongst other things however things are looking a bit rosier now. I probably should have sat down and made a proper plan because of all the dependencies of the various elements.

 

My history with Leadwerks has been somewhat chequered and I have struggled for along time trying to do stuff with it in the past. However lately things just seem to be clicking so I have decided to move my main project over from Xors3d to Leadwerks. Xors is a good, easy to use engine but it has certain flaws which make it less than ideal for my purposes plus I am more of an OpenGL man.

 

My aim is to make a sort of strategy/vehicle combat type game in the vein of battlezone/armourgeddon/carrier command. Due to my limited programming skill I am trying to make it as simple as possible at the moment.(Still seems pretty damn complicated)

 

What I have so far:.

 

Vehicle mesh loading - Had to write my own mesh loader to overcome certain problems

 

Vehicle navigation - nothing fancy just point to point. I will probably have to add some simple(if there is such a thing) obstacle avoidance at some point. I have a sort of an idea about a passive avoidance system but haven't experimented with it yet.

 

Order System - only 4 order types at the moment (only 1 thats actually working!) - vehicles and other entities will be controlled by orders

 

Turret system - controls turret rotation/aiming - turrets attach to vehicles

 

Gun system - controls the firing ie when to fire,where to fire from, reload times, etc - guns attach to turrets

 

Projectile - guns fire projectiles - deals with collisions - projectile types and effects. One thing I am particularly keen to have is proper lighting on missiles and explosions ie so the landscape will light up when they fly past or explode.

 

Arbitrary world partition system - manages vehicles and other entities - vehicles need to know about other vehicles and buildings in their vicinity whether they are friendly or not. I call it arbitrary because the world sectors can be any position, and theoretically any size, in 3d space. There are probably better ways to do it but in keeping with my mantra i am keeping it simple,

 

Things to do.

 

Next step is probably create some different particle effects for projectiles and explosions.

 

Implement some actual vehicle behaviours - now that I have the order system in place vehicles should be able to issue their own orders under certain conditions ie aggressively pursuing detected enemies.

 

I am kind of excited as I feel I am actually quite close to having something that will soon have a life of its own, just a couple more hills (mountains) to climb.

 Share

4 Comments


Recommended Comments

Guest Red Ocktober

Posted

whether you choose Leadwerks or XORS is really irrelevant to managing the complexity of the game you've described...

 

first a question... do you think it's easier to program an entire game at once, or do you think it's easier to program a single element of a game...

 

would focusing on a single element of the game (the car for example) make it easier to manage and develop the logic... i mean, as opposed to trying to focus on many things at one time (scenery, game objects, effects, ai, navigation)...

 

i think it would...

 

an objective programming approach would allow you to focus on one aspect of the game at a time... the vehicle for example, develop it so that it can exist as an independent entity within the game world that you're creating...

 

only give it what it needs to be a vehicle... nothing else...

 

then, when you need it you can just drop it into a game (instantiate a vehicle object) and it'll work...

 

and... when you're ready to add ai, you can just create the type of behaviors you need in a aiVehicleController class, focusing just on that part...

 

the important part of the object oriented approach is that it allows you to to focus on one thing, and just that one thing... breaking a complex set of tasks into smaller, discrete, and more manageable ones...

 

good luck...

 

on yeah... there is one caveat...

 

object oriented development requires a lot of thinking be done before you start coding... in short you've got to have a well thought out plan...

 

--Mike

Link to comment

Mike that comment could be another blog post in itself :D

 

But I do agree with Mike - object oriented is the way to go but plan plan plan! if you fail to plan you plan to fail...

Link to comment
Guest Red Ocktober

Posted

whoa... that is a looooong one, isn't it...

 

sometimes i do get a lil carried away... sorry...

my only excuse is that when it comes to OOP programming, i proclaim... I Am The OOP Evangelist!!

:D :D

 

--Mike

Link to comment

Evangelise away :D it was a good read. I'm not sure why you think I haven't taken an OOP approach to this, I thought I had spelled it out pretty clearly.

Link to comment
Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...