Log In  

Cart #46188 | 2017-11-12 | Code ▽ | Embed ▽ | No License
5

This is my second upload (first was only music), though still not exactly a game.

The code looks crazy, and probably isn't the most efficient method, but it works! I'd love any tips on things I could do to improve this. Thanks!

-eth3real

P#46090 2017-11-09 23:00 ( Edited 2018-08-25 00:45)

Nice one! :D

You might wanna try following up with some "clearing" black streaks here & there (or something)?

Coz your effect at the start is great... but when it fills the screen with all green, it's less effective.

But again... a great first "visual" cart! :D

P#46099 2017-11-10 01:31 ( Edited 2017-11-10 06:31)

Looks great! My only suggestion would be to add some "eraser threads" that every once in a while go through a column and fade-erase as they travel through. Maybe use colors 3 to 5 to 1 as the fade colors?

Edit: Haha! Looks like @Liquidream beat me to it. :D

P#46100 2017-11-10 01:33 ( Edited 2017-11-10 06:34)

Thanks @Liquidream! I agree, the trails need to disappear after a bit, but that will be a project for another day, I suppose. :)

P#46103 2017-11-10 01:39 ( Edited 2017-11-10 06:39)

@MBoffin, I was trying to figure out how I could go about "erasing" the streams, your suggestion seems easy enough to implement. Thanks for that!

P#46104 2017-11-10 01:41 ( Edited 2017-11-10 06:55)

This is interesting. I couldn't resist to make my own Matrix screensaver for Pico-8. Uploading my best try so far...

Cart #46132 | 2017-11-11 | Code ▽ | Embed ▽ | No License


Experimental vertical scrolling included (press buttons to enable). Enjoy!

P#46134 2017-11-11 04:08 ( Edited 2017-11-11 09:08)

Nice work @SkyBerron!

I took a slightly different approach, updated the cart at the top. Let me know what you think, everyone! :)

P#46165 2017-11-11 22:54 ( Edited 2017-11-12 03:54)

I think I'm done with this project for a while. I've added a bit of randomness to the number of threads and the length of the tail, and you're able to press Z to reset the program and get new random values. Surprisingly, I'm also happy with how sometimes a thread will overlap another, sometimes in front and sometimes behind, I enjoy the effect it produces.

If anyone else wants to make their own modifications, you're welcome to use my code. I'd love to see how others change this to make it their own!

-eth3real

P#46189 2017-11-12 12:48 ( Edited 2017-11-12 17:50)

looks good! maybe a bit black overall (needs more threads) ?

here's mine from last year:

Cart #24422 | 2016-07-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


not the best but hey, it's a tweetcart!

P#46190 2017-11-12 12:52 ( Edited 2017-11-12 17:56)

Here's a very simple one I made that uses custom 4x4 tiles. It also pops up a progress bar occasionally.

Cart #55533 | 2018-08-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

P#55534 2018-08-23 04:01 ( Edited 2018-08-23 08:01)

I wanna try this.

Cart #55582 | 2018-08-24 | Code ▽ | Embed ▽ | No License

With blippers !

Hold (Z) to speed up.

Ultrabrite, I think you have the most compact one, well done !!

Here is yours with CR so the code can be examined:

n=128
w={}
r=rnd
::s::
for i=1,4096 do
  pset(r(n),r(n),0)
  v=w[i]
  x=i*4-4
  print(8,x,v,3)
  v=v and(v+6)%n or r(n)
  print(8,x,v,6)
  w[i]=v
end
flip()
goto s

UB, is there a web address or site where I can see more Tweetcarts ?

P#55583 2018-08-23 21:02 ( Edited 2018-08-24 01:30)

dw,
there's the old tweetjam 140 thread (https://www.lexaloffle.com/bbs/?tid=3726),
then there's the tweetjam 280 (https://www.lexaloffle.com/bbs/?tid=30213) that got less traction,
probably because it mostly happens on twitter now (#tweetjam & #tweetcart retweetted here thanks to ElGregos https://twitter.com/Pico8Tweetjam). FABULOUS STUFF!

P#55592 2018-08-24 05:22 ( Edited 2018-08-24 09:22)
3

I still screw around with my old tweetcart sometimes.

This is the current version:

Cart #55618 | 2018-08-24 | Code ▽ | Embed ▽ | No License
3

Still not sure about using dark blue, or the flickering I'm doing to try to pretend there are more colors. Looks a bit janky to me. Might be better off with fewer colors and more stable. But that's where it is right now, anyway.

(Side note: I always think of the part where you're zooming through the text, which is why I use parallax and others generally don't. For a static camera shot, parallax is actually wrong, but it's my cart and I do it how I like.😀 What I really need to do is a version where you're literally entering the matrix, ie. moving into the text, but I'm not sure scaled text is a viable option on PICO-8.)

P#55620 2018-08-24 18:43 ( Edited 2018-08-24 22:51)

Now there's an interesting idea you guys just gave me, Felice.

Is it possible to have more colors on the screen than 16 ? Yes. Yes you can, and they won't be striped either.

I actually wrote an article about this, lord well let's see now. I'm this age now, I was 12 when I wrote the article for Call A.P.P.L.E. to show how to double the resolution.

HMM ! Long time ago. Let's see if it'll fly.

Done. Sorta ...

https://www.lexaloffle.com/bbs/?tid=31737

I blame ZEP. I betcha if we had 120fps setting it would work. :)

. . .

UB, I've spent all morning, afternoon and evening looking at and trying to understand the magic coding behind the the amazing TWEETS ! Good stuff !

P#55623 2018-08-24 20:45 ( Edited 2018-08-25 01:13)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 13:19:26 | 0.031s | Q:54