forked from kazzmir/paintown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripting.txt
200 lines (150 loc) · 5.5 KB
/
scripting.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
Scripting in paintown:
* Preliminary
First be sure that paintown was compiled with python support. Windows and OSX are
prebuilt with this support. On OSX I built paintown with python 2.3.
On Linux cmake and scons will try to detect if you can build with python. In scons
look for lines like:
Checking if python is embeddable... yes
If it says '... no' then you do not have the proper python headers installed. Check
config.log and search for Python to see what went wrong. Most likely you just need to
install the python headers which are python-dev on ubuntu.
* Setup
Scripts can be applied to single levels at a time. You cannot have script objects live
for the entirety of a game. To add a script to a level add an expression to a level
file like so
(script python "levels/test/1.py")
`python' signifies the script engine to use and "levels/test/1.py" is the python script
that should be loaded for this level. In the future other scripting engines might exist
which is why you must specify `python'.
When the level is first loaded it will also load the script file, levels/test/1.py in
this case. Your script must register itself in the following way
import paintown
class MyEngine(paintown.Engine):
def __init__(self):
pass
paintown.register(MyEngine())
The `paintown' module provides classes that represent various objects in the paintown
engine. You can extend these classes with whatever functionality you desire.
* API
The api lists all the classes that the `paintown' module provides. Each class
is broken up into overridable and non-overridable methods. You should not
override the non-overridable methods or the game will probably crash.
class Engine
# Represents the paintown engine. Use this class for creating other objects
# and querying global parameters
# Non-overridable methods
def levelLength(self)
# returns : integer
# Returns the length of the level
def findObject(self, id)
# id : integer
# returns : None or Object-subclass
# Searches for an existing object with the given id and returns its python
# class that it was created with.
def addCharacter(self, path, name, map, health, x, z)
# path : string
# name : string
# map : integer
# health : integer
# x : integer
# z : integer
# returns a new Character
# Creates a new character and adds him to the current block in the game
def cacheCharacter(self, path)
# path : string
# returns : none
# Ensures that a certain character is cached in the game
def getEnemies(self)
# returns : list
# Get all the alive enemies
def getPlayers(self)
# returns : list
# Get all the players
def getObjects(self)
# returns : list
# Get all the objects in the current block
# Overridable methods
def createWorld(self, world)
# world : PyCObject
# returns : nothing
# This method is called when the level is loaded. If you override this method
# you must call Engine.createWorld(world) because the world parameter is
# used to talk to the C engine
def createCharacter(self, character)
# character : PyCObject
# returns : Character or subclass of Character
# Returns a new python object that represents a character in the game. The
# default return value is Character(character). You can override this method
# if you want to subclass the Character functionality but you must return
# a subclass of Character (as opposed to Object).
class Object
# Represents an object in the paintown engine (not necessarily characters, also items)
# Non-overridable methods
def getId(self)
# returns : integer
# Returns the id of the object
def getX(self)
# returns : float
# Return the X coordinate of the object
def getY(self)
# returns : float
# Return the Y coordinate of the object
def getZ(self)
# returns : float
# Return the Z coordinate of the object
def setX(self, value)
# value : float
# returns : none
# Set the X coordinate of the object
def setY(self, value)
# value : float
# returns : none
# Set the Y coordinate of the object
def setZ(self, value)
# value : float
# returns : none
# Set the Z coordinate of the object
def getHealth(self)
# returns : integer
# Returns the health of the object
def setHealth(self, health)
# health : integer
# Sets the health of the object
# Overridable methods
def didCollide(self, him)
# him : None or a Object
# returns : none
# Called when this object was hit by another object (him)
def takeDamage(self, him, damage)
# him : None or a Object
# damage : float
# returns : none
# Called when this object takes damage from him
class Character(Object)
# Represents a character in the engine
# Non-overridable methods
def isPlayer(self)
# returns : boolean
# True if this is a player or not
# Overridable methods
def didAttack(self, him)
# him : None or a Character
# returns : none
# Called when this character attacked another character
class Player(Character):
# Represents a player
# Non-overridable methods
def getScore(self)
# returns : integer
# Score for the player
def increaseScore(self, amount)
# amount : integer
# returns : none
# Increases the score for a player
def setScore(self, score)
# score : integer
# returns : none
# Sets the score for a player
# Overridable methods
* Notes
The paintown engine is likely to crash if anything goes wrong in your script.