'Air Hockey v2-1.bas for QB64
' Started in QB64 Walter fork version (B+=MGA) 2017-09-05
' The first version was a direct translation from SmallBASIC,
' Now v2.0 add some more graphic image handling, try new things.
' 2020-03-11 v2-1 (QB64 v1.4 now) cleanup some code:
' Fix _MOUSEINPUT block too newbie ;)
' Fix flat spots on strikers how long have they been there?
' Increase frames per sec and slow puck speed for less double images.
' Oh that sped up the AI player! Nice.
' Do start shots to the side instead of directly at goal. MUCH BETTER!
' Update opening screen with this info. Now pause the puck at start.
' Ran OPTION _EXPLICIT and found a type-O that has been 0 all this time!
' v2020-03-23 Dark Theme as suggested by Danlin also fix fill circle with color
' also lighten color around the puck, oh fix the rest of the _rgb to rgb32.
CONST xmax
= 1200, ymax
= 700 'screen dimensions _TITLE "Air Hockey v2020-03-23 Dark Theme"
CONST pr
= 16 ' puck radius CONST pr2
= 2 * pr
' puck diameter = bumper width = radius of strikers CONST tl
= xmax
' table length CONST tw
= tl
/ 2 ' table width CONST tw13
= .3333 * tw \
1 'goal end point CONST tw23
= .6667 * tw \
1 'goal end point CONST speed
= 15 ' puck speed also see _limit in main loop CONST midC
= 316 ' (tl - 2 * pr2) \ 4 + pr2 'mid line of computer's sin field CONST rangeC
= 252 ' 316 - 252 = 64 (bumper + pr2) 316 + 252 = 568 (mid screen - pr2)
COMMON SHARED f&
, table&
, computer
, player
, s$
, tx
, px
, py
, pa
, psx
, psy
, c1
, csx
, csy
, strkr&
f&
= _LOADFONT("C:\Windows\Fonts\arial.ttf", 25) ' arial normal style if you have windows_FONT f&
' arial is pretty common if you don't have Windows
drawTable
strkr&
= _NEWIMAGE(2 * pr2
+ 1, 2 * pr2
+ 1, 32) ' more space to avoid right and bottom flat edgesstriker pr2, pr2
cp 7, "Air Hockey, first to score 21 goals wins!"
cp 9, "Player you will be defending the goal on the right (a black slot)."
cp 10, "Your goal is on the left, defended by the computer."
cp 12, "The puck will be started going up and down in the middle of"
cp 13, "the screen at slight angle towards a randomly selected goal."
cp 16, "Press any when ready..."
updateScore
drawComputerStriker
drawPlayerStriker
initball
WHILE player
< 21 AND computer
< 21 ' play until someone scores 21 updateScore
drawComputerStriker
drawPlayerStriker
drawPuck
_LIMIT 60 '<<<<<<<<<<<<< slow down, speeed up as needed for good game IF computer
> player
THEN ' last report s$ = "Game Won by Computer."
tx = 450
s$ = "Game Won by Player!"
tx = 470
SUB initball
'toss puck out to side slightly angled to one goal or the other px
= tl
/ 2: py
= tw
/ 2: pao
= _PI(1 / 10) * RND puck px, py
s$
= "Computer: " + STR$(computer
) + SPACE$(67) + "Player: " + STR$(player
)
shade = 64 + i / pr2 * 100
LINE (i
, i
)-(tl
- i
, tw
- i
), , BF
LINE (pr2
, pr2
)-(tl
- pr2
, tw
- pr2
), _RGB32(190, 230, 255), BF
'field LINE (pr2
, pr2
)-(tl
- pr2
, tw
- pr2
), _RGB32(50, 0, 50), BF
'field LINE (pr
, tw13
)-(pr2
, tw23
), _RGB32(60, 60, 60), BF
LINE (tl
- pr2
, tw13
)-(tl
- pr
, tw23
), _RGB32(60, 60, 60), BF
LINE (tl \
2 - 1, pr2
)-(tl \
2 + 1, tw
- pr2
), _RGB32(128, 128, 128), BF
IF psx
- pr2
< tl
/ 2 THEN psx
= tl
/ 2 + pr2
IF psx
+ pr2
> tl
- pr2
THEN psx
= tl
- 2 * pr2
IF psy
- pr2
< pr2
THEN psy
= 2 * pr2
IF psy
+ pr2
> tw
- pr2
THEN psy
= tw
- 2 * pr2
csx
= midC
+ rangeC
* SIN(c1
) IF px
> csx
THEN csy
= py
+ pr2
* 1.5 * SIN(c1
) IF csy
- pr2
< pr2
THEN csy
= 2 * pr2
IF csy
+ pr2
> tw
- pr2
THEN csy
= tw
- 2 * pr2
'update ball x, y and see if hit anything
px
= px
+ speed
* COS(pa
) py
= py
+ speed
* SIN(pa
)
IF tw13
< py
- pr
AND py
+ pr
< tw23
THEN 'through computer slot, player scores player = player + 1
updateScore
drawTable
striker csx, csy
striker psx, psy
puck pr, py
shade = 64 + i / pr2 * 100
LINE (i
, tw13
)-(pr
, tw23
), , BF
' wow tw13 has been 0 snd 1200, 200
snd 2200, 300
initball
snd 2600, 8
px = pr2 + pr
computer = computer + 1
updateScore
drawTable
striker csx, csy
striker psx, psy
puck tl - pr, py
shade = 64 + i / pr2 * 100
LINE (tl
- pr
, tw13
)-(tl
- i
, tw23
), , BF
't13 again! snd 2200, 300
snd 1200, 200
initball
snd 2600, 5
px = tl - pr2 - pr
IF py
- pr
< pr2
THEN ' hit top boundry snd 2600, 8
pa = -pa
py = pr2 + pr
IF py
+ pr
> tw
- pr2
THEN ' hit bottom boundry snd 2600, 8
pa = -pa
py = tw - pr2 - pr
IF SQR((px
- psx
) ^ 2 + (py
- psy
) ^ 2) < (pr
+ pr2
) THEN 'contact player striker pa
= _ATAN2(py
- psy
, px
- psx
) 'boost puck away
px
= px
+ .5 * speed
* COS(pa
) py
= py
+ .5 * speed
* SIN(pa
) snd 2200, 4
IF SQR((px
- csx
) ^ 2 + (py
- csy
) ^ 2) < (pr
+ pr2
) THEN 'contact computer striker pa
= _ATAN2(py
- csy
, px
- csx
) 'boost puck away
px
= px
+ .5 * speed
* COS(pa
) py
= py
+ .5 * speed
* SIN(pa
) snd 2200, 4
puck px, py ' here it is!
fillcirc x
, y
, pr
, _RGB32(160, 160, 160) fillcirc x
, y
, pr
- 4, _RGB32(190, 100, 0)
shade
= 164 - 90 * SIN(i
* _PI(2) / pr
) fillcirc x
, y
, i
, _RGB32(shade
, shade
, shade
) shade = 185 + 70 * (pr - i) / pr
fillcirc x
, y
, i
, _RGB32(shade
, shade
, shade
)
'Steve McNeil's copied from his forum note: Radius is too common a name
RadiusError = -subRadius
X = subRadius
Y = 0
' Draw the middle span here so we don't draw it twice in the main loop,
' which would be a problem with blending turned on.
LINE (CX
- X
, CY
)-(CX
+ X
, CY
), C
, BF
RadiusError = RadiusError + Y * 2 + 1
LINE (CX
- Y
, CY
- X
)-(CX
+ Y
, CY
- X
), C
, BF
LINE (CX
- Y
, CY
+ X
)-(CX
+ Y
, CY
+ X
), C
, BF
X = X - 1
RadiusError = RadiusError - X * 2
Y = Y + 1
LINE (CX
- X
, CY
- Y
)-(CX
+ X
, CY
- Y
), C
, BF
LINE (CX
- X
, CY
+ Y
)-(CX
+ X
, CY
+ Y
), C
, BF
SOUND frq
/ 2.2, dur
* .01
'1200 pixels / 85 characters = 14.11 pixels/char wide
'700 pixels / 28 lines = 18.42 pixels / char high
x
= (xmax
- 11 * LEN(s$
)) \
2 y = lineNum * 25