I've made a math games for my Daughter.
I am did not want to focus on the art side (not my strong point). So I have heavily modified the Jelpi demo (just kept the sound and the beloved Jelpi).
Dear @zep is it ok if I use jelpi and his music for this cartridge?

Hi I have made a quick python script to turn an square picture to a string of text that can the be parsed by pico8 to make a nice splashscreen.


Pico8 code
function txt_to_pic(txt)
local d={
a=10,
b=11,
c=12,
d=13,
e=14,
f=15
}
d['0']=0
d['1']=1
d['2']=2
d['3']=3
d['4']=4
d['5']=5
d['6']=6
d['7']=7
d['8']=8
d['9']=9
local x=0
local y=0
for i=0,#txt do
if x>128 then
x=0
y+=1
end
c=d[sub(txt,i,i)]
pset(x,y,c)
x+=1
end
end |
And here is the python script (just replace "me.jpg" by your image):
import numpy
import PIL
#%%
img = PIL.Image.open("me.jpg")
img = img.resize((128,128))
imgarr = numpy.array(img)
newimg=numpy.array(img)
img.resize((128*10,128*10))
[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=69552#p) |

A highly realistic simulation of Brexit negotiations. Enjoy the riveting and exciting career of a Brexit Prime Minister. Only you can do this, because no one else wants to deal with it.
I have not seen any 'political satire' games here, so I hope its a good precedent. There is very contextually implied nsfw material which is based on real events and quotes.

Following the vein of word quiz animals I have now made another version.
Code wise it now enables to use funcitons instead of sprites.
The drawing function do not use any global variable besides the tick number (tick+=1 every _update()).
Any suggestions would be welcome.
To do:
better mainpage.
MOAR shapes.






0 comments



