Sunday, July 17, 2011

In Profundis: New Video

The work on the graphics engine has borne a bit of fruit.  Have a look:


http://www.youtube.com/watch?v=JBdauy4GaHU

Notes:
This is the first time I've shown off the engine using larger tiles.  Of course the graphics for walls are fairly plain right now.  What isn't shown is that there are now up to eight kinds of stone, which will have randomized properties.

The big thing that's visible here is that sand and water now has a smooth surface.  In particular this looks nice when a single level of water is moving around at the surface of a pool.  At the moment this is only cosmetic, and a bit glitchy at that.  Notice how, when water meets up with sand at about the same level, the sand angles down but the water stays level, and so it looks like it's being held up by air.

Also, the known "map" areas out of sight but still onscreen are now displayed using outlines.  There is some intelligence there that outlines the edges of the region but not the tiles in the middle.  It's not perfect yet; you can see some dots in regions where aborted walls are drawn, and the line isn't complete at the right-hand sides of slopes.  Not to mention, in some cases where sand is underwater, a black corner is drawn on the sand.

The update engine now uses a hybrid of the first system, which was a simple for loop, and the second system, which kept a list of all the tiles that might change this turn and iterated through them.  Now it iterates through the cells in a spiral pattern from around the "focus," which is either the player's location or the cursor.  It keeps a "dirty" flag on cells that might need updating next frame, allowing the game to avoid looking at every cell with complex interactions, like fluids, just to determine that they don't have anything to do this frame.  There are a couple of bugs with this too at the moment: sometimes the game forgets about liquids on "steps" and they are left to just pool there, and in edit mode placed fluids don't do anything until an adjacent space is modified.

I've also started planning out how gasses will be returned to the game.  They probably won't be updated as often as liquids, which befits a more diffuse way of spreading.


5 comments:

  1. You know what would be cool? To give a choice between the standard graphics and the nerdy graphics, where nerdy stands for the graphics of the first videos. I liked those rectangular little shapes!
    Also, mod friendly? To get personalized graphics.

    Still, yay!

    ReplyDelete
  2. The old graphics are still in place for use with Edit Mode.

    Unfortunately modability went down a bit because In Profundis doesn't use arbitrary tiles for fluids anymore, but line drawing routines. It was that or create literally hundreds of tiles for all the liquid states.

    ReplyDelete
  3. If you don't mind a bit of animation critique, the character should be leaning forward as she runs. She's narrow enough (ie, not a short and squatty character like Mario) that it looks odd to have her standing bolt upright while moving.

    That aside, looking good. I'm curious to hear if you have a backstory in mind for the game.

    ReplyDelete
  4. Thanks, although the character will probably be changing in ways beyond just that.

    ReplyDelete