Log In  

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

How to use

Open the music editor, select the specified INSTRUENTS_ID, and then copy and paste the --[[pod_type="instrument"]] line below.

## elec bass
--[[pod_type="instrument"]]unpod("b64:bHo0AG4AAABsAAAA8F17aW5zdHJ1bWVudD1weHUAAygAAgAABAABEAYPIBABIAEgAfAAAhACDhABIA8hIAEwD0CQDxECEA8UDzAAATAPERAR4AIIIA9QYA9C8IsPKA_0CvAEBA8zDzAJ8K0P_AoP-w_AD-cPDQHwCH0=")

## metal scratch
--[[pod_type="instrument"]]unpod("b64:bHo0AJUAAACTAAAA8IR7aW5zdHJ1bWVudD1weHUAAygAAgAABAABEAYPIAARIAEgAfAAAhAGDiEgDyEAD-8AAeAPEQIgDyUAATAFD9AAAgHgDxICIA8vUAUPMAACATAPLJACCKAPRvBrDygP--AGDygPXA8ZsAIQCQ8SDw8QX_kv5A--D8QPjw9qD1UPHw8P8IkP_AoP-w_AD-cPDQHwCH0=")

## buzz bass
--[[pod_type="instrument"]]unpod("b64:bHo0AI4AAACVAAAA9TN7aW5zdHJ1bWVudD1weHUAAygAAgAABAABEAYPGBABIAEgAfAAAhACDyAQASAPISABIAQPfwABcA8RAhAEDycAATAiABESIgBwD-QQAeAPEx4AEA4eAPAlDBAB8AAJIA8_IA_j8E8PKA--8AUFD3EPOA808AQMD3APXw8o8JUP_AoP-w_AD-cNAfAIfQ==")

[ Continue Reading.. ]

4
4 comments


When typing, if a key is released quickly (looks like it's only if it's released in the same frame it's pressed, but not 100% sure) after being pressed, it won't be registered. I'm running into this due to parts of my keyboard layout sending rapid press/release events that are almost always ignored. If I add a delay so the events are spaced out by ~25ms, they start registering reliably. In other words, I suspect Picotron is doing something like this each frame:

# Process key events
keymap = {}
for event in events:
    if event.type == "key_up":
        keymap[event.key] = false
    elif event.type == "key_down":
        keymap[event.key] = true

# Now handle events
if keymap[...]:
    do_keypress()

Not sure whether this reproduces on other OSes, but I think this would also manifest itself as dropped keypresses when running at very low framerates. I haven't been able to validate that theory yet though.

1 comment


Hello !!

I'm learning to code, but I quickly find myself getting sidetracked by trying to implement things I haven't seen in the games I've played yet, and ultimately, I end up wasting a lot of time starting over.

I would like to hear your thoughts on Pico-8, what has helped you progress the most? Was it blind development like I'm attempting without any prior experience? Did you follow tutorials or take courses? Did you look at the code of a game you like to try to understand and learn from it?

Specifically, if you were to start Pico-8 programming today with the hindsight you have now, how would you begin?

Thanks in advance.

1
6 comments


Cart #eigenbom_ray_fs-0 | 2024-04-10 | Embed ▽ | No License
2


This is a fullscreen version of Picotron raytracer, originally created by @eigenbom. It was made since the original windowed version might mess Picotron's desktop wallpaper or theme used by user. It uses vid(3) mode and draws on 1/3 of the screen, and also it draws in slightly more fps. IDK tho, how to move it to the center of the screen.

2
0 comments


Cart #pizzabomb-0 | 2024-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


Cart #pizzabomb-0 | 2024-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


Cart #pizzabomb-0 | 2024-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

5
2 comments


by
Cart # | | Embed ▽ | No License | Edit

0 comments


This is a general purpose geometry/vector library.

It's based on Geometric Algebra (GA) but you don't need to know what that is to use it as most of the standard vector operations you're probably familiar with are here.

I'd be happy to add additional demos (with credit obviously) so if you make something interesting that you want to include let me know.

Updates

2024-04-21


2024-04-14

  • Added 3D forward kinematics demo
  • Added 4D hypercube rotation demo
  • Switched to [m] to return to menu. *Edit* It works now! You can navigate back to the menu on the web player and switch back and forth among the demos.

2024-04-10

  • Added a 2D forward kinematics demo
  • Changed to 'space' instead of 'tab' to return to the menu (Hopefully it works better with the web player.) *Edit* It does not.
  • Fixed a minor error in rotor_from_to which resulted in things rotating the wrong way. There may be other errors like this lurking so if anyone notices things transforming in ways they don't expect, please let me know!

[ Continue Reading.. ]

22
4 comments


Cart #helloworld_moonvixn-0 | 2024-04-09 | Code ▽ | Embed ▽ | No License
3

I'm just getting into PICO-8, so this post is largely just me saying Hello World :)

Here's what I have to show (in the best way) for the past few days of learning how to develop in PICO-8 - tutorials have been super useful and I love what I've seen of the community so far!

x to yap with a star effect

arrow keys to walk

hold o + arrow to zoom with rainbow effect

This cart uses snippets from @shy's blog post on animating sprites and @atzlochtlan's Particle Effects cart (thank you!)

💜

3
0 comments


____ SPACE ROGUE! ____


Embark on a mission to destroy the enemy aliens!!!!!

Upgrade your ships weapons as you power up in this Space Invader/Roguelite mash-up!

How many enemies can you defeat before re-upgrading your ship?

UPDATE 1.3:

The new update for Space Rogue! adds more core mechanics to make the game be the roguelite that it is! This update adds replay value and provides a foundation for future upgrades & enemies!!!

-- NEW post run shop upgrades!!! Continue your run after your death with an upgraded ship!

  • Triple shot!: Fire three bullets at once!
  • Upgrade your maximum shield capacity!
  • Unlock a power-up that will re-fill your shields to max level. Handy for long runs!

-- Balanced enemy spawns and added a NEW enemy type!!! (this one shoots back!)
-- New sprite for the ships bullets. Adds little more imagination than a yellow brick :)
-- New soundtrack!!! (This one has a bass line! :O)

