Tuesday, January 17, 2012

Lead, Follow, or...


(map 'map-leader-test.tga')

(player (pos 17 12))

(torch (pos 19 11) on)
(torch (pos 19 13) on)
(torch (pos 46 34) on)
(torch (pos 54 34) on)
(torch (pos 68 68) on)
(torch (pos 68 76) on)

(lamp (pos 58 51) on)
(lamp (pos 63 51) on)

(leader (patrol (pos 13 12) (pos 49 36) (pos 72 72)))

I've been plodding along on work with ThiefRL. Mostly stuff that didn't add any new gameplay. Pathfinding is a bit faster, for instance. (I cut out a ton of heap allocation during path computation.) A level loads from a combination of a bitmap and a text file now, instead of being compiled into the executable. The bitmap (an enlarged sample shown above) specifies the base ground tiles, and the text file (also shown above) specifies the rest of the objects. It's much easier to lay out a level in a bitmap editor, although I will probably eventually have to break down and write my own level editor to gain additional productivity.

Via Harry Connolly's blog I encountered an essay by author Rachel Aaron: How I Went From Writing 2,000 Words a Day to 10,000 Words a Day. I follow a bunch of writers' blogs because they deal with similar productivity issues to mine. This article has inspired me. The thrust of it is:
  1. Plan what you will do before you do it
  2. Keep productivity records (and examine them for trends)
  3. Find something to be enthused about in each session's work

I've decided the most crucial thing to do right now is to prototype the gameplay elements I'm considering for ThiefRL but haven't yet nailed down. Think of them as the “verbs” of the game. This will enable me to figure out which things will work together which will then enable me to organize a game.

To that end I have put together a leader behavior (aka Call of Duty mode). I'm thinking that, in the early parts of the game, you might have a friendly character lead you around as part of training in how to hide, evade guards, etc. They might also point out the locations of compounds you'll be infiltrating later and give a bit of story about what they are.

The basic behavior is that the AI wants to get to a particular spot but they also want to be close to the player. Being close to the player takes priority, but once they're close enough they will head toward their goal. Once they arrive at their goal the player has to speak to them (by bumping) to trigger the next thing.

Next I'm going to adapt this into a frog-march behavior. The idea is that a guard has hold of the player and is forcing them to walk in a particular direction. It might be tremendously un-fun but I'm going to try it as it represents a possibility for softer failure conditions. It might also work as a movement tutorial in the very beginning of the game.

6 comments:

Mark said...

Welcome back! :)

Akhier the Dragon Hearted said...

I don't think your utilizing the bitmap to its full potential if you think you need something else at the current stage. A bitmap with no transparency stores in each cell 3 different values from 0 to 255. That means if your willing to give up on the ability to easily understand it by just looking at it you can probably easily encode everything you need into one with little or no problem. Then again a map editor would provide a way to easily distinguish between the different tiles where for instance have a torch that is off be 0,0,0 and a torch that is on be 0,1,0 would be impossible to just look and tell the differences and if a table is 1,0,0 suddenly the bar is full of torches and things go wild.

James McNeill said...

Thanks, Mark! I signed on to lead a Daisy Scout troop and that's been eating a lot of my free time. I'm glad you've been keeping going on your projects; I enjoy reading about those.

Akhier, the readability of the bitmap is my concern. One idea I had is to build the map in layers (in Photoshop or Gimp) and then export the layers as separate images. So you might have a "torch" image that indicates where they are. The trouble I ran into (in Gimp) is that I can't easily select a rectangle across all layers and transform it, which makes it difficult to move stuff around. I suppose I could use channels instead of layers but in Gimp, at least, you don't appear to be able to operate on all channels at once either (which seems totally broken to me).

There's a program called Tiled that looks somewhat promising. It's meant to be a generic tile editor but it has most of the features I'd need. It even has support for drawing polygons which is *almost* what I'd need for laying out paths.

Paul Donnelly said...

I like your frog march idea a lot. I'd been thinking of doing exactly that, so it will be nice to see how it works out.

Kevin Wells said...

Ooooh, a roguelike about thieving! I just discovered this. This sounds great! I found the page with the picture and download, is there a place where you've got more info about the game?

Haris1112 said...

Played your TheifRL. It's addicting. Awesome job! My keyboard doesn't have a numpad, so I had to figure out that 'i' was in place to skip turns. Pls make it more apparent :P
Awesome game though! Still haven't found a secret door, but will keep looking!