-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDRAW.BAS
61 lines (50 loc) · 983 Bytes
/
DRAW.BAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
''
' DRAW - DRAW.BAS
' =============================================================================
' Main program.
'
' @depends ./_ALL.BI
' @depends ./_ALL.BM
' @author Rick Christy <[email protected]>
'
'$INCLUDE:'./_ALL.BI'
' Main Loop
DIM k AS LONG
DO:
k& = _KEYHIT
LOOP_start
MOUSE_input_handler
KEYBOARD_input_handler
STICK_input_handler
_LIMIT CFG.FPS_LIMIT%
SCREEN_render
MOUSE_input_handler_loop
KEYBOARD_input_handler_loop
STICK_input_handler_loop
LOOP_end
LOOP UNTIL k&=27
MAIN_shutdown
''
' Runs at the start of the loop before any other code
'
SUB LOOP_start ()
END SUB
''
' Runs at the end of the loop just before next iteration
'
SUB LOOP_end ()
END SUB
''
' Runs at shutdown of main program
'
SUB MAIN_shutdown ()
_MOUSESHOW
SCREEN 0
CLS
_FREEIMAGE SCRN.CANVAS&
_FREEIMAGE SCRN.PAINTING&
_FREEIMAGE SCRN.GUI&
_FREEIMAGE SCRN.CURSOR&
SYSTEM
END SUB
'$INCLUDE:'./_ALL.BM'