Also changed up the coding for the way the game handles enemy collision, weapon collision, upgrade logic etc... This will make adding more upgrades & enemies in the future less of a task!

Have fun!

[ Continue Reading.. ]

10
3 comments


Cart #apibrowser-0 | 2024-04-09 | Code ▽ | Embed ▽ | No License
3

Pico-8 A-Z: A Pretty API Browser for You and Me

> A Tool by ★ iiviigames
Follow on Twitch!

∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧

How to Use the Api Browser 1.0

∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧∧

> Save this bad boy to the local unit for optimum effectiveness...

Simply 𝘵𝘢𝘬𝘦 𝘺𝘰𝘶𝘳 𝘵𝘪𝘮𝘦 𝘢𝘯𝘥 𝘩𝘪𝘵 𝘵𝘩𝘰𝘴𝘦 𝘢𝘳𝘳𝘰𝘸 𝘬𝘦𝘺𝘴, 𝘢𝘯𝘥 𝘭𝘰𝘰𝘬 𝘪𝘯𝘵𝘰 t𝘩𝘦 𝘢𝘱𝘪.

  • ➡️ / ⬇️ to move forward
  • ⬅️ / ⬆️ moves backwards

> NOTE: This cart saves a log to the desktop for your ♥

Featurez

T𝘩𝘪𝘴 𝘱𝘳𝘰𝘨𝘳𝘢𝘮 𝘸𝘪𝘭𝘭 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺 𝘸𝘳𝘪𝘵𝘦 𝘢𝘯 𝘢𝘭𝘱𝘩𝘢𝘣𝘦𝘵𝘪𝘤𝘢𝘭 𝘪𝘯𝘥𝘦𝘹 𝘰𝘧 𝘵𝘩𝘦 𝘧𝘶𝘯𝘤𝘵𝘪𝘰𝘯𝘴 𝘢𝘴 𝘵𝘩𝘦𝘺 𝘸𝘦𝘳𝘦 𝘢𝘵 𝘵𝘩𝘦 𝘳𝘶𝘯𝘵𝘪𝘮𝘦, saving directly to the desktop for easy access!

T𝘰 𝘥𝘪𝘴𝘢𝘣𝘭𝘦 𝘵𝘩𝘪𝘴 𝘣𝘦𝘩𝘢𝘷𝘪𝘰𝘳, 𝘨𝘰 𝘵𝘰 𝘵𝘩𝘦 𝘭𝘢𝘴𝘵 𝘵𝘢𝘣, 𝘢𝘯𝘥 𝘴𝘦𝘵 writeapi 𝘵𝘰 false.

