ParletteSoftware / bitfl

Billy in the Fat Lane
GNU General Public License v3.0
0 stars 0 forks source link

Game class #12

Closed matthew-parlette closed 11 years ago

matthew-parlette commented 11 years ago

This is a larger merge, but it lays the groundwork for performing actions in the game, which will be handled in future branches.

I'll make issues for things that need to be done, but make sure there are no glaring problems with this merge.

cparlette commented 11 years ago

I just went to test this, but it complained that numpy isn't on here, I'll have to get that package. We'll want to note that numpy is needed, or package it with the game?

matthew-parlette commented 11 years ago

Ah yes, that would be a dependency now. I'm not sure how to package at this point, so I'll put it in the readme for prerequisites.

http://www.scipy.org/Installing_SciPy

cparlette commented 11 years ago

I'm getting this traceback:

Traceback (most recent call last): File "bitfl.py", line 2, in from game import Game File "/Users/cparlette/Dropbox/python stuff/Billy in the Fat Lane/bitfl/game.py", line 6, in from turn import Turn ImportError: No module named turn

I don't think we have a turn, not sure if anything else references that module or not.

matthew-parlette commented 11 years ago

I still had turn.pyc in my directory, so it still found that when I was doing my tests. I removed it from my folder and re-tested, looks good now

cparlette commented 11 years ago

Looks good to me, great start to adding players and having a map.