projects
/
naja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
822f825
)
better action export
author
Neil
<neil@dip.sun.ac.za>
Mon, 12 May 2014 09:01:17 +0000
(11:01 +0200)
committer
Neil
<neil@dip.sun.ac.za>
Mon, 12 May 2014 09:01:17 +0000
(11:01 +0200)
naja/actions.py
patch
|
blob
|
history
diff --git
a/naja/actions.py
b/naja/actions.py
index 5a3e6e4b271787b5f166de37197c0d9fcad5606f..2b4d2128d4b8ecba5dd7a230524e75300305160d 100644
(file)
--- a/
naja/actions.py
+++ b/
naja/actions.py
@@
-26,7
+26,9
@@
class LocationAction(object):
return False
def export(self):
return False
def export(self):
- raise NotImplementedError("TODO")
+ return {'required_bits': list(self.required_bits),
+ 'data': self.data,
+ 'action_class': self.__class__.__name__}
class DoNothing(LocationAction):
class DoNothing(LocationAction):
@@
-35,10
+37,6
@@
class DoNothing(LocationAction):
def perform_action(self, board, location):
pass
def perform_action(self, board, location):
pass
- def export(self):
- return {'required_bits': list(self.required_bits),
- 'action_class': 'DoNothing'}
-
class LoseHealthOrMSB(LocationAction):
TEXT = "Lose health. If MSB is set, it will be cleared instead."
class LoseHealthOrMSB(LocationAction):
TEXT = "Lose health. If MSB is set, it will be cleared instead."