Const twidth
= 800, theight
= 600, zoom
= 128 Dim Shared noise
(nn
*twidth
* theight
) '//the noise array Dim Shared texture
(nn
*twidth
* theight
) '//texture array
Dim x
(100), y
(100), letter$
(100) _Title "Letters Invasion B+ mod"
MakePalette 255, 155, 255, 10, 100, 180
GenerateNoise
buildtexture
drawtexture 0
r = r + 1
start:
'_putimage (i , 0)-step(800,600), vs
g = g + 2
Line (0, groundy
)-(800, groundy
), _RGB32(0, colg
, 0) g = 0
Print "Type the letters that fall down" Print "Before they reach the ground!" Print "450 points wins the game." Print "TURN ON CAPS LOCK" Input "Press Enter To Start.", en$
l = 0: ll = 0
tt = 0
score = 0
speed = .1
lives = 5
s$ = "Score: " + score$ + " Lives: " + lives$
amount = 10
timing = 15
i = 0
j = -1
i = i + 5
i = 0
'_Limit 25
'Line (0, 501)-(800, 501), _RGB32(255, 255, 255)
'For skyy = 0 To 500
' col = Int(skyy / 2)
' Line (0, skyy)-(800, skyy), _RGB32(0, 0, col)
'Next skyy
g = g + 2
Line (0, groundy
)-(800, groundy
), _RGB32(0, colg
, 0) g = 0
ll = ll + 1
If letter$
(yy
) <> "" Then y
(yy
) = y
(yy
) + 10
lives = lives - 1
s$ = "Score: " + score$ + " Lives: " + lives$
skip1:
If score
< 320 Then speed
= speed
- .001 score = score + 10
If score
/ 50 = Int(score
/ 50) Then amount
= amount
+ 1 s$ = "Score: " + score$ + " Lives: " + lives$
Print "Y O U W I N ! ! ! ! ! ! ! ! ! !" letter$(check) = ""
skip2:
'_Delay speed
makingletters:
w$ = ""
ll = 0
l = l + 1
y(l) = 5
letter$(l) = a$(tt)
'//interpolation code by rattrapmax6
Sub MakePalette
(sr
, sg
, sb
, er
, eg
, eb
) ' (b+) start and end RGB's ? yes Dim i
, istart
(3), iend
(3), ishow
(3), rend
(3), interpol
(3)
interpol(0) = 255
istart(1) = sr
istart(2) = sg
istart(3) = sb
iend(1) = er
iend(2) = eg
iend(3) = eb
interpol(1) = (istart(1) - iend(1)) / interpol(0)
interpol(2) = (istart(2) - iend(2)) / interpol(0)
interpol(3) = (istart(3) - iend(3)) / interpol(0)
rend(1) = istart(1)
rend(2) = istart(2)
rend(3) = istart(3)
ishow(1) = rend(1)
ishow(2) = rend(2)
ishow(3) = rend(3)
pal
(i
) = _RGB32(ishow
(1), ishow
(2), ishow
(3))
rend(1) = rend(1) - interpol(1)
rend(2) = rend(2) - interpol(2)
rend(3) = rend(3) - interpol(3)
'//generates random noise.
For x
= 0 To nn
*twidth
- 1 noise(x + y * twidth) = zz
'//get fractional part of x and y
Dim fractx
, fracty
, x1
, y1
, x2
, y2
, value
'//wrap around
x1
= (Int(x
) + nn
*twidth
) Mod twidth
y1
= (Int(y
) + theight
) Mod theight
'//neighbor values
x2
= (x1
+ nn
*twidth
- 1) Mod twidth
y2
= (y1
+ theight
- 1) Mod theight
'//smooth the noise with bilinear interpolation
value = 0.0
value = value + fractx * fracty * noise(x1 + y1 * twidth)
value = value + fractx * (1 - fracty) * noise(x1 + y2 * twidth)
value = value + (1 - fractx) * fracty * noise(x2 + y1 * twidth)
value = value + (1 - fractx) * (1 - fracty) * noise(x2 + y2 * twidth)
SmoothNoise = value
initialsize = size
value = value + SmoothNoise(x / size, y / size) * size
size = size / 2.0
Turbulence = (128.0 * value / initialsize)
'//builds the texture.
For x
= 0 To nn
*twidth
- 1 texture(x + y * nn*twidth) = Turbulence(x, y, zoom)
'//draws texture to screen.
c = pal(texture(((x + dx) + y * nn*twidth)))
c
= _rgb(r
- 0.2*y
, g
- 0.2*y
, b
- 0.2*b
) PSet (x
, y
), c
'pal(texture(((x + dx) + y * nn*twidth)))