A𝘴 𝘧𝘰𝘳 𝘵𝘩𝘦 𝘱𝘳𝘰𝘨𝘳𝘢𝘮'𝘴 𝘧𝘦𝘢𝘵𝘶𝘳𝘦𝘴...

  • I'𝘷𝘦 𝘪𝘮𝘱𝘭𝘦𝘮𝘦𝘯𝘵𝘦𝘥 𝘢 𝘯𝘪𝘤𝘦 𝘱𝘢𝘥𝘥𝘪𝘯𝘨 𝘧𝘦𝘢𝘵𝘶𝘳𝘦, 𝘢𝘴 𝘸𝘦𝘭𝘭 𝘢𝘴 𝘵𝘩𝘦 𝘰𝘱𝘵𝘪𝘰𝘯 𝘵𝘰 𝘭𝘪𝘮𝘪𝘵 𝘵𝘩𝘦 𝘯𝘶𝘮𝘣𝘦𝘳 𝘰𝘧 𝘪𝘵𝘦𝘮𝘴 𝘱𝘦𝘳 𝘱𝘢𝘨𝘦.
  • B𝘺 𝘴𝘦𝘵𝘵𝘪𝘯𝘨 itemsperpage 𝘵𝘰 1, 𝘧𝘰𝘳 𝘦𝘹𝘢𝘮𝘱𝘭𝘦, 𝘺𝘰𝘶 𝘸𝘪𝘭𝘭 𝘴𝘪𝘮𝘱𝘭𝘺 𝘴𝘦𝘦 𝘰𝘯𝘦 𝘧𝘶𝘯𝘤𝘵𝘪𝘰𝘯 𝘢𝘵 𝘢 𝘵𝘪𝘮𝘦, 𝘢𝘯𝘥 𝘵𝘩𝘦 𝘱𝘢𝘨𝘪𝘯𝘢𝘵𝘪𝘰𝘯 𝘪𝘯𝘧𝘰 𝘸𝘪𝘭𝘭 𝘳𝘦𝘧𝘭𝘦𝘤𝘵 𝘵𝘩𝘦 𝘵𝘰𝘵𝘢𝘭 𝘯𝘶𝘮𝘣𝘦𝘳 𝘰𝘧 𝘧𝘶𝘯𝘤𝘵𝘪𝘰𝘯𝘴 𝘸𝘪𝘵𝘩𝘪𝘯 𝘵𝘩𝘦 P𝘪𝘤𝘰-8 API as a whole.

Why I Made This

This tool was created to quickly scan through the pico-8 api, & has many use cases for myself, as I'm the fella' who maintains the stylish though unofficial API site at:

[ Continue Reading.. ]

3
0 comments


cast:

  • change dimension of userdata buffer for 2d operations
buffer=userdata("u8",4096)
-- get a 8x8 sprite out of it
sprite=cast(buffer,"u8",8,8,1040)

note: not sure how GC can track these chunks - ok to have that as weak references only.

  • matmul with stride
    align with other userdata operations

  • all ops to allow for source index
    use case: array of vectors referenced by index
big_array=userdata(‘f64’,4,500)
….
indices = userdata(‘i32’, 4)
indices:set(0, 3,89,0,75)
out=big_array:matmul(m, indices)
  • min/max
    note: can be done with sort (but overkill)

  • dot:
    cannot operate on partial userdata
2
1 comment


Dani is late and needs to hurry! Help him make it through the desert without dying!

This is my first game using Pico 8 and my first time using Lua. Feedback is welcome!

Cart #dani_run-0 | 2024-04-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

11
7 comments


🄿🄸🄲🄾🄿🄷🄾🄽🄴

PicoPhone is a lightweight open-source multi tool widget designed to run in Picotron's desktop2 and to use as less CPU as possible. https://github.com/369px/PicoPhone

It aims to completely replace your smartphone and give you back the focus you need while completing your gems. Just load #phone in the Picotron terminal to get started!

Latest version: 0.5.35


PicoPhone is now open-source!
Feel free to commit changes!

NEW: Automatic updates at boot-up!

PicoPhone now checks the BBS for updates!
So you never miss the latest features.
I've made a video on how I auto-update here:
https://www.youtube.com/watch?v=88nRTLXdAGs

NEW MiniApp: Control Panel!

Do the boring stuff with a click!

[ Continue Reading.. ]

42
9 comments


Cart #pong_wars-0 | 2024-04-09 | Embed ▽ | License: CC4-BY-NC-SA
13

