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
|
| #module
#deffunc getbmscr
mref bm, 67
return
#deffunc getcolor array clr
clr.0 = bm.40 & $ff
clr.1 = bm.40>>8 & $ff
clr.2 = bm.40>>16 & $ff
return
#deffunc getpos var p1, var p2
p1 = bm.27
p2 = bm.28
return
#deffunc getwinsize var p3, var p4
p3 = bm.1
p4 = bm.2
return
#global
dim cl,3
screen 1,480,360
getbmscr
color 255,0,0
pos 10,50
gosub *bmpara
screen 0
getbmscr
mes "BMSCR構造体のパラメータ取得"
color 0,0,255
gosub *bmpara
stop
*bmpara
getpos x,y
mes "カレントポジション:x = "+x+", y = "+y
getcolor cl
mes "カラーコード:"+cl.0+" "+cl.1+" "+cl.2
getwinsize w,h
mes "ウィンドウサイズ:横 = "+w+", 縦 = "+h
return
|