[41] | 1 | ; File name : MenuBorders.asm
|
---|
| 2 | ; Project name : Assembly Library
|
---|
| 3 | ; Created date : 14.7.2010
|
---|
[67] | 4 | ; Last update : 9.12.2010
|
---|
[41] | 5 | ; Author : Tomi Tilli
|
---|
| 6 | ; Description : Functions for drawing menu borders.
|
---|
| 7 |
|
---|
| 8 | ; Struct containing border characters for different types of menu window lines
|
---|
| 9 | struc BORDER_CHARS
|
---|
| 10 | .cLeft resb 1
|
---|
| 11 | .cMiddle resb 1
|
---|
| 12 | .cRight resb 1
|
---|
| 13 | endstruc
|
---|
| 14 |
|
---|
| 15 |
|
---|
| 16 | ; Section containing code
|
---|
| 17 | SECTION .text
|
---|
| 18 |
|
---|
| 19 | ;--------------------------------------------------------------------
|
---|
| 20 | ; MenuBorders_RefreshAll
|
---|
| 21 | ; Parameters
|
---|
| 22 | ; SS:BP: Ptr to MENU
|
---|
| 23 | ; Returns:
|
---|
| 24 | ; Nothing
|
---|
| 25 | ; Corrupts registers:
|
---|
| 26 | ; AX, BX, CX, DX, SI, DI
|
---|
| 27 | ;--------------------------------------------------------------------
|
---|
| 28 | ALIGN JUMP_ALIGN
|
---|
| 29 | MenuBorders_RefreshAll:
|
---|
| 30 | call MenuBorders_AdjustDisplayContextForDrawingBorders
|
---|
[67] | 31 | call MenuBorders_GetNumberOfMiddleCharactersToDX
|
---|
[41] | 32 | call RefreshTitleBorders
|
---|
| 33 | call RefreshItemBorders
|
---|
| 34 | call RefreshInformationBorders
|
---|
| 35 | call DrawBottomBorderLine
|
---|
[60] | 36 | jmp DrawBottomShadowLine
|
---|
[41] | 37 |
|
---|
| 38 |
|
---|
| 39 | ;--------------------------------------------------------------------
|
---|
[60] | 40 | ; MenuBorders_RedrawBottomBorderLine
|
---|
| 41 | ; Parameters
|
---|
| 42 | ; SS:BP: Ptr to MENU
|
---|
| 43 | ; Returns:
|
---|
| 44 | ; Nothing
|
---|
| 45 | ; Corrupts registers:
|
---|
| 46 | ; AX, BX, DX, SI, DI
|
---|
| 47 | ;--------------------------------------------------------------------
|
---|
| 48 | ALIGN JUMP_ALIGN
|
---|
| 49 | MenuBorders_RedrawBottomBorderLine:
|
---|
| 50 | call MenuBorders_AdjustDisplayContextForDrawingBorders
|
---|
| 51 | call MenuLocation_GetBottomBordersTopLeftCoordinatesToAX
|
---|
| 52 | CALL_DISPLAY_LIBRARY SetCursorCoordinatesFromAX
|
---|
[67] | 53 | call MenuBorders_GetNumberOfMiddleCharactersToDX
|
---|
[62] | 54 | jmp SHORT DrawBottomBorderLine
|
---|
[60] | 55 |
|
---|
| 56 |
|
---|
| 57 | ;--------------------------------------------------------------------
|
---|
[41] | 58 | ; MenuBorders_AdjustDisplayContextForDrawingBorders
|
---|
| 59 | ; Parameters
|
---|
| 60 | ; SS:BP: Ptr to MENU
|
---|
| 61 | ; Returns:
|
---|
| 62 | ; Nothing
|
---|
| 63 | ; Corrupts registers:
|
---|
[45] | 64 | ; AX, BX, SI, DI
|
---|
[41] | 65 | ;--------------------------------------------------------------------
|
---|
| 66 | ALIGN JUMP_ALIGN
|
---|
| 67 | MenuBorders_AdjustDisplayContextForDrawingBorders:
|
---|
[45] | 68 | mov bl, ATTRIBUTES_ARE_USED
|
---|
[52] | 69 | mov ax, MenuCharOut_MenuTeletypeOutput
|
---|
[45] | 70 | CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL
|
---|
[41] | 71 |
|
---|
[52] | 72 | call CharOutLineSplitter_GetFirstBorderLineColumnOffsetToAX
|
---|
[41] | 73 | CALL_DISPLAY_LIBRARY SetCharacterOutputParameterFromAX
|
---|
| 74 |
|
---|
| 75 | call MenuLocation_GetTitleBordersTopLeftCoordinatesToAX
|
---|
| 76 | CALL_DISPLAY_LIBRARY SetCursorCoordinatesFromAX
|
---|
| 77 |
|
---|
| 78 | mov si, ATTRIBUTE_CHARS.cBordersAndBackground
|
---|
| 79 | jmp MenuAttribute_SetToDisplayContextFromTypeInSI
|
---|
| 80 |
|
---|
| 81 |
|
---|
| 82 | ;--------------------------------------------------------------------
|
---|
| 83 | ; MenuBorders_RefreshItemBorders
|
---|
| 84 | ; Parameters
|
---|
| 85 | ; SS:BP: Ptr to MENU
|
---|
| 86 | ; Returns:
|
---|
| 87 | ; Nothing
|
---|
| 88 | ; Corrupts registers:
|
---|
| 89 | ; AX, BX, CX, DX, SI, DI
|
---|
| 90 | ;--------------------------------------------------------------------
|
---|
| 91 | ALIGN JUMP_ALIGN
|
---|
| 92 | MenuBorders_RefreshItemBorders:
|
---|
| 93 | call MenuBorders_AdjustDisplayContextForDrawingBorders
|
---|
| 94 | call MenuLocation_GetItemBordersTopLeftCoordinatesToAX
|
---|
| 95 | CALL_DISPLAY_LIBRARY SetCursorCoordinatesFromAX
|
---|
| 96 |
|
---|
[67] | 97 | call MenuBorders_GetNumberOfMiddleCharactersToDX
|
---|
[41] | 98 | jmp SHORT RefreshItemBorders
|
---|
| 99 |
|
---|
| 100 |
|
---|
| 101 | ;--------------------------------------------------------------------
|
---|
[67] | 102 | ; MenuBorders_GetNumberOfMiddleCharactersToDX
|
---|
[41] | 103 | ; Parameters
|
---|
| 104 | ; SS:BP: Ptr to MENU
|
---|
| 105 | ; Returns:
|
---|
| 106 | ; DX: Number of middle border characters when drawing border lines
|
---|
| 107 | ; Corrupts registers:
|
---|
| 108 | ; Nothing
|
---|
| 109 | ;--------------------------------------------------------------------
|
---|
| 110 | ALIGN JUMP_ALIGN
|
---|
[67] | 111 | MenuBorders_GetNumberOfMiddleCharactersToDX:
|
---|
[41] | 112 | eMOVZX dx, BYTE [bp+MENUINIT.bWidth]
|
---|
| 113 | sub dx, BYTE MENU_HORIZONTAL_BORDER_LINES
|
---|
| 114 | ret
|
---|
| 115 |
|
---|
| 116 |
|
---|
| 117 | ;--------------------------------------------------------------------
|
---|
| 118 | ; RefreshTitleBorders
|
---|
| 119 | ; Parameters
|
---|
| 120 | ; DX: Number of times to repeat middle character
|
---|
| 121 | ; SS:BP: Ptr to MENU
|
---|
| 122 | ; Returns:
|
---|
| 123 | ; Nothing
|
---|
| 124 | ; Corrupts registers:
|
---|
| 125 | ; AX, BX, CX, SI, DI
|
---|
| 126 | ;--------------------------------------------------------------------
|
---|
| 127 | ALIGN JUMP_ALIGN
|
---|
| 128 | RefreshTitleBorders:
|
---|
| 129 | call DrawTopBorderLine
|
---|
| 130 | eMOVZX cx, BYTE [bp+MENUINIT.bTitleLines]
|
---|
| 131 | jmp SHORT DrawTextBorderLinesByCXtimes
|
---|
| 132 |
|
---|
| 133 | ;--------------------------------------------------------------------
|
---|
| 134 | ; RefreshInformationBorders
|
---|
| 135 | ; Parameters
|
---|
| 136 | ; DX: Number of times to repeat middle character
|
---|
| 137 | ; SS:BP: Ptr to MENU
|
---|
| 138 | ; Returns:
|
---|
| 139 | ; Nothing
|
---|
| 140 | ; Corrupts registers:
|
---|
| 141 | ; AX, BX, CX, SI, DI
|
---|
| 142 | ;--------------------------------------------------------------------
|
---|
| 143 | ALIGN JUMP_ALIGN
|
---|
| 144 | RefreshInformationBorders:
|
---|
| 145 | call DrawSeparationBorderLine
|
---|
| 146 | eMOVZX cx, BYTE [bp+MENUINIT.bInfoLines]
|
---|
| 147 | jmp SHORT DrawTextBorderLinesByCXtimes
|
---|
| 148 |
|
---|
| 149 | ;--------------------------------------------------------------------
|
---|
| 150 | ; RefreshItemBorders
|
---|
| 151 | ; Parameters
|
---|
| 152 | ; DX: Number of times to repeat middle character
|
---|
| 153 | ; SS:BP: Ptr to MENU
|
---|
| 154 | ; Returns:
|
---|
| 155 | ; Nothing
|
---|
| 156 | ; Corrupts registers:
|
---|
| 157 | ; AX, BX, CX, SI, DI
|
---|
| 158 | ;--------------------------------------------------------------------
|
---|
| 159 | ALIGN JUMP_ALIGN
|
---|
| 160 | RefreshItemBorders:
|
---|
| 161 | call DrawSeparationBorderLine
|
---|
| 162 | call MenuScrollbars_GetMaxVisibleItemsOnPageToCX
|
---|
| 163 | DrawTextBorderLinesByCXtimes:
|
---|
| 164 | mov bx, DrawTextBorderLine
|
---|
| 165 | ; Fall to DrawBorderLinesByCXtimes
|
---|
| 166 |
|
---|
| 167 | ;--------------------------------------------------------------------
|
---|
| 168 | ; DrawBorderLinesByCXtimes
|
---|
| 169 | ; Parameters
|
---|
| 170 | ; BX: Offset to border drawing function
|
---|
| 171 | ; CX: Number of border lines to draw
|
---|
| 172 | ; DX: Number of times to repeat middle character
|
---|
| 173 | ; SS:BP: Ptr to MENU
|
---|
| 174 | ; Returns:
|
---|
| 175 | ; Nothing
|
---|
| 176 | ; Corrupts registers:
|
---|
| 177 | ; AX, CX, SI, DI
|
---|
| 178 | ;--------------------------------------------------------------------
|
---|
| 179 | DrawBorderLinesByCXtimes:
|
---|
| 180 | jcxz .Return
|
---|
| 181 | ALIGN JUMP_ALIGN
|
---|
| 182 | .DrawBordersWithFunctionInBX:
|
---|
| 183 | call bx
|
---|
| 184 | loop .DrawBordersWithFunctionInBX
|
---|
| 185 | .Return:
|
---|
| 186 | ret
|
---|
| 187 |
|
---|
| 188 |
|
---|
| 189 | ;--------------------------------------------------------------------
|
---|
| 190 | ; DrawTopBorderLine
|
---|
| 191 | ; DrawSeparationBorderLine
|
---|
| 192 | ; DrawBottomBorderLine
|
---|
[60] | 193 | ; DrawTimeoutCounterOverBottomBorderLine
|
---|
[41] | 194 | ; DrawBottomShadowLine
|
---|
| 195 | ; DrawTextBorderLine
|
---|
| 196 | ; Parameters
|
---|
| 197 | ; DX: Number of times to repeat middle character
|
---|
| 198 | ; SS:BP: Ptr to MENU
|
---|
| 199 | ; Returns:
|
---|
| 200 | ; Nothing
|
---|
| 201 | ; Corrupts registers:
|
---|
| 202 | ; AX, SI, DI
|
---|
| 203 | ;--------------------------------------------------------------------
|
---|
| 204 | ALIGN JUMP_ALIGN
|
---|
| 205 | DrawTopBorderLine:
|
---|
| 206 | mov si, g_rgbTopBorderCharacters
|
---|
| 207 | call PrintBorderCharactersFromCSSI
|
---|
| 208 | jmp SHORT PrintNewlineToEndBorderLine
|
---|
| 209 |
|
---|
| 210 | ALIGN JUMP_ALIGN
|
---|
| 211 | DrawSeparationBorderLine:
|
---|
| 212 | mov si, g_rgbSeparationBorderCharacters
|
---|
| 213 | jmp SHORT PrintBorderCharactersFromCSSIandShadowCharacter
|
---|
| 214 |
|
---|
| 215 | ALIGN JUMP_ALIGN
|
---|
| 216 | DrawBottomBorderLine:
|
---|
| 217 | mov si, g_rgbBottomBorderCharacters
|
---|
[62] | 218 | test BYTE [bp+MENU.bFlags], FLG_MENU_TIMEOUT_COUNTDOWN
|
---|
| 219 | jz SHORT PrintBorderCharactersFromCSSIandShadowCharacter
|
---|
[41] | 220 |
|
---|
[62] | 221 | call DrawTimeoutCounterString
|
---|
| 222 | sub dx, BYTE MENU_TIMEOUT_STRING_CHARACTERS
|
---|
| 223 | mov si, g_BottomBorderWithTimeoutCharacters
|
---|
| 224 | call PrintBorderCharactersFromCSSIandShadowCharacter
|
---|
| 225 | add dx, BYTE MENU_TIMEOUT_STRING_CHARACTERS
|
---|
[60] | 226 | ret
|
---|
| 227 |
|
---|
| 228 | ALIGN JUMP_ALIGN
|
---|
[41] | 229 | DrawBottomShadowLine:
|
---|
[60] | 230 | mov ax, 1 ; Increment column
|
---|
| 231 | call MenuLocation_MoveCursorByALcolumnsAndAHrows
|
---|
[41] | 232 | inc dx ; Increment repeat count...
|
---|
| 233 | inc dx ; ...for both corner characters
|
---|
| 234 | call PrintShadowCharactersByDXtimes
|
---|
| 235 | dec dx ; Restore...
|
---|
| 236 | dec dx ; ...DX
|
---|
| 237 | ret
|
---|
| 238 |
|
---|
| 239 | ALIGN JUMP_ALIGN
|
---|
| 240 | DrawTextBorderLine:
|
---|
| 241 | mov si, g_rgbTextBorderCharacters
|
---|
| 242 | ; Fall to PrintBorderCharactersFromCSSIandShadowCharacter
|
---|
| 243 |
|
---|
| 244 | ;--------------------------------------------------------------------
|
---|
| 245 | ; PrintBorderCharactersFromCSSIandShadowCharacter
|
---|
| 246 | ; Parameters
|
---|
| 247 | ; DX: Number of times to repeat middle character
|
---|
| 248 | ; CS:SI: Ptr to BORDER_CHARS
|
---|
| 249 | ; SS:BP: Ptr to MENU
|
---|
| 250 | ; Returns:
|
---|
| 251 | ; Nothing
|
---|
| 252 | ; Corrupts registers:
|
---|
| 253 | ; AX, SI, DI
|
---|
| 254 | ;--------------------------------------------------------------------
|
---|
| 255 | ALIGN JUMP_ALIGN
|
---|
| 256 | PrintBorderCharactersFromCSSIandShadowCharacter:
|
---|
| 257 | call PrintBorderCharactersFromCSSI
|
---|
| 258 | push dx
|
---|
| 259 | mov dx, 1
|
---|
| 260 | call PrintShadowCharactersByDXtimes
|
---|
| 261 | pop dx
|
---|
| 262 | ; Fall to PrintNewlineToEndBorderLine
|
---|
| 263 |
|
---|
| 264 | ;--------------------------------------------------------------------
|
---|
| 265 | ; PrintNewlineToEndBorderLine
|
---|
| 266 | ; Parameters
|
---|
| 267 | ; SS:BP: Ptr to MENU
|
---|
| 268 | ; Returns:
|
---|
| 269 | ; Nothing
|
---|
| 270 | ; Corrupts registers:
|
---|
| 271 | ; AX, DI
|
---|
| 272 | ;--------------------------------------------------------------------
|
---|
| 273 | ALIGN JUMP_ALIGN
|
---|
| 274 | PrintNewlineToEndBorderLine:
|
---|
| 275 | CALL_DISPLAY_LIBRARY PrintNewlineCharacters
|
---|
| 276 | ret
|
---|
| 277 |
|
---|
| 278 |
|
---|
| 279 | ;--------------------------------------------------------------------
|
---|
| 280 | ; PrintShadowCharactersByDXtimes
|
---|
| 281 | ; Parameters
|
---|
| 282 | ; DX: Number of shadow characters to print
|
---|
| 283 | ; SS:BP: Ptr to MENU
|
---|
| 284 | ; Returns:
|
---|
| 285 | ; Nothing
|
---|
| 286 | ; Corrupts registers:
|
---|
| 287 | ; AX, SI, DI
|
---|
| 288 | ;--------------------------------------------------------------------
|
---|
| 289 | ALIGN JUMP_ALIGN
|
---|
| 290 | PrintShadowCharactersByDXtimes:
|
---|
| 291 | CALL_DISPLAY_LIBRARY PushDisplayContext
|
---|
| 292 |
|
---|
| 293 | mov si, ATTRIBUTE_CHARS.cShadow
|
---|
| 294 | call MenuAttribute_SetToDisplayContextFromTypeInSI
|
---|
| 295 |
|
---|
[45] | 296 | push bx
|
---|
| 297 | mov bl, ATTRIBUTES_ARE_USED
|
---|
[41] | 298 | mov ax, FAST_OUTPUT_WITH_ATTRIBUTE_ONLY
|
---|
[45] | 299 | CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL
|
---|
| 300 | pop bx
|
---|
[41] | 301 |
|
---|
[67] | 302 | call MenuBorders_PrintMultipleBorderCharactersFromAL ; AL does not matter
|
---|
[41] | 303 |
|
---|
| 304 | CALL_DISPLAY_LIBRARY PopDisplayContext
|
---|
| 305 | ret
|
---|
| 306 |
|
---|
| 307 |
|
---|
| 308 | ;--------------------------------------------------------------------
|
---|
| 309 | ; PrintBorderCharactersFromCSSI
|
---|
| 310 | ; Parameters
|
---|
| 311 | ; DX: Number of times to repeat middle character
|
---|
| 312 | ; CS:SI: Ptr to BORDER_CHARS
|
---|
| 313 | ; SS:BP: Ptr to MENU
|
---|
| 314 | ; Returns:
|
---|
| 315 | ; Nothing
|
---|
| 316 | ; Corrupts registers:
|
---|
| 317 | ; AX, SI, DI
|
---|
| 318 | ;--------------------------------------------------------------------
|
---|
| 319 | ALIGN JUMP_ALIGN
|
---|
| 320 | PrintBorderCharactersFromCSSI:
|
---|
| 321 | cld
|
---|
| 322 | eSEG cs
|
---|
| 323 | lodsb ; Load from [si+BORDER_CHARS.cLeft] to AL
|
---|
| 324 | call MenuBorders_PrintSingleBorderCharacterFromAL
|
---|
| 325 |
|
---|
| 326 | eSEG cs
|
---|
| 327 | lodsb ; Load from [si+BORDER_CHARS.cMiddle] to AL
|
---|
[67] | 328 | call MenuBorders_PrintMultipleBorderCharactersFromAL
|
---|
[41] | 329 |
|
---|
| 330 | eSEG cs
|
---|
| 331 | lodsb ; Load from [si+BORDER_CHARS.cRight] to AL
|
---|
| 332 | ; Fall to MenuBorders_PrintSingleBorderCharacterFromAL
|
---|
| 333 |
|
---|
| 334 | ;--------------------------------------------------------------------
|
---|
| 335 | ; MenuBorders_PrintSingleBorderCharacterFromAL
|
---|
[67] | 336 | ; MenuBorders_PrintMultipleBorderCharactersFromAL
|
---|
[41] | 337 | ; Parameters
|
---|
| 338 | ; AL: Character to print
|
---|
[67] | 339 | ; DX: Repeat count (MenuBorders_PrintMultipleBorderCharactersFromAL)
|
---|
[41] | 340 | ; SS:BP: Ptr to MENU
|
---|
| 341 | ; Returns:
|
---|
| 342 | ; Nothing
|
---|
| 343 | ; Corrupts registers:
|
---|
| 344 | ; AX, DI
|
---|
| 345 | ;--------------------------------------------------------------------
|
---|
| 346 | ALIGN JUMP_ALIGN
|
---|
| 347 | MenuBorders_PrintSingleBorderCharacterFromAL:
|
---|
| 348 | CALL_DISPLAY_LIBRARY PrintCharacterFromAL
|
---|
| 349 | ret
|
---|
| 350 |
|
---|
| 351 | ALIGN JUMP_ALIGN
|
---|
[67] | 352 | MenuBorders_PrintMultipleBorderCharactersFromAL:
|
---|
[41] | 353 | push cx
|
---|
| 354 | mov cx, dx
|
---|
| 355 | CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX
|
---|
| 356 | pop cx
|
---|
| 357 | ret
|
---|
| 358 |
|
---|
| 359 |
|
---|
[60] | 360 | ;--------------------------------------------------------------------
|
---|
[62] | 361 | ; DrawTimeoutCounterString
|
---|
[60] | 362 | ; Parameters
|
---|
[62] | 363 | ; SS:BP: Ptr to MENU
|
---|
| 364 | ; Returns:
|
---|
| 365 | ; Nothing
|
---|
| 366 | ; Corrupts registers:
|
---|
| 367 | ; AX, SI, DI
|
---|
| 368 | ;--------------------------------------------------------------------
|
---|
| 369 | ALIGN JUMP_ALIGN
|
---|
| 370 | DrawTimeoutCounterString:
|
---|
| 371 | call MenuTime_GetTimeoutSecondsLeftToAX
|
---|
| 372 | ; Fall to .PrintTimeoutStringWithSecondsInAX
|
---|
| 373 |
|
---|
| 374 | ;--------------------------------------------------------------------
|
---|
| 375 | ; .PrintTimeoutStringWithSecondsInAX
|
---|
| 376 | ; Parameters
|
---|
[60] | 377 | ; AX: Seconds to print
|
---|
| 378 | ; SS:BP: Ptr to MENU
|
---|
| 379 | ; Returns:
|
---|
| 380 | ; Nothing
|
---|
| 381 | ; Corrupts registers:
|
---|
| 382 | ; AX, SI, DI
|
---|
| 383 | ;--------------------------------------------------------------------
|
---|
[62] | 384 | ;ALIGN JUMP_ALIGN
|
---|
| 385 | .PrintTimeoutStringWithSecondsInAX:
|
---|
[60] | 386 | push bp
|
---|
[41] | 387 |
|
---|
[60] | 388 | xchg di, ax
|
---|
| 389 | mov bp, sp
|
---|
| 390 | call .GetTimeoutAttributeToAXfromSecondsInDI
|
---|
| 391 | mov si, .szSelectionTimeout
|
---|
| 392 | push ax ; Push attribute
|
---|
| 393 | push di ; Push seconds
|
---|
| 394 | CALL_DISPLAY_LIBRARY FormatNullTerminatedStringFromCSSI
|
---|
| 395 | pop bp
|
---|
[62] | 396 | ret
|
---|
[60] | 397 | .szSelectionTimeout:
|
---|
| 398 | db DOUBLE_BOTTOM_LEFT_CORNER
|
---|
| 399 | db DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL
|
---|
| 400 | db "%AAutoselection in %2u s",NULL
|
---|
| 401 |
|
---|
| 402 | ;--------------------------------------------------------------------
|
---|
| 403 | ; .GetTimeoutAttributeToAXfromSecondsInDI
|
---|
| 404 | ; Parameters
|
---|
| 405 | ; DI: Seconds to print
|
---|
| 406 | ; Returns:
|
---|
| 407 | ; AX: Attribute byte for seconds
|
---|
| 408 | ; Corrupts registers:
|
---|
| 409 | ; SI
|
---|
| 410 | ;--------------------------------------------------------------------
|
---|
| 411 | ALIGN JUMP_ALIGN
|
---|
| 412 | .GetTimeoutAttributeToAXfromSecondsInDI:
|
---|
| 413 | mov si, ATTRIBUTE_CHARS.cNormalTimeout
|
---|
[62] | 414 | cmp di, BYTE MENU_TIMEOUT_SECONDS_FOR_HURRY
|
---|
[60] | 415 | eCMOVB si, ATTRIBUTE_CHARS.cHurryTimeout
|
---|
| 416 | jmp MenuAttribute_GetToAXfromTypeInSI
|
---|
| 417 |
|
---|
| 418 |
|
---|
[41] | 419 | ; Lookup tables for border characters
|
---|
| 420 | g_rgbTopBorderCharacters:
|
---|
| 421 | istruc BORDER_CHARS
|
---|
| 422 | at BORDER_CHARS.cLeft, db DOUBLE_TOP_LEFT_CORNER
|
---|
| 423 | at BORDER_CHARS.cMiddle, db DOUBLE_HORIZONTAL
|
---|
| 424 | at BORDER_CHARS.cRight, db DOUBLE_TOP_RIGHT_CORNER
|
---|
| 425 | iend
|
---|
| 426 |
|
---|
| 427 | g_rgbSeparationBorderCharacters:
|
---|
| 428 | istruc BORDER_CHARS
|
---|
| 429 | at BORDER_CHARS.cLeft, db DOUBLE_VERTICAL_TO_RIGHT_SINGLE
|
---|
| 430 | at BORDER_CHARS.cMiddle, db SINGLE_HORIZONTAL
|
---|
| 431 | at BORDER_CHARS.cRight, db DOUBLE_VERTICAL_TO_LEFT_SINGLE
|
---|
| 432 | iend
|
---|
| 433 |
|
---|
| 434 | g_rgbBottomBorderCharacters:
|
---|
| 435 | istruc BORDER_CHARS
|
---|
| 436 | at BORDER_CHARS.cLeft, db DOUBLE_BOTTOM_LEFT_CORNER
|
---|
| 437 | at BORDER_CHARS.cMiddle, db DOUBLE_HORIZONTAL
|
---|
| 438 | at BORDER_CHARS.cRight, db DOUBLE_BOTTOM_RIGHT_CORNER
|
---|
| 439 | iend
|
---|
| 440 |
|
---|
[62] | 441 | g_BottomBorderWithTimeoutCharacters:
|
---|
| 442 | istruc BORDER_CHARS
|
---|
| 443 | at BORDER_CHARS.cLeft, db DOUBLE_RIGHT_HORIZONTAL_TO_SINGLE_VERTICAL
|
---|
| 444 | at BORDER_CHARS.cMiddle, db DOUBLE_HORIZONTAL
|
---|
| 445 | at BORDER_CHARS.cRight, db DOUBLE_BOTTOM_RIGHT_CORNER
|
---|
| 446 | iend
|
---|
| 447 |
|
---|
[41] | 448 | g_rgbTextBorderCharacters:
|
---|
| 449 | istruc BORDER_CHARS
|
---|
| 450 | at BORDER_CHARS.cLeft, db DOUBLE_VERTICAL
|
---|
| 451 | at BORDER_CHARS.cMiddle, db ' '
|
---|
| 452 | at BORDER_CHARS.cRight, db DOUBLE_VERTICAL
|
---|
| 453 | iend
|
---|