Log In  
Page:
1
2


So I've made a few carts now, and am enjoying the hell out of it. Primarily for the joy of just building things, but also for the implicit little bit of roleplaying involved: I'm not just programming a game, I'm programming a game for a fictional console from another universe, from another time. I'm not just me, really; I'm the company that would have existed to be producing these things. I'm some scrappy no-budget third-party game dev concern from alternate universe 198X.

And a game company needs a brand identity.

And so: I came up with a name and drew a logo, and wrote up a little basically self-contained function to do a quick splash screen render, using a single 2*2 sprite:

Cart #12182 | 2015-08-02 | Code ▽ | Embed ▽ | No License
62

The notion is, I can take this and paste it into any cart I release with just a little bit of futzing to make it the first thing the cart does on boot before moving onto normal game state stuff. At ~200 tokens its not as slim as it could be, but for most carts that won't be an issue and stripping it down to a simpler static splash would work in a pinch.

Anyway, it was fun to make, but beyond that I just like the idea, and I think it's be a great little community thing to see this idea adopted more generally. Sort of establish the odd little universe we've all opted into by adopting the constraints of PICO 8, fleshing out an ad hoc hodgepodge of fictional companies in a fictional market.

62


I love it.

You guys really lucked into that Dune license!


can I recommend that any demos here restart the animation on btnp(z)? that could be used in the actual game carts to progress to the next scene, but for here makes it easier to rewatch.

Edit: @joshmillard, you can also reduce your token count by a lot by subtracting cx and cy from the camera (and removing the vars entirely, since they only get referenced in that one place).


7

This seemed like a small enough challenge to get me to finally make a cartridge.

Cart #12240 | 2015-08-04 | Code ▽ | Embed ▽ | No License
7

Full Disclosure, I kinda kept your overall style, cortex (and reused your basic code framework).

it was a neat little exercise to get me playing with sprites, (bite-sized) animations, sfx, and some of the basics of the update/draw functionality.

I'm not terribly attached to the logo or the silly "game company" name, but I can just pretend it's 198x and my little company needs some MARKETING HYPE and hired some game-dev wannabe off the street to whip up a Sweet Logo ASAP, and this is what was created (and likely only cost like 25 bucks)

EDIT: version 2 without the shaky shaky


Ha, nice!


7

Cart #12223 | 2015-08-03 | Code ▽ | Embed ▽ | No License
7


yeah this was fun to do :p


5

Cart #12225 | 2015-08-03 | Code ▽ | Embed ▽ | No License
5

I also had fun with this one. I'll have to add it to a real project soon :)

(animation is adapted from one I found online)


These are rad. Y'all are collectively rad.


I started to make mine.. and discovered the glory of FLIP()

Looking at some of the code for these, they look like they could be simpler using FLIP() to "post" instead of hooking into the _update() _draw() functions. It would also simplify pasting into other carts one makes.


oh, interesting! can you elaborate how to use flip?


1

flip() shows whatever is in the back buffer and then waits for the next frame to start.
So, if you want to make an easily pasteable chunk of code (instead of having to modify both _update and _draw), you could do something like:

function do_intro()
  local i=0
  while (btn() == 0) do
    cls()
    rect(0,i,127,i,7)
    i=(i+1)%128
    flip()
  end
end
do_intro() -- could be called from anywhere

9

I couldn't resist. At roughly 270 tokens, this is way too big (and I only made a half a**ed attempt to optimize it), but it was a lot of fun creating it.

Cart #12286 | 2015-08-04 | Code ▽ | Embed ▽ | No License
9


3

Cart #12316 | 2015-08-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


yay sort of ocean noise


Ha, that's a great use of the noise waveform.


9

Cart #12347 | 2015-08-06 | Code ▽ | Embed ▽ | No License
9

I have this weird feeling I've seen a cursor turn into a door before. I should probably instead do some gnarly 80s chrome effect.


while that logo is awesome - if the option is "gnarly 80s chrome" I think you know what the correct choice is


8

You're right!

Cart #12359 | 2015-08-06 | Code ▽ | Embed ▽ | No License
8

This is from when the company money is all going to cocaine and shoulder pads.


That's fantastic.


Clever use of drawing over the logo to destroy it.


beautiful!!


See, we should be able to do cool stuff like this without being super using up code space. You see how big that silly SDG animation is??


5

Here's my quick and dirty entry / experiment. 10 hipster points to the first one to recognize the logo.

Press 'A' to break things by loading a cart you don't have access to. Yay cartridge chaining.
EDIT: Orrrrr just reboot. Forgot that loads fail silently. :I

Cart #12443 | 2015-08-08 | Code ▽ | Embed ▽ | No License
5


3

