Spaces:
Running
Running
File size: 7,545 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 |
/**
* @namespace Top-level ROT namespace
*/
var ROT = {
/**
* @returns {bool} Is rot.js supported by this browser?
*/
isSupported: function() {
return !!(document.createElement("canvas").getContext && Function.prototype.bind);
},
/** Default with for display and map generators */
DEFAULT_WIDTH: 80,
/** Default height for display and map generators */
DEFAULT_HEIGHT: 25,
/** Directional constants. Ordering is important! */
DIRS: {
"4": [
[ 0, -1],
[ 1, 0],
[ 0, 1],
[-1, 0]
],
"8": [
[ 0, -1],
[ 1, -1],
[ 1, 0],
[ 1, 1],
[ 0, 1],
[-1, 1],
[-1, 0],
[-1, -1]
],
"6": [
[-1, -1],
[ 1, -1],
[ 2, 0],
[ 1, 1],
[-1, 1],
[-2, 0]
]
},
/** Cancel key. */
VK_CANCEL: 3,
/** Help key. */
VK_HELP: 6,
/** Backspace key. */
VK_BACK_SPACE: 8,
/** Tab key. */
VK_TAB: 9,
/** 5 key on Numpad when NumLock is unlocked. Or on Mac, clear key which is positioned at NumLock key. */
VK_CLEAR: 12,
/** Return/enter key on the main keyboard. */
VK_RETURN: 13,
/** Reserved, but not used. */
VK_ENTER: 14,
/** Shift key. */
VK_SHIFT: 16,
/** Control key. */
VK_CONTROL: 17,
/** Alt (Option on Mac) key. */
VK_ALT: 18,
/** Pause key. */
VK_PAUSE: 19,
/** Caps lock. */
VK_CAPS_LOCK: 20,
/** Escape key. */
VK_ESCAPE: 27,
/** Space bar. */
VK_SPACE: 32,
/** Page Up key. */
VK_PAGE_UP: 33,
/** Page Down key. */
VK_PAGE_DOWN: 34,
/** End key. */
VK_END: 35,
/** Home key. */
VK_HOME: 36,
/** Left arrow. */
VK_LEFT: 37,
/** Up arrow. */
VK_UP: 38,
/** Right arrow. */
VK_RIGHT: 39,
/** Down arrow. */
VK_DOWN: 40,
/** Print Screen key. */
VK_PRINTSCREEN: 44,
/** Ins(ert) key. */
VK_INSERT: 45,
/** Del(ete) key. */
VK_DELETE: 46,
/***/
VK_0: 48,
/***/
VK_1: 49,
/***/
VK_2: 50,
/***/
VK_3: 51,
/***/
VK_4: 52,
/***/
VK_5: 53,
/***/
VK_6: 54,
/***/
VK_7: 55,
/***/
VK_8: 56,
/***/
VK_9: 57,
/** Colon (:) key. Requires Gecko 15.0 */
VK_COLON: 58,
/** Semicolon (;) key. */
VK_SEMICOLON: 59,
/** Less-than (<) key. Requires Gecko 15.0 */
VK_LESS_THAN: 60,
/** Equals (=) key. */
VK_EQUALS: 61,
/** Greater-than (>) key. Requires Gecko 15.0 */
VK_GREATER_THAN: 62,
/** Question mark (?) key. Requires Gecko 15.0 */
VK_QUESTION_MARK: 63,
/** Atmark (@) key. Requires Gecko 15.0 */
VK_AT: 64,
/***/
VK_A: 65,
/***/
VK_B: 66,
/***/
VK_C: 67,
/***/
VK_D: 68,
/***/
VK_E: 69,
/***/
VK_F: 70,
/***/
VK_G: 71,
/***/
VK_H: 72,
/***/
VK_I: 73,
/***/
VK_J: 74,
/***/
VK_K: 75,
/***/
VK_L: 76,
/***/
VK_M: 77,
/***/
VK_N: 78,
/***/
VK_O: 79,
/***/
VK_P: 80,
/***/
VK_Q: 81,
/***/
VK_R: 82,
/***/
VK_S: 83,
/***/
VK_T: 84,
/***/
VK_U: 85,
/***/
VK_V: 86,
/***/
VK_W: 87,
/***/
VK_X: 88,
/***/
VK_Y: 89,
/***/
VK_Z: 90,
/***/
VK_CONTEXT_MENU: 93,
/** 0 on the numeric keypad. */
VK_NUMPAD0: 96,
/** 1 on the numeric keypad. */
VK_NUMPAD1: 97,
/** 2 on the numeric keypad. */
VK_NUMPAD2: 98,
/** 3 on the numeric keypad. */
VK_NUMPAD3: 99,
/** 4 on the numeric keypad. */
VK_NUMPAD4: 100,
/** 5 on the numeric keypad. */
VK_NUMPAD5: 101,
/** 6 on the numeric keypad. */
VK_NUMPAD6: 102,
/** 7 on the numeric keypad. */
VK_NUMPAD7: 103,
/** 8 on the numeric keypad. */
VK_NUMPAD8: 104,
/** 9 on the numeric keypad. */
VK_NUMPAD9: 105,
/** * on the numeric keypad. */
VK_MULTIPLY: 106,
/** + on the numeric keypad. */
VK_ADD: 107,
/***/
VK_SEPARATOR: 108,
/** - on the numeric keypad. */
VK_SUBTRACT: 109,
/** Decimal point on the numeric keypad. */
VK_DECIMAL: 110,
/** / on the numeric keypad. */
VK_DIVIDE: 111,
/** F1 key. */
VK_F1: 112,
/** F2 key. */
VK_F2: 113,
/** F3 key. */
VK_F3: 114,
/** F4 key. */
VK_F4: 115,
/** F5 key. */
VK_F5: 116,
/** F6 key. */
VK_F6: 117,
/** F7 key. */
VK_F7: 118,
/** F8 key. */
VK_F8: 119,
/** F9 key. */
VK_F9: 120,
/** F10 key. */
VK_F10: 121,
/** F11 key. */
VK_F11: 122,
/** F12 key. */
VK_F12: 123,
/** F13 key. */
VK_F13: 124,
/** F14 key. */
VK_F14: 125,
/** F15 key. */
VK_F15: 126,
/** F16 key. */
VK_F16: 127,
/** F17 key. */
VK_F17: 128,
/** F18 key. */
VK_F18: 129,
/** F19 key. */
VK_F19: 130,
/** F20 key. */
VK_F20: 131,
/** F21 key. */
VK_F21: 132,
/** F22 key. */
VK_F22: 133,
/** F23 key. */
VK_F23: 134,
/** F24 key. */
VK_F24: 135,
/** Num Lock key. */
VK_NUM_LOCK: 144,
/** Scroll Lock key. */
VK_SCROLL_LOCK: 145,
/** Circumflex (^) key. Requires Gecko 15.0 */
VK_CIRCUMFLEX: 160,
/** Exclamation (!) key. Requires Gecko 15.0 */
VK_EXCLAMATION: 161,
/** Double quote () key. Requires Gecko 15.0 */
VK_DOUBLE_QUOTE: 162,
/** Hash (#) key. Requires Gecko 15.0 */
VK_HASH: 163,
/** Dollar sign ($) key. Requires Gecko 15.0 */
VK_DOLLAR: 164,
/** Percent (%) key. Requires Gecko 15.0 */
VK_PERCENT: 165,
/** Ampersand (&) key. Requires Gecko 15.0 */
VK_AMPERSAND: 166,
/** Underscore (_) key. Requires Gecko 15.0 */
VK_UNDERSCORE: 167,
/** Open parenthesis (() key. Requires Gecko 15.0 */
VK_OPEN_PAREN: 168,
/** Close parenthesis ()) key. Requires Gecko 15.0 */
VK_CLOSE_PAREN: 169,
/* Asterisk (*) key. Requires Gecko 15.0 */
VK_ASTERISK: 170,
/** Plus (+) key. Requires Gecko 15.0 */
VK_PLUS: 171,
/** Pipe (|) key. Requires Gecko 15.0 */
VK_PIPE: 172,
/** Hyphen-US/docs/Minus (-) key. Requires Gecko 15.0 */
VK_HYPHEN_MINUS: 173,
/** Open curly bracket ({) key. Requires Gecko 15.0 */
VK_OPEN_CURLY_BRACKET: 174,
/** Close curly bracket (}) key. Requires Gecko 15.0 */
VK_CLOSE_CURLY_BRACKET: 175,
/** Tilde (~) key. Requires Gecko 15.0 */
VK_TILDE: 176,
/** Comma (,) key. */
VK_COMMA: 188,
/** Period (.) key. */
VK_PERIOD: 190,
/** Slash (/) key. */
VK_SLASH: 191,
/** Back tick (`) key. */
VK_BACK_QUOTE: 192,
/** Open square bracket ([) key. */
VK_OPEN_BRACKET: 219,
/** Back slash (\) key. */
VK_BACK_SLASH: 220,
/** Close square bracket (]) key. */
VK_CLOSE_BRACKET: 221,
/** Quote (''') key. */
VK_QUOTE: 222,
/** Meta key on Linux, Command key on Mac. */
VK_META: 224,
/** AltGr key on Linux. Requires Gecko 15.0 */
VK_ALTGR: 225,
/** Windows logo key on Windows. Or Super or Hyper key on Linux. Requires Gecko 15.0 */
VK_WIN: 91,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_KANA: 21,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_HANGUL: 21,
/** 英数 key on Japanese Mac keyboard. Requires Gecko 15.0 */
VK_EISU: 22,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_JUNJA: 23,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_FINAL: 24,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_HANJA: 25,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_KANJI: 25,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_CONVERT: 28,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_NONCONVERT: 29,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_ACCEPT: 30,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_MODECHANGE: 31,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_SELECT: 41,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_PRINT: 42,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_EXECUTE: 43,
/** Linux support for this keycode was added in Gecko 4.0. */
VK_SLEEP: 95
};
|