Water ... that adapts itself to the flow, that breaks everything like a sword
The Humble Indie Bundle #3
Get link
Facebook
X
Pinterest
Email
Other Apps
-
This time short post for people that didn't know (like I) that run 3rd edition of action Humble Indie Bundle. Where you can get 5 Indie titles and in the same time support some charity foundations. More info on:
I already bought it and spread the word :). I really appreciate this bundle since they one. Its a very nice opportunity to support independent developers.
I played in them to :] and + I played vvvvvv and it's simple but gameplay rules (it's addictive). Two next game I will try today (yesterday I slept all day after work :])
So like always start with problem description: I have some pool of command represented as enumerator. Each of command can have unique data that size can be different. I wanted to create system that allow me in easy way iterate over them and execute. After some time I created this implementation: template<ECommands::enum cmd> bool execCommandTemp(ECommands::ENUM a_cmd, void* a_data) { if (a_cmd == cmd) { SCommand<cmd>::execute((SCommand ::SData*)a_data); return false; } return execCommandTemp<(ECommands::ENUM)(cmd+1)>(a_cmd, a_data); } template<> bool execCommandTemp<ECommands::WRAP>(ECommands::ENUM a_cmd, void* a_data) { return true; } bool execCommand( ECommands::ENUM a_cmd, void* a_data ) { return execCommandTemp<(ECommands::ENUM)0>(a_cmd, a_data); } where SCommand look in example such a way: template <> st...
And as I said last time new preview is available: As you can see a lot has changed. Right now I mostly focus on gameplay so I do test of AI (some of them you can see on end of movie), changes in fight, items managing, fix some problem with physics and many other things. To say truth I don't remember them all :P So I'm going back to work and till next week.
Time is something funny we don't notice when but it pass by so quickly. Few months ago I announced release of this pre-alpha build. Then it was so far away right now only a little bit more then month left. You probably wondering what changed in this time. So below you will find some summary of biggest changes (from my point of view): Component base architecture Decision on big changes in engine architecture aren't easy. I think that transition from class base approach which looked like that : class CGameObject class CModelObject : public CGameObject class CPuppetObject : public CModelObject class CChcaracterObject: public CPuppetObject to component base ( like in Unity 3D ) was one of the biggest and most problematic changes that I done in White Rabbit Engine in last years. I needed to change a lot of code, don't break the game that I have and in the same time change my approach to resolving problems. Level Editor : New com...
I already bought it and spread the word :). I really appreciate this bundle since they one. Its a very nice opportunity to support independent developers.
ReplyDeleteYes :] I think that bundle is a grate thing :] And games are great to, they look very nice on my steam :]
ReplyDeleteOnly tried Cogs and Crayon yet, and both looks great and addicted.
ReplyDeleteI played in them to :] and + I played vvvvvv and it's simple but gameplay rules (it's addictive). Two next game I will try today (yesterday I slept all day after work :])
ReplyDeleteI played 2 other games and only Hammerfight somehow is hard to play. Irritating me that I can't get the control of my ship and don't know why.
ReplyDeleteAbout And Yet it moves. I played in demo/prototype of this game in past and it's still fun :]