123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- edit_buttons_list
- dc.l edit_exit_button,edit_save_button,edit_load_button
- dc.l edit_cut_button,edit_copy_button,edit_paste_button
- dc.l edit_choose_button
- dc.l edit_insert_row_button,edit_insert_col_button
- dc.l edit_delete_row_button,edit_delete_col_button
- dc.l edit_palette_button,show_whole_map_button,edit_fill_button
- edit_page_buttons
- dc.l edit_page1_button,edit_page2_button
- dc.l edit_page3_button,edit_page4_button
- dc.l edit_scrollup_page_button,edit_scrolldown_page_button
- dc.l edit_scrollup_map_button,edit_scrolldown_map_button
- dc.l edit_scrollleft_map_button,edit_scrollright_map_button
- dc.l edit_hit_on_map,edit_hit_on_blocks
- dc.l -1
-
- edit_exit_button
- dc.w BUTTON_1
- dc.w FOURTH_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l remove_edit_buttons
- dc.b "EXIT EDIT",0
- EVEN
- edit_save_button
- dc.w BUTTON_1
- dc.w SECOND_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l set_up_save_map
- dc.b "SAVE MAP",0
- EVEN
- edit_load_button
- dc.w BUTTON_1
- dc.w FIRST_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l load_a_map
- dc.b "LOAD MAP",0
- EVEN
- edit_cut_button
- dc.w BUTTON_2
- dc.w FIRST_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l cut_block
- dc.b "CUT BLK",0
- EVEN
- edit_copy_button
- dc.w BUTTON_2
- dc.w SECOND_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l copy_block
- dc.b "COPY BLK",0
- EVEN
- edit_paste_button
- dc.w BUTTON_2
- dc.w THIRD_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l paste_block
- dc.b "PASTE BLK",0
- EVEN
-
- edit_choose_button
- dc.w BUTTON_2
- dc.w FOURTH_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l display_buffer_window
- dc.b "PICK BUFF",0
- EVEN
- edit_insert_row_button
- dc.w BUTTON_3
- dc.w FIRST_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l insert_map_row
- dc.b "INSERT ROW",0
- EVEN
- edit_insert_col_button
- dc.w BUTTON_3
- dc.w SECOND_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l insert_map_column
- dc.b "INSERT COL",0
- EVEN
- edit_delete_row_button
- dc.w BUTTON_3
- dc.w THIRD_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l delete_map_row
- dc.b "DELETE ROW",0
- EVEN
- edit_delete_col_button
- dc.w BUTTON_3
- dc.w FOURTH_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l delete_map_column
- dc.b "DELETE COL",0
- EVEN
- edit_fill_button
- dc.w BUTTON_4
- dc.w FIRST_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l fill_map
- dc.b "FILL",0
- EVEN
- edit_palette_button
- dc.w BUTTON_4
- dc.w SECOND_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l edit_map_palette
- dc.b "PALETTE",0
- EVEN
- show_whole_map_button
- dc.w BUTTON_4
- dc.w THIRD_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l show_whole_map
- dc.b "SHOW WHOLE",0
- EVEN
- edit_undo_button
- dc.w BUTTON_4
- dc.w FOURTH_ROW
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b STANDARD_BUTTON ;standard
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l 0 ;not used
- dc.l 0 ;not used
- dc.l undo
- dc.b "UNDO",0
- EVEN
- edit_page1_button
- dc.w BUTTON_5+40
- dc.w FIRST_ROW+17
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+TOGGLE_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 1
- dc.b 0 ;not used
- dc.l page1_button
- dc.l 0 ;not used
- dc.l change_block_page
- dc.b 0
- EVEN
- edit_page2_button
- dc.w BUTTON_5+68
- dc.w FIRST_ROW+17
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+TOGGLE_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 2
- dc.b 0 ;not used
- dc.l page2_button
- dc.l 0 ;not used
- dc.l change_block_page
- dc.b 0
- EVEN
-
- edit_page3_button
- dc.w BUTTON_5+40
- dc.w FIRST_ROW+13+17
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+TOGGLE_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 3
- dc.b 0 ;not used
- dc.l page3_button
- dc.l 0 ;not used
- dc.l change_block_page
- dc.b 0
- EVEN
-
- edit_page4_button
- dc.w BUTTON_5+68
- dc.w FIRST_ROW+13+17
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+TOGGLE_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 4
- dc.b 0 ;not used
- dc.l page4_button
- dc.l 0 ;not used
- dc.l change_block_page
- dc.b 0
- EVEN
- edit_scrollup_page_button
- dc.w BUTTON_5+10
- dc.w FIRST_ROW+10
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_up
- dc.l 0 ;not used
- dc.l change_blocks_position_down
- dc.b 0
- EVEN
-
- edit_scrolldown_page_button
- dc.w BUTTON_5+10
- dc.w FIRST_ROW+30
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_down
- dc.l 0 ;not used
- dc.l change_blocks_position_up
- dc.b 0
- EVEN
- edit_scrollup_map_button
- dc.w BUTTON_5+140
- dc.w SECOND_ROW+5
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_up
- dc.l 0 ;not used
- dc.l scroll_map_up
- dc.b 0
- EVEN
-
- edit_scrolldown_map_button
- dc.w BUTTON_5+140
- dc.w SECOND_ROW+35
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_down
- dc.l 0 ;not used
- dc.l scroll_map_down
- dc.b 0
- EVEN
- edit_scrollleft_map_button
- dc.w BUTTON_5+110
- dc.w SECOND_ROW+20
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_left
- dc.l 0 ;not used
- dc.l scroll_map_right
- dc.b 0
- EVEN
-
- edit_scrollright_map_button
- dc.w BUTTON_5+167
- dc.w SECOND_ROW+20
- dc.w MAIN_BUTTON_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l arrow_right
- dc.l 0 ;not used
- dc.l scroll_map_left
- dc.b 0
- EVEN
- *******detect buttons
- edit_hit_on_map
- dc.w 0
- dc.w 0
- dc.w MAIN_SCREEN ;frame type
- dc.b CUSTOM_BUTTON+HOLD_BUTTON ;+NO_WAIT_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l map_screen_custom_button
- dc.l 0 ;not used
- dc.l execute_map_function
- dc.b 0
- EVEN
- edit_hit_on_blocks
- dc.w 0
- dc.w BUTTON_WINDOW_OFFSET-32
- dc.w MAIN_SCREEN ;frame type
- dc.b CUSTOM_BUTTON
- dc.b NOT_DEPRESSED
- dc.b 0
- dc.b 0 ;not used
- dc.l map_blocks_custom_button
- dc.l 0 ;not used
- dc.l update_current_block
- dc.b 0
- EVEN
|