Thanks for those saying they are up for the challenge
@scraggle the media idea is a good one but not sure where I would get media from for that idea
and would prob really limit what people could do with it
The last one i was quite flexible with times and allowed extra time which really didnt benefit the entries
due to unforeseen events. It really just advantaged some but not all. So this time il be much stricter on
times and deadlines. Im really just expecting 2D entries and why i say created from code its easier to
share the code with others and doesnt advantage people who can tween etc beautiful animations
kinda a take on the older coding challenges which used squares, circles etc for game remakes like
space invaders, pacman etc where the code was judged and not the graphics
an example of a plane might be produced like the following
function createPlaneRightFace()
local data as integer [263] =[
0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,
0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0]
dataCount=0
ClearScreen()
for y = 0 to 10
for x = 0 to 23
if data[datacount]=1 then DrawLine(x,y,x,y,255,255,255)
inc dataCount,1
next x
next y
render()
img = getImage(0,0,24,12)
SetImageTransparentColor(img,0,0,0)
endfunction img
the older days people did there creations with data statements
With that said I may allow media yet if that's what everyone prefers ide just like to keep it some
where noobs can come and copy paste run code and learn from it. I find with download links
over time get removed and learners who would love to try them find the link is gone
Il come up with some theme and see what you experts can come up with