' OpenGl Pong
DefInt I
' Integers start with I DefStr S
' Strings start with S DefSng N
'Singles start with N
' type of data called OBJECT
Const True
= -1, False
= 0, Left
= 19200, Right
= 19712, Escape
= 27 Const Enter
= 13, iPlayer1
= 1, iPlayer2
= 2
Screen lScreen
' graphic creating the window of the program ' wait that window has been created
_Delay 2 'Do While Not _ScreenExists: Loop _Title "OpenGl Pong v.1.0: press Enter to switch between normal vs OpenGl mode"
Init
Do While (iKeyb
(iPlayer1
) <> Escape
) Or (iKeyb
(iPlayer2
) <> Escape
) GetInput
' stardard graphic mode
Border
Showpad iPlayer1
Showpad iPlayer2
ShowBall
Call Message
(1, 1, "press Escape to quit, A/S player 1 Left/Right, cursor Left/Right player 2") ' Else
' GL() graphic mode
' Nothing to do here go to _GL()
' calculations for new screenshot
MovePad
MoveBall
' this toggles between standard graphic mode and Gl graphic mode
If iKeyb
(iPlayer1
) = Enter
Or iKeyb
(iPlayer2
) = Enter
Then iActiveGl
= Not iActiveGl
' saving CPU usage
' area GL--------------------------------------------------------------
ClearScreen
ComponentColor Ball.Color1
If SetColorGL!
(nGc
, nBc
, nRc
, nAc
) Then gXb
= Proportion!
(0, _Width, -1, 1, Ball.X
+ (Ball.Width1
* Cos(e
))) gYb
= Proportion!
(0, _Height, 1, -1, Ball.Y
+ (Ball.Height
* Sin(e
)))
Dim nx1
, nx2
, ny1
, ny2
, dummy
ComponentColor Pad(iPlayer1).Color1
If SetColorGL!
(nGc
, nBc
, nRc
, nAc
) Then nx1
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer1
).X
) ny1
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer1
).Y
) ny2
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer1
).Y
+ Pad
(iPlayer1
).Height
) nx2
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer1
).X
+ Pad
(iPlayer1
).Width1
) dummy = SetColorGL!(nGc, nBc, nRc, nAc)
nx1
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer1
).X
+ 2) ny1
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer1
).Y
+ 2) ny2
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer1
).Y
+ Pad
(iPlayer1
).Height
- 2) nx2
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer1
).X
+ Pad
(iPlayer1
).Width1
- 2)
Dim nx1
, nx2
, ny1
, ny2
, dummy
ComponentColor Pad(iPlayer2).Color1
If SetColorGL!
(nGc
, nBc
, nRc
, nAc
) Then nx1
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer2
).X
) ny1
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer2
).Y
) ny2
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer2
).Y
+ Pad
(iPlayer2
).Height
) nx2
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer2
).X
+ Pad
(iPlayer2
).Width1
) dummy = SetColorGL!(nGc, nBc, nRc, nAc)
nx1
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer2
).X
+ 2) ny1
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer2
).Y
+ 2) ny2
= Proportion
(0, _Height, 1, -1, Pad
(iPlayer2
).Y
+ Pad
(iPlayer2
).Height
- 2) nx2
= Proportion
(0, _Width, -1, 1, Pad
(iPlayer2
).X
+ Pad
(iPlayer2
).Width1
- 2)
Function SetColorGL!
(nGc
, nRc
, nBc
, nAc
) SetColorGL! = False
nGc = Proportion(1, 255, 0, 1, Gc)
nRc = Proportion(1, 255, 0, 1, Rc)
nBc = Proportion(1, 255, 0, 1, Bc)
nAc = Proportion(1, 255, 0, 1, Ac)
SetColorGL! = True
'settings viewport for GL screen
_glViewport myScreen.X
, myScreen.Y
, myScreen.Width1
, myScreen.Height
ComponentColor myScreen.Color1
If SetColorGL!
(nGc
, nRc
, nBc
, nAc
) Then InitGl = False
' area sub/functions*****************************************************
Function Proportion
(imin1
, imax1
, imin2
, imax2
, ivalue
) iDelta1 = (imax1 - imin1)
iDelta2 = (imax2 - imin2)
Proportion = ((ivalue * iDelta2) / iDelta1) + imin2
' window of program
myScreen.X = 0
myScreen.Y = 0
myScreen.Color1
= _RGB32(200, 200, 50) myScreen.Active = True
' ball
Ball.X = 400
Ball.Y = 300
Ball.Active = True
Ball.Width1 = 10
Ball.Height = 10
Ball.SpeedX = 3
Ball.SpeedY = 3
Ball.Color1
= _RGB32(200, 10, 10)
'PAD player1
Pad(iPlayer1).X = 350
Pad(iPlayer1).Y = 400
Pad(iPlayer1).Width1 = 100
Pad(iPlayer1).Height = 30
Pad
(iPlayer1
).Color1
= _RGB32(40, 230, 200) Pad(iPlayer1).SpeedX = 0
Pad(iPlayer1).SpeedY = 0
Pad(iPlayer1).Active = True
'PAD player2
Pad(iPlayer2).X = 350
Pad(iPlayer2).Y = 150
Pad(iPlayer2).Width1 = 100
Pad(iPlayer2).Height = 30
Pad
(iPlayer2
).Color1
= _RGB32(230, 130, 220) Pad(iPlayer2).SpeedX = 0
Pad(iPlayer2).SpeedY = 0
Pad(iPlayer2).Active = True
'Gl
InitGl = True
iBallGl = True
iPadGl1 = True
iPadGl2 = True
iActiveGl = False ' at the start the graphic is normal
' Graphic normal---------------
Line (Pad
(P
).X
, Pad
(P
).Y
)-Step(Pad
(P
).Width1
, Pad
(P
).Height
), Pad
(P
).Color1
, BF
Line (Pad
(P
).X
, Pad
(P
).Y
)-Step(Pad
(P
).Width1
, Pad
(P
).Height
), _RGB32(0), B
Circle (Ball.X
, Ball.Y
), Ball.Width1
, Ball.Color1
Line (myScreen.X
+ 1, myScreen.Y
+ 1)-(myScreen.X
+ myScreen.Width1
- 1, myScreen.Y
+ myScreen.Height
- 1), myScreen.Color1
, BF
' movement and I/O area-----------------------------
If iKeyb
(i
) = Right
Then Pad
(i
).X
= Pad
(i
).X
+ 10 If Pad
(i
).X
> myScreen.Width1
- Pad
(i
).Width1
Then Pad
(i
).X
= myScreen.Width1
- Pad
(i
).Width1
If iKeyb
(i
) = Left
Then Pad
(i
).X
= Pad
(i
).X
- 10 If Pad
(i
).X
< myScreen.X
Then Pad
(i
).X
= myScreen.X
Ball.X = Ball.X + Ball.SpeedX
Ball.Y = Ball.Y + Ball.SpeedY
' bouncing control
'vs walls
If Ball.X
< 0 Then Ball.X
= Int(Ball.Width1
/ 2) + 1: Ball.SpeedX
= -Ball.SpeedX
If Ball.X
> myScreen.Width1
- Int(Ball.Width1
/ 2) + 1 Then Ball.X
= myScreen.Width1
- Int(Ball.Width1
/ 2) + 1: Ball.SpeedX
= -Ball.SpeedX
If Ball.Y
< 0 Then Ball.Y
= Int(Ball.Height
/ 2) + 1: Ball.SpeedY
= -Ball.SpeedY
If Ball.Y
> myScreen.Height
- Int(Ball.Height
/ 2) + 1 Then Ball.Y
= myScreen.Height
- Int(Ball.Height
/ 2) + 1: Ball.SpeedY
= -Ball.SpeedY
' vs player1
If Abs(Pad
(iPlayer1
).Y
+ Int(Pad
(iPlayer1
).Height
/ 2) - (Ball.Y
+ Int(Ball.Height
/ 2))) < Int((Pad
(iPlayer1
).Height
+ Ball.Height
) / 2) Then If Abs((Pad
(iPlayer1
).X
+ Int(Pad
(iPlayer1
).Width1
/ 2)) - (Ball.X
+ Int(Ball.Width1
/ 2))) < Int((Pad
(iPlayer1
).Width1
+ Ball.Width1
) / 2) Then Ball.SpeedY = -Ball.SpeedY
' vs player2
If Abs(Pad
(iPlayer2
).Y
+ Int(Pad
(iPlayer2
).Height
/ 2) - (Ball.Y
+ Int(Ball.Height
/ 2))) < Int((Pad
(iPlayer2
).Height
+ Ball.Height
) / 2) Then If Abs((Pad
(iPlayer2
).X
+ Int(Pad
(iPlayer2
).Width1
/ 2)) - (Ball.X
+ Int(Ball.Width1
/ 2))) < Int((Pad
(iPlayer2
).Width1
+ Ball.Width1
) / 2) Then Ball.SpeedY = -Ball.SpeedY
' it resets command variables
iKeyb(iPlayer1) = 0
iKeyb(iPlayer2) = 0
' keyboard input
' Do: Loop Until _KeyHit = 0
' mouse input
' -->in developing
'joystick input
'-->in developing