[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for initializing menu system.
|
---|
| 3 |
|
---|
[376] | 4 | ;
|
---|
| 5 | ; XTIDE Universal BIOS and Associated Tools
|
---|
| 6 | ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
|
---|
| 7 | ;
|
---|
| 8 | ; This program is free software; you can redistribute it and/or modify
|
---|
| 9 | ; it under the terms of the GNU General Public License as published by
|
---|
| 10 | ; the Free Software Foundation; either version 2 of the License, or
|
---|
| 11 | ; (at your option) any later version.
|
---|
| 12 | ;
|
---|
| 13 | ; This program is distributed in the hope that it will be useful,
|
---|
| 14 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 16 | ; GNU General Public License for more details.
|
---|
| 17 | ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
---|
| 18 | ;
|
---|
| 19 |
|
---|
| 20 |
|
---|
[41] | 21 | ; Section containing code
|
---|
| 22 | SECTION .text
|
---|
| 23 |
|
---|
| 24 | ;--------------------------------------------------------------------
|
---|
| 25 | ; MenuInit_DisplayMenuWithHandlerInBXandUserDataInDXAX
|
---|
| 26 | ; Parameters
|
---|
| 27 | ; DX:AX: User specified data
|
---|
| 28 | ; BX: Menu event handler
|
---|
| 29 | ; Returns:
|
---|
| 30 | ; AX: Index of selected item or NO_ITEM_SELECTED
|
---|
| 31 | ; Corrupts registers:
|
---|
| 32 | ; All except segments
|
---|
| 33 | ;--------------------------------------------------------------------
|
---|
[369] | 34 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 35 | MenuInit_DisplayMenuWithHandlerInBXandUserDataInDXAX:
|
---|
| 36 | push es
|
---|
| 37 | push ds
|
---|
[390] | 38 | xchg cx, ax ; Backup user data
|
---|
| 39 | CALL_DISPLAY_LIBRARY PushDisplayContext
|
---|
[41] | 40 |
|
---|
[390] | 41 | ; Create MENU struct to stack
|
---|
| 42 | mov ax, MENU_size
|
---|
| 43 | eENTER_STRUCT ax
|
---|
| 44 | xchg ax, cx ; Restore user data to AX
|
---|
[46] | 45 | call Memory_ZeroSSBPwithSizeInCX
|
---|
[390] | 46 |
|
---|
| 47 | ; Display menu
|
---|
[391] | 48 | call MenuInit_EnterMenuWithHandlerInBXandUserDataInDXAX
|
---|
[390] | 49 |
|
---|
| 50 | ; Get menu selection and destroy menu variables from stack
|
---|
[129] | 51 | mov dx, [bp+MENUINIT.wHighlightedItem]
|
---|
[390] | 52 | eLEAVE_STRUCT MENU_size
|
---|
[41] | 53 |
|
---|
[390] | 54 | CALL_DISPLAY_LIBRARY PopDisplayContext
|
---|
[129] | 55 | xchg ax, dx ; Return highlighted item in AX
|
---|
[41] | 56 | pop ds
|
---|
| 57 | pop es
|
---|
| 58 | ret
|
---|
| 59 |
|
---|
| 60 |
|
---|
| 61 | ;--------------------------------------------------------------------
|
---|
[390] | 62 | ; EnterMenuWithHandlerInBXandUserDataInDXAX
|
---|
[41] | 63 | ; Parameters
|
---|
| 64 | ; DX:AX: User specified data
|
---|
| 65 | ; BX: Menu event handler
|
---|
| 66 | ; SS:BP: Ptr to MENU
|
---|
| 67 | ; Returns:
|
---|
| 68 | ; Nothing
|
---|
| 69 | ; Corrupts registers:
|
---|
| 70 | ; All, except SS:BP
|
---|
| 71 | ;--------------------------------------------------------------------
|
---|
[369] | 72 | ALIGN MENU_JUMP_ALIGN
|
---|
[391] | 73 | MenuInit_EnterMenuWithHandlerInBXandUserDataInDXAX:
|
---|
[41] | 74 | mov [bp+MENU.fnEventHandler], bx
|
---|
| 75 | mov [bp+MENU.dwUserData], ax
|
---|
| 76 | mov [bp+MENU.dwUserData+2], dx
|
---|
| 77 |
|
---|
| 78 | mov ax, CURSOR_HIDDEN
|
---|
| 79 | CALL_DISPLAY_LIBRARY SetCursorShapeFromAX
|
---|
[104] | 80 | call MenuEvent_InitializeMenuinit ; User initialization
|
---|
[133] | 81 | %ifndef USE_186
|
---|
[41] | 82 | call MenuInit_RefreshMenuWindow
|
---|
| 83 | jmp MenuLoop_Enter
|
---|
[133] | 84 | %else
|
---|
| 85 | push MenuLoop_Enter
|
---|
| 86 | ; Fall to MenuInit_RefreshMenuWindow
|
---|
| 87 | %endif
|
---|
[41] | 88 |
|
---|
| 89 |
|
---|
| 90 | ;--------------------------------------------------------------------
|
---|
| 91 | ; MenuInit_RefreshMenuWindow
|
---|
| 92 | ; Parameters
|
---|
| 93 | ; SS:BP: Ptr to MENU
|
---|
| 94 | ; Returns:
|
---|
| 95 | ; Nothing
|
---|
| 96 | ; Corrupts registers:
|
---|
| 97 | ; AX, BX, CX, DX, SI, DI
|
---|
| 98 | ;--------------------------------------------------------------------
|
---|
[369] | 99 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 100 | MenuInit_RefreshMenuWindow:
|
---|
| 101 | call MenuBorders_RefreshAll ; Draw borders
|
---|
| 102 | call MenuText_RefreshTitle ; Draw title strings
|
---|
| 103 | call MenuText_RefreshAllItems ; Draw item strings
|
---|
[116] | 104 | jmp MenuText_RefreshInformation ; Draw information strings
|
---|
[41] | 105 |
|
---|
| 106 |
|
---|
| 107 | ;--------------------------------------------------------------------
|
---|
[205] | 108 | ; MenuInit_CloseMenuIfExitEventAllows
|
---|
| 109 | ; Parameters
|
---|
| 110 | ; SS:BP: Ptr to MENU
|
---|
| 111 | ; Returns:
|
---|
| 112 | ; Nothing
|
---|
| 113 | ; Corrupts registers:
|
---|
| 114 | ; AX, BX, DX
|
---|
| 115 | ;--------------------------------------------------------------------
|
---|
| 116 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 117 | ALIGN MENU_JUMP_ALIGN
|
---|
[205] | 118 | MenuInit_CloseMenuIfExitEventAllows:
|
---|
| 119 | call MenuEvent_ExitMenu
|
---|
| 120 | jc SHORT MenuInit_CloseMenuWindow
|
---|
| 121 | ret
|
---|
| 122 | %endif
|
---|
| 123 |
|
---|
| 124 |
|
---|
| 125 | ;--------------------------------------------------------------------
|
---|
[41] | 126 | ; MenuInit_CloseMenuWindow
|
---|
| 127 | ; Parameters
|
---|
| 128 | ; SS:BP: Ptr to MENU
|
---|
| 129 | ; Returns:
|
---|
| 130 | ; Nothing
|
---|
| 131 | ; Corrupts registers:
|
---|
| 132 | ; Nothing
|
---|
| 133 | ;--------------------------------------------------------------------
|
---|
[369] | 134 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 135 | MenuInit_CloseMenuWindow:
|
---|
| 136 | or BYTE [bp+MENU.bFlags], FLG_MENU_EXIT
|
---|
| 137 | ret
|
---|
| 138 |
|
---|
| 139 |
|
---|
| 140 | ;--------------------------------------------------------------------
|
---|
| 141 | ; MenuInit_HighlightItemFromAX
|
---|
| 142 | ; Parameters
|
---|
| 143 | ; AX: Item to highlight
|
---|
| 144 | ; SS:BP: Ptr to MENU
|
---|
| 145 | ; Returns:
|
---|
| 146 | ; Nothing
|
---|
| 147 | ; Corrupts registers:
|
---|
| 148 | ; AX, BX, CX, DX, SI, DI
|
---|
| 149 | ;--------------------------------------------------------------------
|
---|
[369] | 150 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 151 | MenuInit_HighlightItemFromAX:
|
---|
[52] | 152 | sub ax, [bp+MENUINIT.wHighlightedItem]
|
---|
[41] | 153 | jmp MenuScrollbars_MoveHighlightedItemByAX
|
---|
| 154 |
|
---|
[48] | 155 | ;--------------------------------------------------------------------
|
---|
| 156 | ; MenuInit_GetHighlightedItemToAX
|
---|
| 157 | ; Parameters
|
---|
| 158 | ; SS:BP: Ptr to MENU
|
---|
| 159 | ; Returns:
|
---|
| 160 | ; AX: Index of highlighted item or NO_ITEM_HIGHLIGHTED
|
---|
| 161 | ; Corrupts registers:
|
---|
| 162 | ; Nothing
|
---|
| 163 | ;--------------------------------------------------------------------
|
---|
[133] | 164 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 165 | ALIGN MENU_JUMP_ALIGN
|
---|
[48] | 166 | MenuInit_GetHighlightedItemToAX:
|
---|
[52] | 167 | mov ax, [bp+MENUINIT.wHighlightedItem]
|
---|
[48] | 168 | ret
|
---|
[133] | 169 | %endif
|
---|
[41] | 170 |
|
---|
[48] | 171 |
|
---|
[41] | 172 | ;--------------------------------------------------------------------
|
---|
| 173 | ; MenuInit_SetTitleHeightFromAL
|
---|
| 174 | ; MenuInit_SetInformationHeightFromAL
|
---|
| 175 | ; MenuInit_SetTotalItemsFromAX
|
---|
| 176 | ; Parameters
|
---|
| 177 | ; AX/AL: Parameter
|
---|
| 178 | ; SS:BP: Ptr to MENU
|
---|
| 179 | ; Returns:
|
---|
| 180 | ; Nothing
|
---|
| 181 | ; Corrupts registers:
|
---|
| 182 | ; Nothing
|
---|
| 183 | ;--------------------------------------------------------------------
|
---|
[133] | 184 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 185 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 186 | MenuInit_SetTitleHeightFromAL:
|
---|
| 187 | mov [bp+MENUINIT.bTitleLines], al
|
---|
| 188 | ret
|
---|
| 189 |
|
---|
[369] | 190 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 191 | MenuInit_SetInformationHeightFromAL:
|
---|
| 192 | mov [bp+MENUINIT.bInfoLines], al
|
---|
| 193 | ret
|
---|
| 194 |
|
---|
[369] | 195 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 196 | MenuInit_SetTotalItemsFromAX:
|
---|
| 197 | mov [bp+MENUINIT.wItems], ax
|
---|
| 198 | ret
|
---|
[133] | 199 | %endif
|
---|
[41] | 200 |
|
---|
| 201 |
|
---|
| 202 | ;--------------------------------------------------------------------
|
---|
| 203 | ; MenuInit_SetUserDataFromDSSI
|
---|
| 204 | ; MenuInit_GetUserDataToDSSI
|
---|
| 205 | ; Parameters
|
---|
| 206 | ; DS:SI: User data (MenuInit_SetUserDataFromDSSI)
|
---|
| 207 | ; SS:BP: Ptr to MENU
|
---|
| 208 | ; Returns:
|
---|
| 209 | ; DS:SI: User data (MenuInit_GetUserDataToDSSI)
|
---|
| 210 | ; Corrupts registers:
|
---|
| 211 | ; Nothing
|
---|
| 212 | ;--------------------------------------------------------------------
|
---|
[133] | 213 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 214 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 215 | MenuInit_SetUserDataFromDSSI:
|
---|
| 216 | mov [bp+MENU.dwUserData], si
|
---|
| 217 | mov [bp+MENU.dwUserData+2], ds
|
---|
| 218 | ret
|
---|
| 219 |
|
---|
[369] | 220 | ALIGN MENU_JUMP_ALIGN
|
---|
[41] | 221 | MenuInit_GetUserDataToDSSI:
|
---|
| 222 | lds si, [bp+MENU.dwUserData]
|
---|
| 223 | ret
|
---|
[133] | 224 | %endif
|
---|