[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for managing keyboard.
|
---|
| 3 |
|
---|
| 4 | BUFFER_SIZE_FOR_WORD_INPUT EQU 6 ; 5 chars + NULL
|
---|
| 5 |
|
---|
| 6 | ; Section containing code
|
---|
| 7 | SECTION .text
|
---|
| 8 |
|
---|
| 9 | ;--------------------------------------------------------------------
|
---|
| 10 | ; Reads user inputted word.
|
---|
| 11 | ; Function returns when ENTER or ESC will be pressed.
|
---|
| 12 | ;
|
---|
| 13 | ; Keyboard_ReadUserInputtedWordWhilePrinting
|
---|
| 14 | ; Parameters
|
---|
| 15 | ; BX: Numeric base (10 or 16)
|
---|
| 16 | ; Returns:
|
---|
| 17 | ; AX: User inputted word
|
---|
| 18 | ; ZF: Set if user cancellation
|
---|
| 19 | ; Corrupts registers:
|
---|
| 20 | ; DX
|
---|
| 21 | ;--------------------------------------------------------------------
|
---|
[131] | 22 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 23 | ALIGN JUMP_ALIGN
|
---|
| 24 | Keyboard_ReadUserInputtedWordWhilePrinting:
|
---|
[52] | 25 | push ds
|
---|
| 26 | push si
|
---|
[41] | 27 | push cx
|
---|
| 28 |
|
---|
[52] | 29 | mov cx, BUFFER_SIZE_FOR_WORD_INPUT
|
---|
| 30 | call Memory_ReserveCXbytesFromStackToDSSI
|
---|
[41] | 31 |
|
---|
| 32 | call Char_GetFilterFunctionToDXforNumericBaseInBX
|
---|
[54] | 33 | call Registers_ExchangeDSSIwithESDI
|
---|
[41] | 34 | call Keyboard_ReadUserInputtedStringToESDIWhilePrinting
|
---|
[54] | 35 | call Registers_ExchangeDSSIwithESDI ; Does not modify FLAGS
|
---|
[52] | 36 | jz SHORT .CancelledByUser
|
---|
[41] | 37 |
|
---|
| 38 | call String_ConvertWordToAXfromStringInDSSIwithBaseInBX
|
---|
[52] | 39 | .CancelledByUser:
|
---|
| 40 | add sp, BYTE BUFFER_SIZE_FOR_WORD_INPUT
|
---|
[54] | 41 | test cx, cx ; Set ZF if string length is zero
|
---|
[41] | 42 | pop cx
|
---|
[52] | 43 | pop si
|
---|
| 44 | pop ds
|
---|
[41] | 45 | ret
|
---|
[131] | 46 | %endif
|
---|
[41] | 47 |
|
---|
| 48 |
|
---|
| 49 | ;--------------------------------------------------------------------
|
---|
| 50 | ; Reads user inputted string to buffer. Character filter is
|
---|
| 51 | ; supported to ignore unwanted characters.
|
---|
| 52 | ; Function returns when ENTER or ESC will be pressed.
|
---|
| 53 | ;
|
---|
| 54 | ; Keyboard_ReadUserInputtedStringToESDIWhilePrinting
|
---|
| 55 | ; Parameters:
|
---|
| 56 | ; CX: Buffer size (with NULL)
|
---|
| 57 | ; ES:DI: Ptr to destination buffer
|
---|
| 58 | ; CS:DX: Ptr to character filter function:
|
---|
| 59 | ; Parameters:
|
---|
| 60 | ; AL: Character inputted by user
|
---|
| 61 | ; Returns:
|
---|
| 62 | ; CF: Set if character is accepted
|
---|
| 63 | ; Cleared if character is rejected
|
---|
| 64 | ; Corrupts registers:
|
---|
| 65 | ; Nothing
|
---|
| 66 | ; Returns:
|
---|
| 67 | ; CX: String length in characters (without NULL)
|
---|
| 68 | ; ZF: Set if user cancellation
|
---|
| 69 | ; Corrupts registers:
|
---|
| 70 | ; AX
|
---|
| 71 | ;--------------------------------------------------------------------
|
---|
[131] | 72 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 73 | ALIGN JUMP_ALIGN
|
---|
| 74 | Keyboard_ReadUserInputtedStringToESDIWhilePrinting:
|
---|
| 75 | push di
|
---|
| 76 | push si
|
---|
| 77 | push bx
|
---|
| 78 | call .PrepareDisplayContextForKeyboardInput
|
---|
| 79 | jcxz .ReturnAfterUpdatingZF
|
---|
| 80 |
|
---|
| 81 | xor bx, bx ; Zero character counter
|
---|
| 82 | dec cx ; Decrement buffer size for NULL
|
---|
| 83 | cld
|
---|
| 84 | ALIGN JUMP_ALIGN
|
---|
| 85 | .GetCharacterFromUser:
|
---|
| 86 | call Keyboard_GetKeystrokeToAXandWaitIfNecessary ; Get ASCII to AL
|
---|
| 87 | call .ProcessControlCharacter
|
---|
| 88 | jz SHORT .TerminateStringWithNULL
|
---|
| 89 | jc SHORT .PlayBellForRejectedCharacter
|
---|
| 90 | call dx ; Filter character
|
---|
| 91 | jnc SHORT .PlayBellForRejectedCharacter
|
---|
| 92 | inc bx ; Increment number of characters stored
|
---|
| 93 | stosb ; Store from AL to ES:DI
|
---|
| 94 | call Keyboard_PrintInputtedCharacter
|
---|
| 95 | loop .GetCharacterFromUser
|
---|
| 96 | .PlayBellForRejectedCharacter:
|
---|
[48] | 97 | cmp al, BS ; No bell for backspace
|
---|
| 98 | je SHORT .GetCharacterFromUser
|
---|
[41] | 99 | call Keyboard_PlayBellForUnwantedKeystroke
|
---|
| 100 | jmp SHORT .GetCharacterFromUser
|
---|
| 101 |
|
---|
| 102 | .TerminateStringWithNULL:
|
---|
| 103 | stosb ; Terminate string with NULL
|
---|
| 104 | mov cx, bx ; String length now in CX
|
---|
| 105 |
|
---|
| 106 | .ReturnAfterUpdatingZF:
|
---|
| 107 | CALL_DISPLAY_LIBRARY PopDisplayContext
|
---|
| 108 | test cx, cx ; Clear or set ZF
|
---|
| 109 | pop bx
|
---|
| 110 | pop si
|
---|
| 111 | pop di
|
---|
| 112 | ret
|
---|
| 113 |
|
---|
| 114 | ;--------------------------------------------------------------------
|
---|
| 115 | ; .PrepareDisplayContextForKeyboardInput
|
---|
| 116 | ; Parameters:
|
---|
| 117 | ; Nothing
|
---|
| 118 | ; Returns:
|
---|
| 119 | ; Nothing (Display context pushed to stack)
|
---|
| 120 | ; Corrupts registers:
|
---|
| 121 | ; AX, BX, SI
|
---|
| 122 | ;--------------------------------------------------------------------
|
---|
| 123 | ALIGN JUMP_ALIGN
|
---|
| 124 | .PrepareDisplayContextForKeyboardInput:
|
---|
| 125 | pop bx ; Pop return address to BX
|
---|
| 126 | mov si, di
|
---|
| 127 |
|
---|
| 128 | CALL_DISPLAY_LIBRARY PushDisplayContext
|
---|
| 129 | mov ax, CURSOR_NORMAL
|
---|
| 130 | CALL_DISPLAY_LIBRARY SetCursorShapeFromAX
|
---|
| 131 | CALL_DISPLAY_LIBRARY SynchronizeDisplayContextToHardware
|
---|
| 132 |
|
---|
| 133 | mov di, si
|
---|
| 134 | jmp bx
|
---|
| 135 |
|
---|
| 136 |
|
---|
| 137 | ;--------------------------------------------------------------------
|
---|
| 138 | ; .ProcessControlCharacter
|
---|
| 139 | ; Parameters:
|
---|
| 140 | ; AL: Character inputted by user
|
---|
| 141 | ; CX: Number of bytes left in buffer
|
---|
| 142 | ; BX: Total number of characters inputted
|
---|
| 143 | ; ES:DI: Ptr where to store next character
|
---|
| 144 | ; Returns:
|
---|
| 145 | ; AL: Character inputted by user or NULL if end of input
|
---|
| 146 | ; BX: Cleared if user cancellation
|
---|
| 147 | ; ZF: Set if user has ended or cancelled key input
|
---|
| 148 | ; CF: Set if character is rejected
|
---|
| 149 | ; Corrupts registers:
|
---|
| 150 | ; AH
|
---|
| 151 | ;--------------------------------------------------------------------
|
---|
| 152 | ALIGN JUMP_ALIGN
|
---|
| 153 | .ProcessControlCharacter:
|
---|
| 154 | cmp al, CR ; ENTER to terminate string?
|
---|
| 155 | je SHORT .EndCharacterInput
|
---|
| 156 | cmp al, ESC ; Cancel input?
|
---|
| 157 | je SHORT .CancelCharacterInput
|
---|
| 158 | cmp al, BS ; Backspace?
|
---|
| 159 | je SHORT .Backspace
|
---|
| 160 | jcxz .RejectCharacter
|
---|
| 161 | test al, al ; Clear ZF and CF
|
---|
| 162 | ret
|
---|
| 163 |
|
---|
| 164 | .Backspace:
|
---|
| 165 | test bx, bx ; At the beginning?
|
---|
| 166 | jz SHORT .RejectCharacter
|
---|
| 167 | inc cx ; Increment bytes left
|
---|
| 168 | dec bx ; Decrement characters inputted
|
---|
| 169 | dec di
|
---|
| 170 | call Keyboard_PrintBackspace
|
---|
[48] | 171 | mov al, BS ; Restore character
|
---|
[41] | 172 | .RejectCharacter:
|
---|
| 173 | test al, al ; Clear ZF...
|
---|
| 174 | stc ; ...and set CF
|
---|
| 175 | ret
|
---|
| 176 |
|
---|
| 177 | .CancelCharacterInput:
|
---|
| 178 | xor bx, bx
|
---|
| 179 | .EndCharacterInput:
|
---|
| 180 | xor al, al ; Set ZF and clear CF
|
---|
| 181 | ret
|
---|
[131] | 182 | %endif ; EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 183 |
|
---|
| 184 |
|
---|
| 185 | ;--------------------------------------------------------------------
|
---|
| 186 | ; Keyboard_PrintBackspace
|
---|
| 187 | ; Parameters:
|
---|
| 188 | ; Nothing
|
---|
| 189 | ; Returns:
|
---|
| 190 | ; Nothing
|
---|
| 191 | ; Corrupts registers:
|
---|
| 192 | ; AX
|
---|
| 193 | ;--------------------------------------------------------------------
|
---|
[131] | 194 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 195 | ALIGN JUMP_ALIGN
|
---|
| 196 | Keyboard_PrintBackspace:
|
---|
| 197 | mov al, BS
|
---|
| 198 | call Keyboard_PrintInputtedCharacter
|
---|
| 199 | mov al, ' '
|
---|
| 200 | call Keyboard_PrintInputtedCharacter
|
---|
| 201 | mov al, BS
|
---|
| 202 | jmp SHORT Keyboard_PrintInputtedCharacter
|
---|
[131] | 203 | %endif
|
---|
[41] | 204 |
|
---|
| 205 |
|
---|
| 206 | ;--------------------------------------------------------------------
|
---|
| 207 | ; Keyboard_PlayBellForUnwantedKeystroke
|
---|
| 208 | ; Parameters:
|
---|
| 209 | ; Nothing
|
---|
| 210 | ; Returns:
|
---|
| 211 | ; Nothing
|
---|
| 212 | ; Corrupts registers:
|
---|
| 213 | ; AX
|
---|
| 214 | ;--------------------------------------------------------------------
|
---|
[131] | 215 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 216 | ALIGN JUMP_ALIGN
|
---|
| 217 | Keyboard_PlayBellForUnwantedKeystroke:
|
---|
| 218 | mov al, BELL
|
---|
| 219 | ; Fall to Keyboard_PrintInputtedCharacter
|
---|
[131] | 220 | %endif
|
---|
[41] | 221 |
|
---|
| 222 | ;--------------------------------------------------------------------
|
---|
| 223 | ; Keyboard_PrintInputtedCharacter
|
---|
| 224 | ; Parameters:
|
---|
| 225 | ; AL: Character inputted by user
|
---|
| 226 | ; Returns:
|
---|
| 227 | ; Nothing
|
---|
| 228 | ; Corrupts registers:
|
---|
| 229 | ; AX
|
---|
| 230 | ;--------------------------------------------------------------------
|
---|
[131] | 231 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[41] | 232 | ALIGN JUMP_ALIGN
|
---|
| 233 | Keyboard_PrintInputtedCharacter:
|
---|
| 234 | push di
|
---|
| 235 | CALL_DISPLAY_LIBRARY PrintCharacterFromAL
|
---|
[48] | 236 | CALL_DISPLAY_LIBRARY SynchronizeDisplayContextToHardware ; Hardware cursor
|
---|
[41] | 237 | pop di
|
---|
| 238 | ret
|
---|
[131] | 239 | %endif
|
---|
[41] | 240 |
|
---|
| 241 |
|
---|
| 242 | ;--------------------------------------------------------------------
|
---|
| 243 | ; Keyboard_RemoveAllKeystrokesFromBuffer
|
---|
| 244 | ; Parameters:
|
---|
| 245 | ; Nothing
|
---|
| 246 | ; Returns:
|
---|
| 247 | ; Nothing
|
---|
| 248 | ; Corrupts registers:
|
---|
| 249 | ; AX
|
---|
| 250 | ;--------------------------------------------------------------------
|
---|
| 251 | ALIGN JUMP_ALIGN
|
---|
| 252 | Keyboard_RemoveAllKeystrokesFromBuffer:
|
---|
| 253 | call Keyboard_GetKeystrokeToAX
|
---|
| 254 | jnz SHORT Keyboard_RemoveAllKeystrokesFromBuffer
|
---|
| 255 | ret
|
---|
| 256 |
|
---|
| 257 |
|
---|
| 258 | ;--------------------------------------------------------------------
|
---|
| 259 | ; Keyboard_GetKeystrokeToAX
|
---|
| 260 | ; Keyboard_GetKeystrokeToAXandLeaveItToBuffer
|
---|
| 261 | ; Keyboard_GetKeystrokeToAXandWaitIfNecessary
|
---|
| 262 | ; Parameters:
|
---|
| 263 | ; Nothing
|
---|
| 264 | ; Returns:
|
---|
| 265 | ; AL: ASCII character (if keystroke available)
|
---|
| 266 | ; AH: BIOS scan code (if keystroke available)
|
---|
| 267 | ; ZF: Set if no keystroke available
|
---|
| 268 | ; Cleared if keystroke available
|
---|
| 269 | ; Corrupts registers:
|
---|
| 270 | ; Nothing
|
---|
| 271 | ;--------------------------------------------------------------------
|
---|
| 272 | ALIGN JUMP_ALIGN
|
---|
| 273 | Keyboard_GetKeystrokeToAX:
|
---|
| 274 | call Keyboard_GetKeystrokeToAXandLeaveItToBuffer
|
---|
| 275 | jnz SHORT Keyboard_GetKeystrokeToAXandWaitIfNecessary
|
---|
| 276 | ret
|
---|
| 277 | ALIGN JUMP_ALIGN
|
---|
| 278 | Keyboard_GetKeystrokeToAXandLeaveItToBuffer:
|
---|
| 279 | mov ah, CHECK_FOR_KEYSTROKE
|
---|
| 280 | int BIOS_KEYBOARD_INTERRUPT_16h
|
---|
| 281 | ret
|
---|
| 282 | ALIGN JUMP_ALIGN
|
---|
| 283 | Keyboard_GetKeystrokeToAXandWaitIfNecessary:
|
---|
| 284 | xor ah, ah ; GET_KEYSTROKE
|
---|
| 285 | int BIOS_KEYBOARD_INTERRUPT_16h
|
---|
| 286 | test ax, ax ; Clear ZF
|
---|
| 287 | ret
|
---|