Log In  
Follow
ridgek
:: Unfold ::

Cart #nightwave-1 | 2023-08-20 | Code ▽ | Embed ▽ | No License
10

P#133544 2023-08-26 04:15

:: Unfold ::

Cart #modernstyle-1 | 2023-08-14 | Code ▽ | Embed ▽ | No License
7

Originally composed by:
Allister Brimble

P#133056 2023-08-14 16:17 ( Edited 2023-08-17 14:06)

:: Unfold ::

Hi Zep! :)

I'm not sure if this is by design, but it seems printh() resolves paths differently than cstore(), reload(), etc; where printh() does path resolution relative to root_path, while the other funcs resolve paths relative to the running cart.

For example, given the directory structure:

project_dir/
|_dist/
  |_foo.p8
  |_log.p8l
|_utils/
  |_bar.p8

and launching with:

project_dir $ pico8 -root_path ./ ./utils/bar.p8

project_dir/utils/bar.p8:

cstore(0, 0, 0x4300, "./dist/foo.p8") --doesn't write to foo.p8
cstore(0, 0, 0x4300, "../dist/foo.p8") --writes to foo.p8

printh("hello world!", "./dist/log") --writes to log.p8l
printh("hello world!", "../dist/log") --bad log error

I'm not sure which way I think all the funcs should behave, but I'm inclined to say printh() should resolve paths relative to the running cart like the other funcs, because it would probably be less surprises for the user that way.

Anyway, thx for your time!

P#132997 2023-08-13 03:56 ( Edited 2023-08-13 03:56)

:: Unfold ::

Cart #always-3 | 2023-06-22 | Code ▽ | Embed ▽ | No License
21

P#99631 2023-06-23 21:16

:: Unfold ::

Cart #betteroffalone-0 | 2023-06-15 | Code ▽ | Embed ▽ | No License
26

Originally composed by:
Jürgen "DJ Jurgen" Rijkers,
Sebastiaan "Pronti" Molijn,
Eelke "Kalmani" Kalberg,
Judith Anna Pronk

P#90470 2023-06-16 17:07

:: Unfold ::

Cart #galaxyrobo-0 | 2023-06-09 | Code ▽ | Embed ▽ | No License
11

P#80294 2023-06-09 16:31

:: Unfold ::

Cart #hearts_cracked-0 | 2023-04-05 | Code ▽ | Embed ▽ | No License
13

The idea for this cart was inspired by a comment @Liquidream made to me a few months ago. 😂 Enjoy your week, everyone!

P#79229 2023-04-05 01:02 ( Edited 2023-04-05 01:15)

:: Unfold ::

Cart #i_wanna_be_okay-0 | 2023-03-30 | Code ▽ | Embed ▽ | No License
21

I hope everyone is taking good care of themselves. Be safe and have a great weekend! 🙂

P#79228 2023-03-30 08:25 ( Edited 2023-03-30 11:24)

:: Unfold ::

Hi friends,

@Wolfe3D recently asked me to do the soundtrack for his fan game, Teenage Mutant Ninja Turtles in: Shredder's Prevenge. With such an ambitious and impressive project shaping up, how could anyone say no? I'll be posting music here and on radico8 as Wolfe3D releases the corresponding game content. The soundtrack will feature seven songs plus assorted jingles. I'll lead off here with a couple covers I couldn't resist trying to make. I hope you like them!

(This is a totally free, totally non-commercial fan project, all intellectual property contained within the content below belongs to its respective owners. Please don't sue me.)

04/15/2023: Added Title Theme, Go Green Machine!, Uptown Cat Blues, Battlehead, Turtle Tokens.


Tracklist


Title Theme 🌃

Cart #tmntsptitletheme-1 | 2023-05-28 | Code ▽ | Embed ▽ | No License
12

Contains arrangements of the 1987 Teenage Mutant Ninja Turtles theme, originally composed by Chuck Lorre and Dennis Challen Brown.


Main Menu: Go Green Machine! 🛺

Cart #gogreenmachine-1 | 2023-05-28 | Code ▽ | Embed ▽ | No License
12

Contains arrangements of the 1987 Teenage Mutant Ninja Turtles theme, originally composed by Chuck Lorre and Dennis Challen Brown. Cover art is a scan of the NES box art for TMNT II: The Arcade Game.


???


Level 1: Uptown Cat Blues 🎸

Cart #uptowncatblues-1 | 2023-05-28 | Code ▽ | Embed ▽ | No License
12

Contains arrangements of the 1987 Teenage Mutant Ninja Turtles theme, originally composed by Chuck Lorre and Dennis Challen Brown. Cover art is from a Pizza Hut promotional poster for the Coming Out of Their Shells tour.


Boss Theme: Battlehead 💀

Cart #battlehead-2 | 2023-04-09 | Code ▽ | Embed ▽ | No License
12

Controls:

⬅️➡️⬆️⬇️🅾️❎: Play victory jingle

Contains arrangements of boss themes from the arcade games Teenage Mutant Ninja Turtles and Turtles in Time, originally composed by Mutsuhiko Izumi. Cover art is a scan from the Mirage Studios TMNT comics.


Arcade Theme: Turtle Tokens 🕹

Cart #turtletokens-1 | 2023-04-09 | Code ▽ | Embed ▽ | No License
12

Contains arrangements of the 1987 Teenage Mutant Ninja Turtles theme, originally composed by Chuck Lorre and Dennis Challen Brown. Cover art is a screenshot from the 1987 animated series.


Level 2: Sewer Surfin' 🏄‍♂️

Cart #sewersurfin-2 | 2023-02-20 | Code ▽ | Embed ▽ | No License
12

Originally composed by Mutsuhiko Izumi. Cover art is a screenshot from the arcade game, Turtles In Time.


???


???


???


End Credits: Pizza Power 🍕

Cart #pizzapower-2 | 2023-04-09 | Code ▽ | Embed ▽ | No License
12

Originally composed by Bob Bejan and Godfrey Nelson. Cover art is a scan of the Coming Out of Their Shells CD insert.

P#79227 2023-02-20 08:20 ( Edited 2023-06-03 10:04)

:: Unfold ::

Hi Zep! :)

