Log In  

BBS > Community Superblog
All | Following | GIFs | Off-site

Cart #rectacatch-1 | 2020-11-06 | Code ▽ | Embed ▽ | No License
11

Try to catch the moving rectangles in the smallest possible space.
When the space is reduced by 50% the next level becomes available, but you can still make the current one smaller.
The smaller the space, the more points you will get.

v1.1

  • Fixed an issue where not all levels could be reduced by 50%

v1.0

  • Initial version
11
6 comments


Cart #invertedcircle-1 | 2020-11-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


I noticed that people relatively often ask for a way to draw an inverted circle and don't have an easy way to implement it, since it requires a bit of math that can be difficult to derive without experience. I decided to make a quick cart and standalone function to do that! This isn't amazingly efficient, and it only does circles (not ellipses), but it is a drop in function:
Update: new function utilizing trig, faster and now subpixel!

x=x or 64
	y=y or 64
	r=r or 32
	left=left or 0
	right=right or 128
	top=top or 0
	bottom=bottom or 128
	local p=r*6.28
	if(top<y-r)rectfill(left,top,right,y-r,c)
	if(bottom>y+r)rectfill(left,y+r,right,bottom,c)

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=83816#p)
4
2 comments


Cart #amongthestars560-3 | 2020-11-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


small game I made for a #TweetTweetJam

3
0 comments


wobdat="1f00514302d06ee1179c8d34a74033b359e834319ba6504fa4690ade340000"
str_to_mem(wobdat, 0x4300)
mywob = wob_load(0x4300)
function _draw()
cls(mywob.back_col)
wob_draw(mywob)
end

0 comments




Cart #determination-1 | 2020-11-05 | Code ▽ | Embed ▽ | No License
2


Just a fun little thing.

2
0 comments


Cart #bug_anon_inline_func-0 | 2020-11-05 | Code ▽ | Embed ▽ | No License

I'm trying to use anonymous inline functions and I'm finding some weird behavior when they are on tabs.

Putting everything in tab #0 works:

x=1
function _draw()
 cls(1)
 print('x is '..x)
end

(function()
 x=2
end)()

And moving the inline function call to tab #1 works:

x=1
function _draw()
 cls(1)
 print('x is '..x)
end

-->8
(function()
 x=3
end)()

But putting an inline function call on both tab #0 and tab #1 does not work:

x=1
function _draw()
 cls(1)
 print('x is '..x)
end

(function()
 x=2
end)()

-->8
(function()

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=83769#p)
0 comments


Cart #ferukojafo-0 | 2020-11-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

First Cart! I wrote an N queens solver because that was what was in one of my csci classes some time ago.

0 comments




Cart #tunnelmusic-0 | 2020-11-04 | Code ▽ | Embed ▽ | No License
15

I always liked tunnel effects and I wanted to see if I could make one in PICO-8 with a simple method of drawing circles. I think it turned out pretty well. There is the issue of gaps between circles, but this does allow you to see parts of the tunnel further in the distance which I find interesting. I also gained a bit of intuition about shaping behavior with sin/cos and square root functions.

I also decided to try out the music capabilities of PICO-8 for the first time. I was mostly inspired by a track from the game No Time to Explain. I don't remember which one, I have just had parts of the melody floating around in my head for years.

15
3 comments


Checking out a couple of different methods to fill the screen.

cls seem slightly faster than memset. I wonder if the difference is due to the multiplication op, or if there's something else going on...

Cart #scrnfllbnchmrk-1 | 2020-11-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Left/Right switches modes

3
0 comments




Cart #bhapawazi-0 | 2020-11-04 | Code ▽ | Embed ▽ | No License


I know this is utter trash,but I will improve!

0 comments


Cart #juliasetrender-0 | 2020-11-04 | Code ▽ | Embed ▽ | No License
2


This is a Julia set renderer. Not much else to say. The code was based off of the Wikipedia Pseudocode for the Julia Set.
The controls are (X) to zoom out, (Z)/(C) to zoom in, and the arrow keys to adjust the fractal parameters.
Hopefully you can enjoy it!
PS There are probably ways to increase the speed of this program. (This is my third published cartridge and so I'm not too great at pico-8 yet.) Once you zoom to fit the screen it takes ~2 seconds to respond. Feel free to point out changes that can be made.

2
0 comments


Cart #kukafamapa-0 | 2020-11-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

TweetTweetJam 5 is here!

Hey everyone, just wanted to announce that TweetTweetJam 5 is starting very soon.

The jam runs from Nov. 4th ~ 11th.

If you haven't entered before, the rules are simple: make a cart in 560 characters of code or less! No assets are allowed (map/sprite data), get creative with glyph prints instead!

Signup on the itch.io jam page here.

The twitter tag is #tweetTweetJam, and there's a bunch of carts on here (the bbs), itch, and twitter for inspiration.

[ Continue Reading.. ]

4
16 comments



Cart #snatchthewench-1 | 2020-11-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

STORY

Barry Buff - hero for hire (and his accomplice Asami in 2 player) have signed up to escort a princess and her ladies-in-waiting to their home land. Having purchased a map from a local trader, it doesn't take them long to realise that it's fake and has lead them to be helplessly lost in the middle of a wide expanse of plains. Not only that, but they soon realise that they've lost the princess and are now surrounded by some small green folk.

Their leader steps forward. 'We will return to you your princess if you can beat us in a game of Snatch the Wench.'

Our heroes look at each other dumbfounded, and realise that they must have stumbled into Goblin Gardens. There is nothing they can do but comply with the goblins silly game.

[ Continue Reading.. ]

4
2 comments


Cart #dabfugye-0 | 2020-11-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

A small game I attempted to create for the Lowrez jam but lost all motivation to finish on time. Wanted to share this simple adventure with you all here! Enjoy!

3
2 comments


I purchased the bundle of Pico-8 and Voxatron earlier this year, but have since lost my download key in an email purge. I realize now that I never created an account to link to it. Is there any way for me to recover my info so I can re-download them? I emailed the support email a few times, but haven't heard anything back.

1 comment


Hi there !

So I've been practicing Pico8 for the last few weeks, and for my second game I did a little something for Halloween ! This is a simple game fairly inspired by Fruit Ninja, so no complex game design, but I tried to make it as polished and fun to play as possible ! I hope you guys will like it.

[0x0]

You only have to slash as many pumpkins as possible while avoiding to cut the dangerous jack-o'-lanterns ! And if you do, you may have the chance to find candies along your way to heal up a little bit !

If you're interested in what I'll be doing in the future, you can follow me on Twitter !

[ Continue Reading.. ]

5
1 comment


Hello, World!

Cart #cfds_intro_1-0 | 2020-11-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

It's not a lot,
but it's honest glitch.

3
0 comments




Top    Load More Posts ->