A simple animated wallpaper or screensaver. Two sides locked in an eternal battle.

The two colors are taken from your current desktop theme.

Inspired by the web version by Koen van Gilst, with some code snippets being adapted from it.

Save as wallpaper

If you haven't already, create a user wallpaper directory in /appdata/system. Changes to the system wallpapers won't persist across a reboot.

cp /system/wallpapers /appdata/system/wallpapers

Load and save the cart.

load #pong_wars
save /appdata/system/wallpapers/

Save as screensaver

If you haven't already, create a user screensaver directory in /appdata/system. Changes to the system screensavers won't persist across a reboot.

[ Continue Reading.. ]

13
1 comment


(Access it from BBS with load #miditron-0)

Miditron!

The first midi-to-picotron conversion tool!

This tool allows you to convert .mid or .midi files into .sfx files used by the Picotron synth tracker.
Just drag and drop the desired midi onto the window, and voila! Your midi is transformed into a .sfx file, conveniently placed onto your sfx folder in your current cart~

Beware!! The tool is pretty barebones though! And far, far from perfect. So you might encounter glitched tracks and have to manually adjust patterns and tracks to fit the desired results.

Some handy tips for adjusting your midi files for an optimal result would be:

  • Use only 2/4, 3/4 and 4/4 meters; These meters are the most optimally supported by the tool
  • Avoid odd-numbered sections of the song (sections are separated by time signature change or tempo change)
  • Avoid using .midi with too many simultaneous notes/instruments (Picotron only supports 8 a time)

[ Continue Reading.. ]

17
4 comments


A phone keypad to make some tunes with.

The number keys play different notes, and the */# keys are drums.

Controls:

  • Arrows: Select digit
  • O: Enter digit
  • X: Delete (hold to clear box)

Cart #rideseyuyi-1 | 2024-04-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
0 comments


Cart #jawpaper-2 | 2024-04-09 | Embed ▽ | License: CC4-BY-NC-SA
1

Want to get seasick while coding in Picotron? I got you covered! I made a Picotron wallpaper based on my latest PICO-8 game Jaw.

Make sure you have already created your personal system folder inside Picotron and copy jawpaper.p64.png to appdata/system/wallpapers/ and/or appdata/system/screensavers/

Go to the system settings inside Picotron and select "jawpaper" as wallpaper or screensaver.

Enjoy.

Update 2024-04-09: Added Icon and metadata.

1
0 comments


This is my attempt at making a cartridge around an event!

Cart #eclipse-0 | 2024-04-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

3
1 comment


Cart #potato_peel-0 | 2024-04-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

this game has a nice peel..

controls:

  • Up and Down = move the knife/stick
  • hold c = move faster vertically

Lore:

After years of practice this now is the final exam, bob has to make it. After failing school, work and college, his only choice was clear. To eat potatoes, that would make him grow bigger and stronger, or so he thought. Life is hard, it was a constant pressure on him, he could not rest a minute. that's how busy he was, peeling potatoes. The problem was there, bob didn't have a proper peeler, or a knife. He had to use a stick (don't ask how its possible). The potatoes were weird as well, there were only huge ones. In fact, he was standing on the potatoes. But after years of training and hard work, it finally came to him. He knew the perfect job for him. So he applied for a job at peelstation, you know, the place where they make potato games. But here comes the twist. His parents were actually giraffes. But to him, it didn't matter, his goal is clear. He needs to get a 100% on this test, otherwise he isn't the potato master. Just imagine the consecutive, it would be eternal shame. This here is the moment, can YOU make it ?

[ Continue Reading.. ]

13
6 comments


Cart #hakpazhu-3 | 2024-09-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

BE ADVISED:

Pursuant to recent directives, all able-bodied citizens over the age of seven are strongly encouraged to engage in our government-sanctioned directional input training simulation. Here, with dedication and diligence, you will undertake rigorous exercises designed to sharpen your combat abilities to their utmost potential. Mastering precise weapon deployment isn't just a task; It's a solemn vow to safeguard our nation's sovereignty and ensure victory. Your unwavering commitment to this endeavor is the embodiment of our collective devotion to defense, security, and the long reach of democracy.

ATTENTION : If your device lacks Pico-8 compatibility, it is your duty to promptly report to the 'Super Earth Treason Tribunal' for further assessment and potential rectification. Your compliance is appreciated.

[ Continue Reading.. ]

11
5 comments




Top    Load More Posts ->