Here is a splash screen I made for the upcoming 48 hour game programming competition, Ludum Dare (http://ludumdare.com/compo/)

I took out the sound because I'm not good at making sound effects

Cart #12635 | 2015-08-13 | Code ▽ | Embed ▽ | No License
3


Ha, that's a faboo joystick sprite.

I wish this Ludum Dare were literally any other weekend; I've been Some Day-ing LD for years now and finally feel like I have the right toolset now with Pico 8, but I'll be completely distracted visiting friends out of state.


2

Stumbled upon this thread and thought this would be a fun way to get started with the quirks of Pico-8.
Ended up using flip() and making it a stand-alone function.

Cart #12903 | 2015-08-22 | Code ▽ | Embed ▽ | No License
2


5

Cart #12905 | 2015-08-23 | Code ▽ | Embed ▽ | No License
5

Fun!


2

I think this is a great idea, and so i made a little something !

Cart #12937 | 2015-08-23 | Code ▽ | Embed ▽ | No License
2

I'll try to add it to my next game !


Yay, new logos! Dead Channel in particular hits a special spot for me.


not a logo... but i made a quick and dirty tape loader.
Feel free to steal and abuse

Cart #15897 | 2015-10-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


ver 0.2:
Cart #15900 | 2015-10-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


These are all really brilliant!


Cart #16085 | 2015-11-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Just a little experiment in not using up sprite slots for the boot sequence. (TODO: Don't use up sfx slots either...)

It reads in the necessary sprites from a gigantic string instead. (Also, I wish you could type \n without having to use an external editor... I don't like my gigantic string all being on one line.)

I'm not entirely sure, but since my boot function is anonymous and all the variables are local to it, does that mean they also all get cleared out of Lua RAM once the function completes it's run? No need to waste tokens cleaning up, no leftover giant data strings clogging Lua RAM.


1

Maybe this counts...naw.

Cart #16087 | 2015-11-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Ha ha ha, amazing reference. :P


5

Here is my contrbution !

Cart #16117 | 2015-11-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


2

This is the best splash screen.

Cart #16286 | 2015-11-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

EDIT: Fixed an inaccuracy in the "rainbow additives" segment that made the animation appear too bright.
EDIT2: Fixed a minor delay inaccuracy that was twice as long as it should've been. Who would've thought this thing had such fine details?


Agreed, and thank you very much for posting that.
Now to have some fake glitch fun >:3


This thread is very cool :)

But how do I post my cart here? I tried "Submit" and "Preview" but I there's no option to send a cart :(

I know PICO-8 carts are just png files so I tried uploading one on the "Preview" using the "Insert image" option page but nothing happens.


When you submit a cart, there's a BBC tag in the new post it generates for you.
Copy that, and you can post the thing anywhere on the BBC.
As for saving them, right click the icon on the player and click "save as"


3

Thanks, @fruckert

Here's my contribution :)

Warning: the code is a mess

Cart #16192 | 2015-11-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


2

Hi, everyone!!

I want to start publishing Pico-8 cartridges. I'm learning how to code and develop with this awesome framework, its a little bit hard for me but I'm making progresses.

I published two games with GameMaker and this is my logo, i hope you like it!

Cart #16203 | 2015-11-04 | Code ▽ | Embed ▽ | No License
2

:-)


5

Cart #16288 | 2015-11-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

A Pico Jr. boot screen, maybe..? Ha ha.


I'm some scrappy no-budget third-party game dev concern from alternate universe 198X.

You can now be alternate universe LJN.


2

Last night, this made me wanting to recode a bit for Pico, but havning next to no imagination, I decided to redo something I did years ago.

Cart #21233 | 2016-05-24 | Code ▽ | Embed ▽ | No License
2


With a little bit of context, this was the logo of a programming duo (and later a bigger group) I was part when I was doing C programming for Casio Fx-9860 series (graphical calculators). This was suppsoed to be our intro, but as we never succeeded into making a decent grayscale engine based on CPU timers (would crash all the time for unknown/undebugable reasons), we dropped it...

Edit : Oh, by the way, as the logo mockup I did 6 years ago, the binary stuff means something, pass it under an bin->ascii program! o/
Edit2 : Slightly smaller code (I suppose), less tokens used and a little optimization for the new version. Here's the previous one.

Cart #21226 | 2016-05-24 | Code ▽ | Embed ▽ | No License
2


1

I made a splash for a project I'm working on! Working on this gave me a little motivation to play around with Pico more often :)


I'll definitely play around with animations and such, but for now I'm keeping it simple! (especially because the project I'm doing could get complicated, so I don't want to risk wasting space on a big intro until I know I have the space to spare)


Cart #23181 | 2016-06-19 | Code ▽ | Embed ▽ | No License

been toying with ideas for a logo for quite a while and finally got this idea! probably need a little meowing sound fx and compress the sprite count but otherwise i'm happy :)

also been thinking about implementing something like scale2x to make the logo bigger (while keeping the sprite count low)


catnipped: I put together a Scale2x/3x implementation a while ago but never released it. Just threw it up here


wow thanks! :)


Couldn't you use sspr() instead of manually scaling?

Edit: Oh, do you mean smart scaling? If so, never mind. :)


My attempt:

Cart #23245 | 2016-06-19 | Code ▽ | Embed ▽ | No License

Very slim on tokens thanks to Zep's tip, but maybe heavy on sprites?

Edit: The sound doesn't seem to come out quite right in the web player for some reason. Or maybe I just misheard at first? Not sure.


will probably keep the old one, but this is what it looks like with scale 2x (only fattened the pixel font to get rid of some artifacts). will definitely use the algorithm for a full game some time :)


Page:

[Please log in to post a comment]