2020-09-12 23:33:28 -04:00
|
|
|
;=============================
|
|
|
|
; common stuff
|
|
|
|
|
2020-09-14 23:55:50 -04:00
|
|
|
VERB_GIVE = 0
|
|
|
|
VERB_OPEN = 1
|
|
|
|
VERB_CLOSE = 2
|
|
|
|
VERB_PICK_UP = 3
|
|
|
|
VERB_LOOK_AT = 4
|
|
|
|
VERB_TALK_TO = 5
|
|
|
|
VERB_USE = 6
|
|
|
|
VERB_PUSH = 7
|
|
|
|
VERB_PULL = 8
|
|
|
|
VERB_WALK = 9
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-12 23:33:28 -04:00
|
|
|
;===============================================
|
|
|
|
; level data structure definitions
|
|
|
|
;===============================================
|
|
|
|
|
|
|
|
LOCATION_BACKGROUND=0 ; background
|
2020-09-16 00:28:08 -04:00
|
|
|
LOCATION_WALK_X_LEFT=2
|
|
|
|
LOCATION_WALK_X_RIGHT=3
|
|
|
|
LOCATION_WALK_Y_TOP=4
|
|
|
|
LOCATION_WALK_Y_BOTTOM=5
|
|
|
|
LOCATION_NUM_AREAS=6
|
|
|
|
LOCATION_AREAS=7 ; each area 8 in size
|
|
|
|
|
2020-09-12 23:33:28 -04:00
|
|
|
|
|
|
|
;================================
|
|
|
|
; Loader definitions
|
|
|
|
|
|
|
|
LOAD_TITLE = 0
|
|
|
|
LOAD_MONKEY = 1
|
|
|
|
|
|
|
|
;================================
|
|
|
|
; Level definitions
|
|
|
|
|
|
|
|
; Title
|
|
|
|
|
|
|
|
; Monkey
|
|
|
|
|
|
|
|
MONKEY_LOOKOUT = 0
|
2020-09-13 00:32:52 -04:00
|
|
|
MONKEY_POSTER = 1
|
|
|
|
MONKEY_DOCK = 2
|
|
|
|
MONKEY_BAR = 3
|