QB64.org Forum
Active Forums => Programs => Topic started by: FellippeHeitor on March 08, 2020, 09:31:43 pm
-
So there's this guy, Chris DeLeon, that makes these fast-coding videos to promote his online courses, and I recently watched the video in which he wrote a functional Snake game in 4 minutes and 30 seconds. Of course we're not counting the time he spent practicing it before hitting record on his camera, and I don't judge him if he has a cheat sheet right in front of him. The thing is, this is impressive because it's so simple and I wanted to port it over to QB64. Here's the result.
The video in which he writes this in 4m 30s:
Original code in JavaScript: https://pastebin.com/Z3zhb7cY
DIM px
, py
, gs
, tc
, ax
, ay
, xv
, yv
, tail
, i
DIM trail
(1000) AS position
px = 10
py = 10
gs = 20
tc = 20
ax = 15
ay = 15
tail = 1
trail(i).x = px
trail(i).y = py
xv = 0
yv = -1
xv = 0
yv = 1
xv = -1
yv = 0
xv = 1
yv = 0
px = px + xv
py = py + yv
'bg
'snake
LINE (trail
(i
).x
* gs
, trail
(i
).y
* gs
)-STEP(gs
- 2, gs
- 2), RGB32(55, 161, 61), BF
IF trail
(i
).x
= px
AND trail
(i
).y
= py
THEN tail
= 5
trail(tail).x = px
trail(tail).y = py
trail(i) = trail(i + 1)
'apple
tail = tail + 1
LINE (ax
* gs
, ay
* gs
)-STEP(gs
- 2, gs
- 2), RGB32(255, 0, 0), BF
-
Not too far from where Ron77 started from here: https://www.qb64.org/forum/index.php?topic=1106.0
-
Can you spot the difference in approaches?
-
Like using Type and real graphics?
Inkey$ instead of keydown
Neither one checks to see if the new food is in snake body, I think.
-
That too.
-
lines 24-28 odd?
Oh he is doing wrap arounds at boundries.
I should play the thing instead of read code, also looks like body starts at 5.
Doesn't look like snake dies if crashes into body, gets shorter back to 5
Dim k inside a do loop is dumb.
The snake is imortal it doesn't die going back on itself either.
Did I get them all?
Does gs stand for game scale?
Something is wrong with key response a slight delay by 1 frame.