annotate gamelib/scenes/cryo.py @ 764:a8510f4e2ea1 pyntnclick

Conditionally add things based on state.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 26 Jan 2013 15:24:56 +0200
parents 386475464202
children a35f5364437d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
39
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
1 """Cryo room where the prisoner starts out."""
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
2
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
3 import random
433
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
4
549
098ea4ea0d0d Rename imports
Neil Muller <neil@dip.sun.ac.za>
parents: 540
diff changeset
5 from pyntnclick.cursor import CursorSprite
098ea4ea0d0d Rename imports
Neil Muller <neil@dip.sun.ac.za>
parents: 540
diff changeset
6 from pyntnclick.state import Scene, Item, CloneableItem, Thing, Result
764
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
7 from pyntnclick.scenewidgets import (
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
8 InteractNoImage, InteractRectUnion, InteractImage, InteractAnimated,
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
9 GenericDescThing, TakeableThing)
525
821b322e903b Separate "scene widgets" from "game-specific widgets".
Jeremy Thurgood <firxen@gmail.com>
parents: 519
diff changeset
10
212
2b820b4ba3bf Add constant for player id. Make IDs uppercase
Neil Muller <neil@dip.sun.ac.za>
parents: 210
diff changeset
11 from gamelib.scenes.game_constants import PLAYER_ID
525
821b322e903b Separate "scene widgets" from "game-specific widgets".
Jeremy Thurgood <firxen@gmail.com>
parents: 519
diff changeset
12 from gamelib.scenes.game_widgets import Door, make_jim_dialog
39
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
13
28
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
14
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
15 class Cryo(Scene):
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
16
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
17 FOLDER = "cryo"
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
18 BACKGROUND = "cryo_room.png"
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
19
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
20 INITIAL_DATA = {
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
21 'greet': True,
375
c80a1bd291d1 Only give vandalism warning once
Stefano Rivera <stefano@rivera.za.net>
parents: 368
diff changeset
22 'vandalism_warn': True,
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
23 }
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
24
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
25 # sounds that will be played randomly as background noise
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
26 MUSIC = [
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
27 'drip1.ogg',
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
28 'drip2.ogg',
209
aeb96ca5f76c Add more sounds to cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 202
diff changeset
29 'drip3.ogg',
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
30 'creaking.ogg',
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
31 'silent.ogg',
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
32 'silent.ogg',
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
33 ]
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
34
592
4e9178215e75 Introduce .setup() for GameDeveloperGizmos.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 566
diff changeset
35 def setup(self):
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
36 self.add_item(TitaniumLeg("titanium_leg"))
86
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
37 self.add_thing(CryoUnitAlpha())
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
38 self.add_thing(CryoRoomDoor())
89
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
39 self.add_thing(CryoComputer())
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
40 self.add_thing(CryoPipeLeft())
348
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
41 self.add_thing(CryoPipeRightTop())
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
42 self.add_thing(CryoPipeRightBottom())
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
43 self.add_thing(CryoPools())
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
44
183
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
45 # Flavour items
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
46 # pipes
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
47 self.add_thing(GenericDescThing('cryo.pipes', 1,
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
48 "These pipes carry cooling fluid to the cryo units.",
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
49 (
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
50 (552, 145, 129, 66),
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
51 (636, 82, 165, 60),
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
52 (140, 135, 112, 73),
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
53 (11, 63, 140, 67),
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
54 )))
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
55 self.add_thing(UncuttableCryoPipes())
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
56
183
829551aad0f1 Add some flavour descriptions
Neil Muller <neil@dip.sun.ac.za>
parents: 182
diff changeset
57 # cryo units
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
58 self.add_thing(GenericCryoUnit(2,
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
59 "An empty cryo chamber.",
212
2b820b4ba3bf Add constant for player id. Make IDs uppercase
Neil Muller <neil@dip.sun.ac.za>
parents: 210
diff changeset
60 "Prisoner 81E4-C8900480E635. Embezzlement. 20 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
61 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
62 (155, 430, 50, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
63 (125, 450, 60, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
64 (95, 470, 60, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
65 (55, 490, 60, 55),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
66 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
67
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
68 self.add_thing(GenericCryoUnit(3,
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
69 "A working cryo chamber. The frosted glass obscures the details"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
70 " of the occupant.",
212
2b820b4ba3bf Add constant for player id. Make IDs uppercase
Neil Muller <neil@dip.sun.ac.za>
parents: 210
diff changeset
71 "Prisoner 9334-CE1EB0243BAB. Murder. 40 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
72 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
73 (215, 430, 50, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
74 (205, 450, 50, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
75 (185, 470, 50, 35),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
76 (125, 505, 80, 40),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
77 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
78
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
79 self.add_thing(GenericCryoUnit(4,
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
80 "A broken cryo chamber. The skeleton inside has been picked"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
81 " clean.",
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
82 "Prisoner BFBC-8BF4C6B7492B. Importing illegal alien biomatter."
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
83 " 15 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
84 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
85 (275, 430, 50, 70),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
86 (255, 460, 50, 70),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
87 (235, 490, 50, 60),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
88 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
89
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
90 self.add_thing(GenericCryoUnit(5,
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
91 "A working cryo chamber. The frosted glass obscures the details of"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
92 " the occupant.",
368
a95bfba3acd5 speling
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 363
diff changeset
93 "Prisoner B520-99495B8C41CE. Copyright infringement. 60 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
94 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
95 (340, 430, 50, 70),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
96 (330, 500, 60, 50),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
97 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
98
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
99 self.add_thing(GenericCryoUnit(6,
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
100 "An empty cryo unit. Recently filled by you.",
435
19aff54b2e73 Many small fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 433
diff changeset
101 "Prisoner %s. Safecracking, grand larceny. 30 years." % PLAYER_ID,
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
102 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
103 (399, 426, 70, 56),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
104 (404, 455, 69, 120),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
105 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
106
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
107 self.add_thing(GenericCryoUnit(7,
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
108 "An empty cryo unit.",
463
8d25de1519db Full stop.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 462
diff changeset
109 "Prisoner 83F1-CE32D3234749. Spamming. 5 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
110 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
111 (472, 432, 58, 51),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
112 (488, 455, 41, 134),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
113 (517, 487, 42, 93),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
114 )))
213
20998c650ce1 Fixed rect_drawer tool and adjusted JIM message background.
Jeremy Thurgood <firxen@gmail.com>
parents: 212
diff changeset
115
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
116 self.add_thing(GenericCryoUnit(8,
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
117 "An empty cryo unit.",
224
8d8aef45db4e fixed some typos
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 219
diff changeset
118 "Prisoner A455-9DF9F43C43E5. Medical malpractice. 10 years.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
119 (
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
120 (596, 419, 69, 39),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
121 (616, 442, 82, 40),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
122 (648, 467, 84, 37),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
123 (681, 491, 97, 60),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
124 )))
35
ebc76bc0c067 First item!
Simon Cross <hodgestar+bzr@gmail.com>
parents: 28
diff changeset
125
120
48d24a48d0ce Enter and leave hooks
Neil Muller <neil@dip.sun.ac.za>
parents: 119
diff changeset
126 def enter(self):
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
127 # Setup music
629
660ef5793886 Remove albow from sound
Neil Muller <neil@dip.sun.ac.za>
parents: 623
diff changeset
128 pieces = [self.sound.get_music(x) for x in self.MUSIC]
566
ea9dd2b9186a Hook up sound in gamelib/scenes.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 549
diff changeset
129 background_playlist = self.sound.get_playlist(pieces, random=True,
ea9dd2b9186a Hook up sound in gamelib/scenes.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 549
diff changeset
130 repeat=True)
ea9dd2b9186a Hook up sound in gamelib/scenes.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 549
diff changeset
131 self.sound.change_playlist(background_playlist)
120
48d24a48d0ce Enter and leave hooks
Neil Muller <neil@dip.sun.ac.za>
parents: 119
diff changeset
132 if self.get_data('greet'):
48d24a48d0ce Enter and leave hooks
Neil Muller <neil@dip.sun.ac.za>
parents: 119
diff changeset
133 self.set_data('greet', False)
360
452230d78541 Use make_jim_dialog everywhere
Neil Muller <neil@dip.sun.ac.za>
parents: 353
diff changeset
134 return make_jim_dialog(
376
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
135 "Greetings, Prisoner %s. I am the Judicial "
360
452230d78541 Use make_jim_dialog everywhere
Neil Muller <neil@dip.sun.ac.za>
parents: 353
diff changeset
136 "Incarceration Monitor. "
202
6c84eb5ff80a Tweak intro text
Neil Muller <neil@dip.sun.ac.za>
parents: 189
diff changeset
137 "You have been woken early under the terms of the "
376
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
138 "emergency conscription act to assist with repairs to "
202
6c84eb5ff80a Tweak intro text
Neil Muller <neil@dip.sun.ac.za>
parents: 189
diff changeset
139 "the ship. Your behaviour during this time will "
376
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
140 "be noted on your record and will be relayed to "
202
6c84eb5ff80a Tweak intro text
Neil Muller <neil@dip.sun.ac.za>
parents: 189
diff changeset
141 "prison officials when we reach the destination. "
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
142 "Please report to the bridge." % PLAYER_ID, self.game)
35
ebc76bc0c067 First item!
Simon Cross <hodgestar+bzr@gmail.com>
parents: 28
diff changeset
143
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
144 def leave(self):
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
145 # Stop music
566
ea9dd2b9186a Hook up sound in gamelib/scenes.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 549
diff changeset
146 self.sound.change_playlist(None)
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
147
35
ebc76bc0c067 First item!
Simon Cross <hodgestar+bzr@gmail.com>
parents: 28
diff changeset
148
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
149 class CryoPipeBase(Thing):
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
150 "Base class for cryo pipes that need to be stolen."
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
151
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
152 INITIAL = "fixed"
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
153
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
154 INITIAL_DATA = {
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
155 'fixed': True,
375
c80a1bd291d1 Only give vandalism warning once
Stefano Rivera <stefano@rivera.za.net>
parents: 368
diff changeset
156 }
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
157
759
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
158 def select_interact(self):
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
159 if not self.get_data('fixed'):
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
160 return 'chopped'
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
161 return self.INITIAL
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
162
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
163 def interact_with_machete(self, item):
247
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
164 if self.get_data('fixed'):
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
165 self.set_data('fixed', False)
329
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
166 pipe = TubeFragment('tube_fragment')
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
167 self.game.add_item(pipe)
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
168 self.game.add_inventory_item(pipe.name)
759
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
169 self.set_interact()
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
170 responses = [Result("It takes more effort than one would expect,"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
171 " but eventually the pipe is separated from the wall.",
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
172 soundfile="chop-chop.ogg")]
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
173 if self.game.current_scene.get_data('vandalism_warn'):
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
174 self.game.current_scene.set_data('vandalism_warn', False)
375
c80a1bd291d1 Only give vandalism warning once
Stefano Rivera <stefano@rivera.za.net>
parents: 368
diff changeset
175 responses.append(make_jim_dialog(
c80a1bd291d1 Only give vandalism warning once
Stefano Rivera <stefano@rivera.za.net>
parents: 368
diff changeset
176 ("Prisoner %s. Vandalism is an offence punishable by a "
422
785bceda2f4f Full stops.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 376
diff changeset
177 "minimum of an additional 6 months to your sentence."
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
178 ) % PLAYER_ID, self.game))
375
c80a1bd291d1 Only give vandalism warning once
Stefano Rivera <stefano@rivera.za.net>
parents: 368
diff changeset
179 return responses
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
180
519
8f3c82c685a4 Fix is_interactive() by adding tool param.
Jeremy Thurgood <firxen@gmail.com>
parents: 518
diff changeset
181 def is_interactive(self, tool=None):
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
182 return self.get_data('fixed')
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
183
247
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
184 def interact_without(self):
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
185 if self.get_data('fixed'):
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
186 return Result("These pipes aren't attached to the wall very"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
187 " solidly.")
247
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
188 return None
0bad554d0926 More tests, some cryo room fixes and docs in the build.
Jeremy Thurgood <firxen@gmail.com>
parents: 242
diff changeset
189
228
ce1e85768f7b Flavour interactions for mess hall
Neil Muller <neil@dip.sun.ac.za>
parents: 227
diff changeset
190 def get_description(self):
ce1e85768f7b Flavour interactions for mess hall
Neil Muller <neil@dip.sun.ac.za>
parents: 227
diff changeset
191 if self.get_data('fixed'):
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
192 return "These pipes carry cooling fluid to empty cryo units."
422
785bceda2f4f Full stops.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 376
diff changeset
193 return "There used to be a pipe carrying cooling fluid here."
228
ce1e85768f7b Flavour interactions for mess hall
Neil Muller <neil@dip.sun.ac.za>
parents: 227
diff changeset
194
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
195
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
196 class UncuttableCryoPipes(Thing):
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
197 "Base class for cryo pipes that can't be cut down."
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
198
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
199 NAME = "cryo.pipes.2"
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
200
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
201 INTERACTS = {
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
202 "fixed": InteractRectUnion((
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
203 (2, 130, 44, 394),
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
204 (756, 127, 52, 393),))
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
205 }
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
206
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
207 INITIAL = "fixed"
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
208
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
209 def interact_with_machete(self, item):
368
a95bfba3acd5 speling
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 363
diff changeset
210 return Result("These pipes carry fluid to the working cryo units."
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
211 " Chopping them down doesn't seem sensible.")
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
212
519
8f3c82c685a4 Fix is_interactive() by adding tool param.
Jeremy Thurgood <firxen@gmail.com>
parents: 518
diff changeset
213 def is_interactive(self, tool=None):
328
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
214 return True
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
215
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
216 def interact_without(self):
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
217 return Result("These pipes aren't attached to the wall very solidly.")
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
218
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
219 def get_description(self):
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
220 return "These pipes carry cooling fluid to the working cryo units."
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
221
3cb48621759a Add uncuttable cryo pipe interact
Neil Muller <neil@dip.sun.ac.za>
parents: 307
diff changeset
222
329
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
223 class TubeFragment(CloneableItem):
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
224 "Obtained after cutting down a cryo room pipe."
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
225
329
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
226 INVENTORY_IMAGE = "tube_fragment.png"
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
227 CURSOR = CursorSprite('tube_fragment_cursor.png')
0bb1ab329bee Link up laser welder
Simon Cross <hodgestar+bzr@gmail.com>
parents: 328
diff changeset
228 TOOL_NAME = "tube_fragment"
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
229
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
230
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
231 class CryoPipeLeft(CryoPipeBase):
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
232 "Left cryo pipe."
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
233
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
234 NAME = "cryo.pipe.left"
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
235 INTERACTS = {
271
e3a2d73e94f4 Hook up intact pipes
Neil Muller <neil@dip.sun.ac.za>
parents: 270
diff changeset
236 "fixed": InteractImage(117, 226, "intact_cryo_pipe_left.png"),
e3a2d73e94f4 Hook up intact pipes
Neil Muller <neil@dip.sun.ac.za>
parents: 270
diff changeset
237 "chopped": InteractNoImage(125, 192, 27, 258),
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
238 }
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
239
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
240
348
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
241 class CryoPipeRightTop(CryoPipeBase):
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
242 "Right cryo pipe, top."
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
243
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
244 NAME = "cryo.pipe.right.top"
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
245 INTERACTS = {
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
246 "fixed": InteractImage(645, 212, "intact_cryo_pipe_right_top.png"),
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
247 "chopped": InteractNoImage(643, 199, 31, 111),
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
248 }
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
249
348
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
250
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
251 class CryoPipeRightBottom(CryoPipeBase):
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
252 "Right cryo pipe, bottom."
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
253
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
254 NAME = "cryo.pipe.right.bottom"
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
255 INTERACTS = {
348
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
256 "fixed": InteractImage(644, 333, "intact_cryo_pipe_right_bottom.png"),
c193cbff785d The environment / pipe puzzle is now solveable
Stefano Rivera <stefano@rivera.za.net>
parents: 329
diff changeset
257 "chopped": InteractNoImage(644, 333, 31, 107),
219
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
258 }
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
259
326300c218a6 Choppable cryopipes and can refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 218
diff changeset
260
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
261 class TitaniumLeg(Item):
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
262 "Titanium leg, found on a piratical corpse."
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
263
91
542ede2896bb Link in femur inventory image.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 89
diff changeset
264 INVENTORY_IMAGE = "titanium_femur.png"
307
5031b84fbb4c Hook up new machete, can_opener, and titanium_femur images
Stefano Rivera <stefano@rivera.za.net>
parents: 302
diff changeset
265 CURSOR = CursorSprite('titanium_femur_cursor.png', 13, 5)
28
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
266
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
267
39
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
268 class CryoUnitAlpha(Thing):
67
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
269 "Cryo unit containing titanium leg."
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
270
86
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
271 NAME = "cryo.unit.1"
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
272
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
273 INTERACTS = {
133
0530547a131f Better map handling, detail_view stuff in Result.
Jeremy Thurgood <firxen@gmail.com>
parents: 131
diff changeset
274 "unit": InteractRectUnion((
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
275 (531, 430, 64, 49),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
276 (560, 460, 57, 47),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
277 (583, 482, 65, 69),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
278 (600, 508, 71, 48),
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
279 ))
86
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
280 }
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
281
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
282 INITIAL = "unit"
67
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
283
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
284 INITIAL_DATA = {
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
285 'contains_titanium_leg': True,
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
286 }
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
287
6b0f7364f3bf Inventory-related game state.
Jeremy Thurgood <firxen@gmail.com>
parents: 63
diff changeset
288 def interact_without(self):
134
faac82748f5a Put the leg inside the cryo unit.
Jeremy Thurgood <firxen@gmail.com>
parents: 133
diff changeset
289 return Result(detail_view='cryo_detail')
39
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
290
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
291 def interact_with_titanium_leg(self, item):
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
292 return Result("You hit the chamber that used to hold this very leg."
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
293 " Nothing happens as a result.",
209
aeb96ca5f76c Add more sounds to cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 202
diff changeset
294 soundfile="clang2.ogg")
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
295
94
ce23fad8ecb3 More complex shaped interactables
Neil Muller <neil@dip.sun.ac.za>
parents: 91
diff changeset
296 def get_description(self):
ce23fad8ecb3 More complex shaped interactables
Neil Muller <neil@dip.sun.ac.za>
parents: 91
diff changeset
297 if self.get_data('contains_titanium_leg'):
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
298 return "A broken cryo chamber, with a poor unfortunate corpse" \
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
299 " inside."
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
300 return "A broken cryo chamber. The corpse inside is missing a leg."
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
301
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
302
182
5cb3fbe61f75 Add genric thing with description helper class
Neil Muller <neil@dip.sun.ac.za>
parents: 180
diff changeset
303 class GenericCryoUnit(GenericDescThing):
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
304 "Generic Cryo unit"
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
305
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
306 def __init__(self, number, description, detailed_description, areas):
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
307 super(GenericCryoUnit, self).__init__('cryo.unit', number,
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
308 description, areas)
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
309 self.detailed_description = detailed_description
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
310
519
8f3c82c685a4 Fix is_interactive() by adding tool param.
Jeremy Thurgood <firxen@gmail.com>
parents: 518
diff changeset
311 def is_interactive(self, tool=None):
270
d4f08abc58fb Interactivity status tweaks
Neil Muller <neil@dip.sun.ac.za>
parents: 263
diff changeset
312 return True
d4f08abc58fb Interactivity status tweaks
Neil Muller <neil@dip.sun.ac.za>
parents: 263
diff changeset
313
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
314 def interact_without(self):
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
315 return Result(self.detailed_description)
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
316
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
317 def get_description(self):
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
318 return self.description
94
ce23fad8ecb3 More complex shaped interactables
Neil Muller <neil@dip.sun.ac.za>
parents: 91
diff changeset
319
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
320 def interact_with_titanium_leg(self, item):
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
321 return Result(random.choice([
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
322 "You bang on the chamber with the titanium femur. Nothing"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
323 " much happens.",
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
324 "Hitting the cryo unit with the femur doesn't achieve"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
325 " anything.",
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
326 "You hit the chamber with the femur. Nothing happens.",
209
aeb96ca5f76c Add more sounds to cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 202
diff changeset
327 ]), soundfile="clang2.ogg")
180
6b3ccee6f3f9 Fill in more flavour for cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 167
diff changeset
328
39
088a101f5b94 Add an example Thing to cryo scene.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 35
diff changeset
329
242
12c4f87ea424 Unify doors a bit
Neil Muller <neil@dip.sun.ac.za>
parents: 232
diff changeset
330 class CryoRoomDoor(Door):
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
331 "Door to the cryo room."
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
332
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents: 247
diff changeset
333 SCENE = "cryo"
86
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
334
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
335 INTERACTS = {
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
336 "shut": InteractNoImage(290, 260, 99, 152),
87
4c6fea1b242b Fix interact positions.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 86
diff changeset
337 "ajar": InteractImage(290, 260, "door_ajar.png"),
4c6fea1b242b Fix interact positions.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 86
diff changeset
338 "open": InteractImage(290, 260, "door_open.png"),
86
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
339 }
593bddfacf18 Refactor Things a bit to render images.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 78
diff changeset
340
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
341 INITIAL = "shut"
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
342
55
2e2f6ff54780 Part of the cryo door puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 41
diff changeset
343 INITIAL_DATA = {
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
344 'door': "shut",
55
2e2f6ff54780 Part of the cryo door puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 41
diff changeset
345 }
2e2f6ff54780 Part of the cryo door puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 41
diff changeset
346
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
347 def interact_with_titanium_leg(self, item):
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
348 if self.get_data('door') == "ajar":
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
349 self.open_door()
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
350 return Result("You wedge the titanium femur into the chain and"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
351 " twist. With a satisfying *snap*, the chain breaks and"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
352 " the door opens.", soundfile='break.ogg')
118
e548f4a13741 Add a transition, on general principles
Neil Muller <neil@dip.sun.ac.za>
parents: 109
diff changeset
353 elif self.get_data('door') == "shut":
653
6aea811b1bee Fix text constant broken (literally) by PEP-8 clean-up.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 629
diff changeset
354 text = ("You bang on the door with the titanium femur. It makes a"
6aea811b1bee Fix text constant broken (literally) by PEP-8 clean-up.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 629
diff changeset
355 " clanging sound.")
141
4f18e68fd0dc Add a few sounds to the cryo room
Neil Muller <neil@dip.sun.ac.za>
parents: 136
diff changeset
356 return Result(text, soundfile='clang.ogg')
118
e548f4a13741 Add a transition, on general principles
Neil Muller <neil@dip.sun.ac.za>
parents: 109
diff changeset
357 else:
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
358 return Result("You wave the femur in the doorway. Nothing"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
359 " happens.")
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
360
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
361 def interact_without(self):
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
362 if self.get_data('door') == "shut":
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
363 self.half_open_door()
118
e548f4a13741 Add a transition, on general principles
Neil Muller <neil@dip.sun.ac.za>
parents: 109
diff changeset
364 if self.get_data('door') != "open":
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
365 return Result("It moves slightly and then stops. A chain on the"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
366 " other side is preventing it from opening completely.",
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
367 soundfile='chain.ogg')
118
e548f4a13741 Add a transition, on general principles
Neil Muller <neil@dip.sun.ac.za>
parents: 109
diff changeset
368 else:
692
d6ded808cc33 Much scene management refactoring.
Jeremy Thurgood <firxen@gmail.com>
parents: 653
diff changeset
369 self.game.change_scene('map')
144
29ba5456e8b3 Removed a bunch of cruft.
Jeremy Thurgood <firxen@gmail.com>
parents: 141
diff changeset
370 return None
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
371
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
372 def interact_default(self, item):
435
19aff54b2e73 Many small fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 433
diff changeset
373 return self.interact_without()
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
374
759
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
375 def select_interact(self):
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
376 return self.get_data('door') or self.INITIAL
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
377
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
378 def half_open_door(self):
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
379 self.set_data('door', "ajar")
759
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
380 self.set_interact()
56
75bf3d3689e9 Refactor thing interactivity and add "fake" bridge scene.
Jeremy Thurgood <firxen@gmail.com>
parents: 55
diff changeset
381
55
2e2f6ff54780 Part of the cryo door puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 41
diff changeset
382 def open_door(self):
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
383 self.set_data('door', "open")
759
386475464202 Inspect game state for Thing.set_interact() instead of setting it manually everywhere.
Jeremy Thurgood <firxen@gmail.com>
parents: 745
diff changeset
384 self.set_interact()
55
2e2f6ff54780 Part of the cryo door puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 41
diff changeset
385
63
3087be3463e0 Some framework support for better message handling
Neil Muller <neil@dip.sun.ac.za>
parents: 56
diff changeset
386 def get_description(self):
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
387 if self.get_data('door') == "open":
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
388 return 'An open doorway leads to the rest of the ship.'
103
0f799b6f40bc Fix ajar door description
Neil Muller <neil@dip.sun.ac.za>
parents: 95
diff changeset
389 elif self.get_data('door') == "ajar":
376
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
390 return ("A rusty door. It can't open all the way because of a "
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
391 "chain on the other side.")
95
7590586180f5 door goes from shut to ajar to open
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 94
diff changeset
392 return 'A rusty door. It is currently closed.'
63
3087be3463e0 Some framework support for better message handling
Neil Muller <neil@dip.sun.ac.za>
parents: 56
diff changeset
393
41
ad6f56bfa8b7 Cryo door, titanium leg and some interaction prototypes.
Jeremy Thurgood <firxen@gmail.com>
parents: 39
diff changeset
394
89
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
395 class CryoComputer(Thing):
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
396 "Computer in the cryo room."
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
397
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
398 NAME = "cryo.computer"
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
399
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
400 INTERACTS = {
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
401 "info": InteractAnimated(416, 290, ["comp_info.png", "comp_info2.png"],
105
65976205fc2d Rough Stab at basic animation support
Neil Muller <neil@dip.sun.ac.za>
parents: 103
diff changeset
402 10),
89
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
403 "warn": InteractImage(416, 290, "comp_warn.png"),
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
404 "error": InteractImage(416, 290, "comp_error.png"),
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
405 }
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
406
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
407 INITIAL = "info"
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
408
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
409 def interact_without(self):
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
410 return Result(detail_view='cryo_comp_detail')
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
411
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
412 def interact_with_titanium_leg(self, item):
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
413 return Result("Hitting it with the leg accomplishes nothing.")
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
414
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
415 def get_description(self):
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
416 return "A computer terminal, with some text on it."
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
417
89
4625efe69c37 Hook up cryo computer.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 87
diff changeset
418
764
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
419 class TitaniumLegThing(TakeableThing):
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
420 "Triangle in the cryo room."
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
421
125
d3ca34a664fd Some detail view and data cleanup.
Jeremy Thurgood <firxen@gmail.com>
parents: 120
diff changeset
422 NAME = "cryo.titanium_leg"
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
423
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
424 INTERACTS = {
232
ca490aecbe0e Updated cryo unit to use new stuff. No more triangles! (Except for the ones that are still there.)
Jeremy Thurgood <firxen@gmail.com>
parents: 228
diff changeset
425 "leg": InteractImage(180, 132, "leg.png"),
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
426 }
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
427
134
faac82748f5a Put the leg inside the cryo unit.
Jeremy Thurgood <firxen@gmail.com>
parents: 133
diff changeset
428 INITIAL = "leg"
764
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
429 ITEM = 'titanium_leg'
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
430
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
431 def interact_without(self):
745
b9504e6ecde1 Make a couple of interactions less dependent on current_scene, so the 'mad clicker' test works
Neil Muller <neil@dip.sun.ac.za>
parents: 692
diff changeset
432 self.game.scenes['cryo'].things['cryo.unit.1'].set_data(
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
433 'contains_titanium_leg', False)
764
a8510f4e2ea1 Conditionally add things based on state.
Jeremy Thurgood <firxen@gmail.com>
parents: 759
diff changeset
434 self.take()
540
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
435 return Result("The skeletal occupant of this cryo unit has an"
e0d2ec1d9720 pep8cleanups
Neil Muller <neil@dip.sun.ac.za>
parents: 528
diff changeset
436 " artificial femur made of titanium. You take it.")
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
437
136
d264850806dc Better description handling in detail windows. (Sort of.)
Jeremy Thurgood <firxen@gmail.com>
parents: 135
diff changeset
438 def get_description(self):
d264850806dc Better description handling in detail windows. (Sort of.)
Jeremy Thurgood <firxen@gmail.com>
parents: 135
diff changeset
439 return "This femur looks synthetic."
d264850806dc Better description handling in detail windows. (Sort of.)
Jeremy Thurgood <firxen@gmail.com>
parents: 135
diff changeset
440
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
441
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
442 class PlaqueThing(Thing):
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
443 "Plaque on the detailed cryo chamber"
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
444
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
445 NAME = "cryo.plaque"
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
446
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
447 INTERACTS = {
232
ca490aecbe0e Updated cryo unit to use new stuff. No more triangles! (Except for the ones that are still there.)
Jeremy Thurgood <firxen@gmail.com>
parents: 228
diff changeset
448 "plaque": InteractNoImage(60, 40, 35, 24),
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
449 }
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
450
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
451 INITIAL = "plaque"
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
452
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
453 def interact_without(self):
422
785bceda2f4f Full stops.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 376
diff changeset
454 return Result("The plaque is welded to the unit. You can't shift it.")
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
455
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
456 def get_description(self):
376
41ee3fc71404 Tweaks to text and JIM background.
Jeremy Thurgood <firxen@gmail.com>
parents: 375
diff changeset
457 return "'Prisoner 98CC-764E646391EE. War crimes. 45 years."
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
458
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
459
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
460 class FullBottle(Item):
363
2cadb47405a4 Use bottle image. The boomslang is now triangle-free
Stefano Rivera <stefano@rivera.za.net>
parents: 362
diff changeset
461 INVENTORY_IMAGE = 'bottle_full.png'
2cadb47405a4 Use bottle image. The boomslang is now triangle-free
Stefano Rivera <stefano@rivera.za.net>
parents: 362
diff changeset
462 CURSOR = CursorSprite('bottle_full_cursor.png', 27, 7)
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
463
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
464
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
465 class CryoPools(Thing):
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
466 "Handy for cooling engines"
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
467
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
468 NAME = 'cryo.pool'
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
469
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
470 INTERACTS = {
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
471 'pools': InteractRectUnion((
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
472 (444, 216, 125, 67),
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
473 (44, 133, 74, 107),
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
474 (485, 396, 97, 34),
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
475 )),
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
476 }
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
477
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
478 INITIAL = 'pools'
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
479
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
480 def get_description(self):
422
785bceda2f4f Full stops.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 376
diff changeset
481 return "Coolant leaks disturbingly from the bulkheads."
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
482
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
483 def interact_without(self):
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
484 return Result("It's gooey")
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
485
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
486 def interact_with_detergent_bottle(self, item):
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
487 full = FullBottle('full_detergent_bottle')
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
488 self.game.add_item(full)
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
489 self.game.replace_inventory_item(item.name, full.name)
422
785bceda2f4f Full stops.
Adrianna Pińska <adrianna.pinska@gmail.com>
parents: 376
diff changeset
490 return Result("You scoop up some coolant and fill the bottle.")
353
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
491
b61dccc7fb42 Detergent + cryo fluid puzzle (currently triangular)
Stefano Rivera <stefano@rivera.za.net>
parents: 348
diff changeset
492
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
493 class CryoCompDetail(Scene):
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
494
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
495 FOLDER = "cryo"
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
496 BACKGROUND = "comp_info_detail.png"
433
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
497 BACKGROUND_FIXED = "comp_info_detail_fixed.png"
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
498 NAME = "cryo_comp_detail"
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
499
597
c0e0b3d5730c Fix cryocomp.
Jeremy Thurgood <firxen@gmail.com>
parents: 595
diff changeset
500 def setup(self):
595
59f1ee3f5632 Remove albow.resources in a few more places.
Jeremy Thurgood <firxen@gmail.com>
parents: 592
diff changeset
501 self._background_fixed = self.get_image(
623
cab77cf07822 Undo fix get_image calls
Stefano Rivera <stefano@rivera.za.net>
parents: 621
diff changeset
502 self.FOLDER, self.BACKGROUND_FIXED)
433
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
503
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
504 def draw_background(self, surface):
603
3ce19d33b51f Rename state to game to not cause confusion with the other state
Neil Muller <neil@dip.sun.ac.za>
parents: 597
diff changeset
505 if self.game.scenes['engine'].get_data('engine online'):
433
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
506 surface.blit(self._background_fixed, self.OFFSET, None)
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
507 else:
6b7b08d67233 Hook up fixed ETA screen
Neil Muller <neil@dip.sun.ac.za>
parents: 422
diff changeset
508 surface.blit(self._background, self.OFFSET, None)
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
509
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
510
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
511 class CryoUnitWithCorpse(Scene):
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
512
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
513 FOLDER = "cryo"
127
9646e7c8bb97 Size detail window based on the Scene background image.
Jeremy Thurgood <firxen@gmail.com>
parents: 125
diff changeset
514 BACKGROUND = "cryo_unit_detail.png"
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
515 NAME = "cryo_detail"
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
516
592
4e9178215e75 Introduce .setup() for GameDeveloperGizmos.
Simon Cross <hodgestar+bzr@gmail.com>
parents: 566
diff changeset
517 def setup(self):
125
d3ca34a664fd Some detail view and data cleanup.
Jeremy Thurgood <firxen@gmail.com>
parents: 120
diff changeset
518 self.add_thing(TitaniumLegThing())
157
153dcb313057 Fill in more cryo room stuff
Neil Muller <neil@dip.sun.ac.za>
parents: 148
diff changeset
519 self.add_thing(PlaqueThing())
119
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
520
d5f7cccfdb6c Hook up "detail view" scenes.
Jeremy Thurgood <firxen@gmail.com>
parents: 118
diff changeset
521
28
0f25f7b9b37a Add loading of initial state.
Simon Cross <hodgestar+bzr@gmail.com>
parents:
diff changeset
522 SCENES = [Cryo]
189
c18ef647ffe6 Add detail view for cryo screen. Tweak animation
Neil Muller <neil@dip.sun.ac.za>
parents: 183
diff changeset
523 DETAIL_VIEWS = [CryoUnitWithCorpse, CryoCompDetail]