First Screenshot

Zort the Explorer

A partial game by bitcraft, wkmanire, and AlecksG. Includes basic gameplay, but only only a few levels. We ran out of time before more levels could be completed. Thanks for checking it out! Full source can be found at: https://github.com/bitcraft/pyweek19 Windows and OS X binaries are coming soon.

Awards


Press the left mouse button to fire the ducks!
Presented by cyhawk

Give this entry an award

Scores

Ratings (show detail)

Overall: 2.6
Fun: 2.1
Production: 2.9
Innovation: 2.9

15% respondents marked the game as not working.
Respondents: 11

Files

File Uploader Date
zort.zipfinal
First final upload
bitcraft 2014/10/12 07:35
Screen Shot 2014-10-08 at 2.37.34 PM.png
First Screenshot
bitcraft 2014/10/08 19:42

Diary Entries

First Entry!

I've been working with wkmanire and AlecksG on this pyweek. wkmanire has been helping with getting ideas, coding and supporting the project. AlecksG has added a very cool maze generator to build the levels, and I've been putting in 100% of my free time to correct issues with the hexagon tile renderer, but finally I am happy with it! We've got just a few basic game object implemented, but most of the work is done on the mechanics already. We're going to focus on getting game items and more levels.

Add a comment

Conclusion

What our team learned last week is that working with hexagon maps is hard! We spent a lot of time weeding out bugs that were caused by rounding errors and errors caused by coordinate transformations. Using pygame also brought its own limitations as we had to be very careful about how many blits were made ver frame and how to correctly handle hexagonal overlapping sprites. In the end, we only had about 1 day to really focus on making maps and implementing enemy behaviour, so there are only a few maps, and the enemies don't do much.

We did however accomplish a few fun things. The hexagon map display is fully 'dirty rect' compatible and renders quickly, even at 1280x800. It supports mixed column sizes, collisions, and even draws all columns over sprites. There is a built in maze generator and point-and-click map editor that saves and loads to JSON. We have a simple event system using a python dictionary, a fast simple physics systems with friction and gravity, and we've leveraged the fysom module for implementing enemy AI.

This was our first collaborative game making effort and we are planning on joining next pyweek. Next pyweek we will devote more time to planning before we start coding and set a timeline so that we don't get bottlenecked by a feature that is taking too long to implement.

Add a comment