annotate docs/pycon2010/pirate3.py @ 380:de2306847251

replacing temporaryfile with an object seems good
author cat@eee
date Mon, 22 Feb 2010 21:26:40 -0500
parents 89e38f922c25
children
rev   line source
337
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
1 from cmd import Cmd
351
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
2 # using hook
337
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
3
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
4 class Pirate(Cmd):
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
5 gold = 3
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
6 def do_loot(self, arg):
351
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
7 'Seize booty from a passing ship.'
337
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
8 self.gold += 1
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
9 def do_drink(self, arg):
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
10 'Drown your sorrrows in rrrum.'
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
11 self.gold -= 1
351
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
12 def precmd(self, line):
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
13 self.initial_gold = self.gold
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
14 return line
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
15 def postcmd(self, stop, line):
8a5bc9f5c28e cmd2 docs
catherine@Drou
parents: 338
diff changeset
16 if self.gold != self.initial_gold:
374
89e38f922c25 font sizes up
cat@eee
parents: 351
diff changeset
17 print('Now we gots {0} doubloons'
89e38f922c25 font sizes up
cat@eee
parents: 351
diff changeset
18 .format(self.gold))
337
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
19
2ce34ad4e520 begin Pycon talk
catherine@Drou
parents:
diff changeset
20 pirate = Pirate()
374
89e38f922c25 font sizes up
cat@eee
parents: 351
diff changeset
21 pirate.cmdloop()