351
|
1 from cmd2 import Cmd
|
|
2 # prompts and defaults
|
|
3
|
|
4 class Pirate(Cmd):
|
|
5 gold = 3
|
|
6 prompt = 'arrr> '
|
|
7 def default(self, line):
|
|
8 print('What mean ye by "{0}"?'.format(line))
|
|
9 def do_loot(self, arg):
|
|
10 'Seize booty from a passing ship.'
|
|
11 self.gold += 1
|
|
12 def do_drink(self, arg):
|
|
13 '''Drown your sorrrows in rrrum.
|
|
14
|
|
15 drink [n] - drink [n] barrel[s] o' rum.'''
|
|
16 try:
|
|
17 self.gold -= int(arg)
|
|
18 except:
|
|
19 if arg:
|
|
20 print('''What's "{0}"? I'll take rrrum.'''.format(arg))
|
|
21 self.gold -= 1
|
|
22 def precmd(self, line):
|
|
23 self.initial_gold = self.gold
|
|
24 return line
|
|
25 def postcmd(self, stop, line):
|
|
26 if self.gold != self.initial_gold:
|
374
|
27 print('Now we gots {0} doubloons'
|
|
28 .format(self.gold))
|
351
|
29 if self.gold < 0:
|
374
|
30 print("Off to debtorrr's prison.")
|
|
31 stop = True
|
351
|
32 return stop
|
|
33 def do_quit(self, arg):
|
|
34 print("Quiterrr!")
|
|
35 return True
|
|
36 default_to_shell = True
|
|
37 multilineCommands = ['sing']
|
|
38 terminators = Cmd.terminators + ['...']
|
356
|
39 songcolor = 'blue'
|
|
40 settable = Cmd.settable + 'songcolor Color to ``sing`` in (red/blue/green/cyan/magenta, bold, underline)'
|
|
41 Cmd.shortcuts.update({'~': 'sing'})
|
351
|
42 def do_sing(self, arg):
|
356
|
43 print(self.colorize(arg, self.songcolor))
|
351
|
44
|
|
45 pirate = Pirate()
|
374
|
46 pirate.cmdloop()
|