Spaces:
Running
Running
File size: 20,456 Bytes
87b3b3a |
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
Game.prototype.reference = {
'canvas.beginPath': {
'name': 'canvasContext.beginPath()',
'category': 'canvas',
'type': 'method',
'description': 'Begins drawing a new shape.'
},
'canvas.lineTo': {
'name': 'canvasContext.lineTo(x, y)',
'category': 'canvas',
'type': 'method',
'description': 'Sets the end coordinates of a line.'
},
'canvas.lineWidth': {
'name': 'canvasContext.lineWidth',
'category': 'canvas',
'type': 'property',
'description': 'Determines the width of the next lines drawn.'
},
'canvas.moveTo': {
'name': 'canvasContext.moveTo(x, y)',
'category': 'canvas',
'type': 'method',
'description': 'Sets the start coordinates of a line.'
},
'canvas.stroke': {
'name': 'canvasContext.stroke()',
'category': 'canvas',
'type': 'method',
'description': 'Draws a line whose coordinates have been defined by <b>lineTo</b> and <b>moveTo</b>.'
},
'canvas.strokeStyle': {
'name': 'canvasContext.strokeStyle',
'category': 'canvas',
'type': 'property',
'description': 'Determines the color (and, optionally, other properties) of the next lines drawn.'
},
'canvas.fillStyle': {
'name': 'canvasContext.fillStyle',
'category': 'canvas',
'type': 'property',
'description': 'Determines the color (and, optionally, other properties) of the text drawn with <b>fillText</b>.'
},
'canvas.fillText': {
'name': 'canvasContext.fillText(text, x, y)',
'category': 'canvas',
'type': 'method',
'description': 'Draws a given piece of text, starting at specified coordinates, to to the canvas',
},
'global.$': {
'name': '$(html)',
'category': 'global',
'type': 'method',
'description': 'When passed an HTML string, $ returns a corresponding <a onclick="$(\'#helpPaneSidebar .category#jQuery\').click();">jQuery</a> instance.'
},
'global.objective': {
'name': 'objective(map)',
'category': 'global',
'type': 'method',
'description': 'The player exits the level as soon as this method returns true.'
},
'global.onExit': {
'name': 'onExit(map)',
'category': 'global',
'type': 'method',
'description': 'The player can exit the level only if this method returns true.'
},
'global.startLevel': {
'name': 'startLevel(map)',
'category': 'global',
'type': 'method',
'description': 'This method is called when the level loads.'
},
'global.validateLevel': {
'name': 'validateLevel(map)',
'category': 'global',
'type': 'method',
'description': 'The level can be loaded only if this method returns true.'
},
'ROT.Map.DividedMaze': {
'name': 'ROT.Map.DividedMaze(width, height)',
'category': 'global',
'type': 'method',
'description': 'Instantiates a Maze object of given width and height. The Maze object can create a maze by calling maze.create(callback), where the callback is a function that accepts (x, y, mapValue) and performs some action for each point in a grid, where mapValue is a boolean that is true if and only if the given point is part of the maze.'
},
'jQuery.addClass': {
'name': 'jQueryObject.addClass(class)',
'category': 'jQuery',
'type': 'method',
'description': 'Adds the given CSS class to the DOM element(s) specified by the jQuery object.'
},
'jQuery.children': {
'name': 'jQueryObject.children()',
'category': 'jQuery',
'type': 'method',
'description': 'Returns the children of the DOM element specified by the jQuery object, as a jQuery array.'
},
'jQuery.find': {
'name': 'jQueryObject.find(selector)',
'category': 'jQuery',
'type': 'method',
'description': 'Returns all elements in the DOM tree specified by the jQuery object that match the given CSS selector, as a jQuery array.'
},
'jQuery.first': {
'name': 'jQueryObject.first()',
'category': 'jQuery',
'type': 'method',
'description': 'Returns the first element of a jQuery array.'
},
'jQuery.hasClass': {
'name': 'jQueryObject.hasClass(class)',
'category': 'jQuery',
'type': 'method',
'description': 'Returns true if and only if the DOM element specified by the jQuery object has the given CSS class.'
},
'jQuery.length': {
'name': 'jQueryObject.length',
'category': 'jQuery',
'type': 'property',
'description': 'Returns the number of elements in a jQuery array.'
},
'jQuery.next': {
'name': 'jQueryObject.next()',
'category': 'jQuery',
'type': 'property',
'description': 'Returns the next sibling of the DOM element specified by the jQuery object.'
},
'jQuery.parent': {
'name': 'jQueryObject.parent()',
'category': 'jQuery',
'type': 'method',
'description': 'Returns the parent of the DOM element specified by the jQuery object.'
},
'jQuery.prev': {
'name': 'jQueryObject.prev()',
'category': 'jQuery',
'type': 'property',
'description': 'Returns the previous sibling of the DOM element specified by the jQuery object.'
},
'jQuery.removeClass': {
'name': 'jQueryObject.removeClass(class)',
'category': 'jQuery',
'type': 'method',
'description': 'Removes the given CSS class from the DOM element(s) specified by the jQuery object.'
},
'map.countObjects': {
'name': 'map.countObjects(objectType)',
'category': 'map',
'type': 'method',
'description': 'Returns the number of objects of the given type on the map.'
},
'map.createFromDOM': {
'name': 'map.createFromDOM($html)',
'category': 'map',
'type': 'method',
'description': 'Creates the map from a <a onclick="$(\'#helpPaneSidebar .category#jQuery\').click();">jQuery</a> instance, rendering the map as a DOM (document object model) rather than a grid.'
},
'map.createFromGrid': {
'name': 'map.createFromGrid(grid, tiles, xOffset, yOffset)',
'category': 'map',
'type': 'method',
'description': 'Places objects on the map corresponding to their position on the grid (an array of strings), with mappings as defined in tiles (a dictionary of character -> object type mappings), at the given offset from the top-left corner of the map.'
},
'map.createLine': {
'name': 'map.createLine([x1, x2], [y1 y2], callback)',
'category': 'map',
'type': 'method',
'description': 'Places a line on the map between the given points, that triggers the given callback when the player touches it. (Note that the line is invisible: createLine does <i>not</i> draw anything to the <a onclick="$(\'#helpPaneSidebar .category#canvas\').click();">canvas</a>.)'
},
'map.displayChapter': {
'name': 'map.displayChapter(chapter)',
'category': 'map',
'type': 'method',
'description': 'Displays the given chapter name.'
},
'map.defineObject': {
'name': 'map.defineObject(type, properties)',
'category': 'map',
'type': 'method',
'description': 'Defines a new type of <a onclick="$(\'#helpPaneSidebar .category#object\').click();">object</a> with the given properties. Note that type definitions created with map.defineObject only persist in the scope of the level.'
},
'map.getAdjacentEmptyCells': {
'name': 'map.getAdjacentEmptyCells(x, y)',
'category': 'map',
'type': 'method',
'description': 'Returns the empty cells adjacent to the cell at the given coordinates (if any), as an array of items of the form <i>[[x, y], direction]</i>, where (x, y) are the coordinates of each empty cell, and <i>direction</i> is the direction from the given cell to each empty cell ("left", "right", "up", or "down").'
},
'map.getCanvasContext': {
'name': 'map.getCanvasContext()',
'category': 'map',
'type': 'method',
'description': 'Returns the 2D drawing context of the <a onclick="$(\'#helpPaneSidebar .category#canvas\').click();">canvas</a> overlaying the map.'
},
'map.getCanvasCoords': {
'name': 'map.getCanvasCoords(obj) / map.getCanvasCoords(x, y)',
'category': 'map',
'type': 'method',
'description': 'Returns {"x": x, "y": y}, where x and y are the respective coordinates of the given object or grid position on the canvas returned by map.getCanvasContext().'
},
'map.getDOM': {
'name': 'map.getDOM()',
'category': 'map',
'type': 'method',
'description': 'Returns the <a onclick="$(\'#helpPaneSidebar .category#jQuery\').click();">jQuery</a> instance representing the map.'
},
'map.getDynamicObjects': {
'name': 'map.getDynamicObjects()',
'category': 'map',
'type': 'method',
'description': 'Returns all dynamic objects currently on the map.'
},
'map.getHeight': {
'name': 'map.getHeight()',
'category': 'map',
'type': 'method',
'description': 'Returns the height of the map, in cells.'
},
'map.getObjectTypeAt': {
'name': 'map.getObjectTypeAt(x, y)',
'category': 'map',
'type': 'method',
'description': 'Returns the type of the object at the given coordinates (or "empty" if there is no object there).'
},
'map.getPlayer': {
'name': 'map.getPlayer()',
'category': 'map',
'type': 'method',
'description': 'Returns the Player object.'
},
'map.getRandomColor': {
'name': 'map.getRandomColor(start, end)',
'category': 'map',
'type': 'method',
'description': 'Returns a hexadecimal string representing a random color in between the start and end colors. The start and end colors must be arrays of the form [R, G, B], where R, G, and B are decimal integers.'
},
'map.getWidth': {
'name': 'map.getWidth()',
'category': 'map',
'type': 'method',
'description': 'Returns the width of the map, in cells.'
},
'map.isStartOfLevel': {
'name': 'map.isStartOfLevel()',
'category': 'map',
'type': 'method',
'description': 'Returns true if called while a level is starting.'
},
'map.overrideKey': {
'name': 'map.overrideKey(key, callback)',
'category': 'map',
'type': 'method',
'description': 'Overrides the action performed by pressing the given key (<i>left</i>, <i>right</i>, <i>up</i>, or <i>down</i>).'
},
'map.placeObject': {
'name': 'map.placeObject(x, y, objectType)',
'category': 'map',
'type': 'method',
'description': 'Places an object of the given type at the given coordinates.'
},
'map.placePlayer': {
'name': 'map.placePlayer(x, y)',
'category': 'map',
'type': 'method',
'description': 'Places the player at the given coordinates.'
},
'map.setSquareColor': {
'name': 'map.setSquareColor(x, y, color)',
'category': 'map',
'type': 'method',
'description': 'Sets the background color of the given square.'
},
'map.timeout': {
'name': 'map.timeout(callback, delay)',
'category': 'map',
'type': 'method',
'description': 'Starts a timer (c.f. setTimeout) of the given delay, in milliseconds (minimum 25 ms). Unlike map.startTimer, the callback will only run once.'
},
'map.startTimer': {
'name': 'map.startTimer(callback, delay)',
'category': 'map',
'type': 'method',
'description': 'Starts a timer (c.f. setInterval) of the given delay, in milliseconds (minimum 25 ms).'
},
'map.updateDOM': {
'name': 'map.updateDOM($html)',
'category': 'map',
'type': 'method',
'description': 'Updates the <a onclick="$(\'#helpPaneSidebar .category#jQuery\').click();">jQuery</a> instance representing the map.'
},
'map.validateAtLeastXLines': {
'name': 'map.validateAtLeastXLines(num)',
'category': 'map',
'type': 'method',
'description': 'Raises an exception if there are not at least num lines (created by map.createLine) on the map.'
},
'map.validateAtLeastXObjects': {
'name': 'map.validateAtLeastXObjects(num, objectType)',
'category': 'map',
'type': 'method',
'description': 'Raises an exception if there are not at least num objects of type objectType on the map.'
},
'map.validateAtMostXDynamicObjects': {
'name': 'map.validateExactlyXManyObjects(num)',
'category': 'map',
'type': 'method',
'description': 'Raises an exception if there are more than num dynamic objects on the map.'
},
'map.validateExactlyXManyObjects': {
'name': 'map.validateExactlyXManyObjects(num, objectType)',
'category': 'map',
'type': 'method',
'description': 'Raises an exception if there are not exactly num objects of type objectType on the map.'
},
'map.validateNoTimers': {
'name': 'map.validateNoTimers()',
'category': 'map',
'type': 'method',
'description': 'Raises an exception if there are any timers currently set with map.startTimer.'
},
'map.writeStatus': {
'name': 'map.writeStatus(message)',
'category': 'map',
'type': 'method',
'description': 'Displays a message at the bottom of the map.'
},
'object.behavior': {
'name': 'object.behavior = function (object)',
'category': 'object',
'type': 'property',
'description': '(For dynamic objects only.) The function that is executed each time it is this object\'s turn.'
},
'object.canMove': {
'name': 'object.canMove(direction)',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Returns true if (and only if) the object is able to move one square in the given direction, which can be "left", "right", "up", or "down".'
},
'object.color': {
'name': 'object.color',
'category': 'object',
'type': 'property',
'description': 'The color of the object\'s symbol on the map.'
},
'object.findNearest': {
'name': 'object.findNearest(type)',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Returns the x and y coordinates of the nearest object of the given type to this object, as a hash.'
},
'object.getX': {
'name': 'object.getX()',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Returns the x-coordinate of the object.'
},
'object.getY': {
'name': 'object.getY()',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Returns the y-coordinate of the object.'
},
'object.giveItemTo': {
'name': 'object.giveItemTo(target, item)',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Gives the given item to the target (generally, the player). Can only be done if the object and the player have just collided.'
},
'object.impassable': {
'name': 'object.impassable = function (player, object)',
'category': 'object',
'type': 'property',
'description': '(For non-dynamic objects only.) The function that determines whether or not the player can pass through this object.'
},
'object.move': {
'name': 'object.move(direction)',
'category': 'object',
'type': 'method',
'description': '(For dynamic objects only.) Moves the object one square in the given direction, which can be "left", "right", "up", or "down". An object can only move once per turn.'
},
'object.onCollision': {
'name': 'object.onCollision = function (player)',
'category': 'object',
'type': 'property',
'description': 'The function that is executed when this object touches the player.'
},
'object.onDestroy': {
'name': 'object.onDestroy = function (object)',
'category': 'object',
'type': 'property',
'description': '(For dynamic objects only.) The function that is executed when this object is destroyed.'
},
'object.projectile': {
'name': 'object.projectile',
'category': 'object',
'type': 'property',
'description': '(For dynamic objects only.) If true, this object destroys any dynamic object (or player) that it collides with, and is itself destroyed when it collides with anything.'
},
'object.pushable': {
'name': 'object.pushable',
'category': 'object',
'type': 'property',
'description': '(For dynamic objects only.) If true, this object can be pushed by the player.'
},
'object.symbol': {
'name': 'object.symbol',
'category': 'object',
'type': 'property',
'description': 'The object\'s symbol on the map.'
},
'object.setTarget': {
'name': 'object.setTarget()',
'category': 'object',
'type': 'method',
'description': '(For teleporters only.) Sets the destination of this teleporter.'
},
'object.type': {
'name': 'object.type',
'category': 'object',
'type': 'property',
'description': 'Can be "item", "dynamic", or none. If "dynamic", then this object can move on turns that run each time that the player moves. If "item", then this object can be picked up.'
},
'player.atLocation': {
'name': 'player.atLocation(x, y)',
'category': 'player',
'type': 'method',
'description': 'Returns true if and only if the player is at the given location.'
},
'player.getColor': {
'name': 'player.getColor()',
'category': 'player',
'type': 'method',
'description': 'Returns the color of the player.'
},
'player.getLastMoveDirection': {
'name': 'player.getLastMoveDirection()',
'category': 'player',
'type': 'method',
'description': 'Returns the direction of last move by the player.'
},
'player.getX': {
'name': 'player.getX()',
'category': 'player',
'type': 'method',
'description': 'Returns the x-coordinate of the player.'
},
'player.getY': {
'name': 'player.getY()',
'category': 'player',
'type': 'method',
'description': 'Returns the y-coordinate of the player.'
},
'player.hasItem': {
'name': 'player.hasItem(itemType)',
'category': 'player',
'type': 'method',
'description': 'Returns true if and only if the player has the given item.'
},
'player.killedBy': {
'name': 'player.killedBy(text)',
'category': 'player',
'type': 'method',
'description': 'Kills the player and displays the given text as the cause of death.'
},
'player.move': {
'name': 'player.move(direction)',
'category': 'player',
'type': 'method',
'description': 'Moves the player one square in the given direction. The player can only move once in a given function.'
},
'player.removeItem': {
'name': 'player.removeItem(itemType)',
'category': 'player',
'type': 'method',
'description': 'Removes the given item from the player\'s inventory, if the player has the given item.'
},
'player.setColor': {
'name': 'player.setColor(color)',
'category': 'player',
'type': 'method',
'description': 'Sets the color of the player.'
},
'player.setPhoneCallback': {
'name': 'player.setPhoneCallback(callback)',
'category': 'player',
'type': 'method',
'description': 'Sets the function that is executed when the player uses the function phone.'
}
};
|