comparison clojure/com/aurellem/gb/transit.clj @ 230:fe26776e1a58

working on map memory, modified view-memory to output hex and decimal as well as binary
author Robert McIntyre <rlm@mit.edu>
date Sat, 24 Mar 2012 14:42:34 -0500
parents 30f4fc9b1747
children ecdbfa1fc51f
comparison
equal deleted inserted replaced
229:30f4fc9b1747 230:fe26776e1a58
6 ;; conducted experiments with this variable in the 6 ;; conducted experiments with this variable in the
7 ;; following places. 7 ;; following places.
8 8
9 0xD367 = 00000110 ;; inside-building 9 0xD367 = 00000110 ;; inside-building
10 10
11 0xD367 = 00001001 ;; wilderness 11 0xD367 = 00001001 ;; wilderness outside Celadon
12 12
13 0xD367 = 00010010 ;; inside cave 13 0xD367 = 00010010 ;; inside cave
14 14
15 0xD367 = 00001001 ;; inside pokeon-tower 15 0xD367 = 00001001 ;; inside pokeon-tower
16 16
17 0xD367 = 00110110 ;; fishing peer not by water 17 0xD367 = 00110110 ;; fishing peer not by water
18 18
19 0xD367 = 00110110 ;; fishing peer waters edge 19 0xD367 = 00110110 ;; fishing peer waters edge
20 20
21 0xD367 = 00110110 ;; in battle at fishing peer
22
23 0xD367 = 00010010 ;; at Cerulean
24
25 ;; setting it to zero does not affect teleport
26 ;; setting it to 0xFF does not affect teleport
27 ;; conclusion -- 0xD367 is position related but does not control
28 ;; transit moves/items
29
30
31 ;; try the same with 0xD366
32
33 0xD366 = 00000000 ;; at Cerulean
34 0xD366 = 00010001 ;; in Rock Tunnel
35 0xD366 = 00001111 ;; in poke tower floor 1
36 0xD366 = 00000110 ;; in poke center
37
38 ;; 0xFF disables fly, dig, teleport, rope
39 ;; 0x00 enables fly, teleport, disables dig, rope
40
41 ;; in cereluan
42 ;; set to 00000100 disables doors, ledges, fly, teleport
43 ;; set to 00000010 disables doors, ledges, fly, teleport
44
45 ;; in poke-center
46 ;; set to 00000010 disables fly, teleport, dig, rope
47 ;; set to 00000100 disables fly, teleport, dig, rope
48 ;; set to 00000000 enables fly, teleport
49 ;; set to 00010001 changes colormap to brown,
50 ;; enables rope, dig
51 ;; disables fly, teleport
52