0.2.5g: In non-C-style for loops, if a multi-line comment is opened/closed before the first variable declaration, without trailing whitespace before the variable name, it will throw a syntax error. All other situations seem to be okay:

--[[ok]]foo = --[[ok]]{1}

--ok
for --[[ok]]i=0,1 do
    print(foo[i])
end

for --[[ok]] v in all(foo) do
    print(v)
end

for --[[ok]] k, --[[ok]]v in pairs(foo) do
    print(v)
end

for --[[ok]] k, --[[ok]]v in ipairs(foo) do
    print(v)
end

--not ok
for --[[oops]]v in all(foo) do
    print(v)
end

for --[[oops]]k, --[[ok]]v in pairs(foo) do
    print(v)
end

for --[[oops]]k, --[[ok]]v in ipairs(foo) do
    print(v)
end
P#125822 2023-02-13 21:00 ( Edited 2023-02-13 21:02)

:: Unfold ::

On 0.2.5e, the following message is printed to stdout whenever a cart containing any arbitrary meta section is run:

$ pico8 -run test.p8 
codo_free fail 21 0

test.p8:

pico-8 cartridge // http://www.pico-8.com
version 39
__meta:foo__
bar

Carts seem to run fine, so there don't seem to be any other negative effects.

P#124003 2023-01-10 01:44

:: Unfold ::

Cart #runningout-0 | 2023-01-05 | Code ▽ | Embed ▽ | No License
35

Hi, friends!

Here's a demo featuring 5 glorious channels of lo-fi audio! Making a chipbreak-style tune in Pico-8 has been in the back of my mind ever since @carlc27843 discovered the undocumented PCM channel, and now I can finally check this off my list! After almost 2 years! 😅

All the drums are samples, triggered by watching the tracker with stat(56). The samples are then fed to the PCM channel by monitoring the buffer with stat(108). I'd originally planned on building a 5-channel tracker from this demo, but I had a tough time getting the samples to sync consistently. I'm not sure if that's because of my own shortcomings, or maybe because as @zep literally said, the sync is "not perfect".

For the gfx, the star animations are also triggered by stat(56), whenever a snare sample is played. The road is just one gigantic image using a palette cycle. It looks like this:

Anyway, I had a lot of fun putting this together. I hope you like it! 😃

Special thanks to @pahammond for GEM, which helped keep this cart under the compressed limit!

P#123686 2023-01-05 01:09 ( Edited 2023-01-09 09:34)

:: Unfold ::

Cart #ruwezumuwu-0 | 2022-12-19 | Code ▽ | Embed ▽ | No License
3

Hi Zep! :) I think I found a bug in one of the more esoteric stat calls?

Bug:
According to the manual, stat(56) should return the number of ticks played in the current pattern. Currently (0.2.5e), it seems to poll the leftmost sfx in the pattern for the count. That makes sense bc the overall pattern length is determined by the leftmost sfx which is not a loop, but as the title says, stat(56) will reset back to 0 early if the leftmost sfx is a loop.

Expected behavior:
stat(56) should return the number of pattern ticks played regardless of looped sfx

Thanks for your time! :)

P#76244 2022-12-19 23:41 ( Edited 2022-12-19 23:43)

:: Unfold ::

Cart #strangersagain-0 | 2022-12-15 | Code ▽ | Embed ▽ | No License
15

I was going to wait to post this until the weekend, but I have no self-control. 😅 Enjoy the rest of your week, everyone!

P#121314 2022-12-15 23:43

:: Unfold ::

Cart #hearwhatihear-0 | 2022-12-11 | Code ▽ | Embed ▽ | No License
6

P#122267 2022-12-12 01:42

:: Unfold ::

Cart #hangingon-1 | 2022-12-13 | Code ▽ | Embed ▽ | No License
18

Here's another new song! Have a great weekend! 😃

P#122103 2022-12-09 17:16 ( Edited 2022-12-13 10:51)

:: Unfold ::

Cart #beautifulrunaway-0 | 2022-11-27 | Code ▽ | Embed ▽ | No License
21

This one is short but sweet. I hope you enjoy it! 😊

P#121486 2022-11-27 18:17

:: Unfold ::

Cart #dragondeity-0 | 2022-11-24 | Code ▽ | Embed ▽ | No License
10

One last chiptune. I hope you like it! 😀

P#121318 2022-11-24 14:19 ( Edited 2022-12-19 12:23)

:: Unfold ::

Cart #thegodhandisreal-1 | 2022-11-22 | Code ▽ | Embed ▽ | No License
9

One more! 😅

P#121148 2022-11-22 03:20 ( Edited 2022-11-22 14:29)

:: Unfold ::

Cart #aurapower-0 | 2022-11-21 | Code ▽ | Embed ▽ | No License
16

Hi everyone, I wrote this song over the weekend, I hope you like it! 😀

P#121087 2022-11-21 00:44

View Older Posts
Follow Lexaloffle:          
Generated 2023-09-30 06:17:08 | 0.119s | Q:97