Asmusr Posted May 25 Author Share Posted May 25 (edited) To get us started, here's my first idea for an effect. It could still be refined a lot, e.g. the boxes could grow and shrink, but you'll get the idea. (Please don't post any videos of this effect.) 2PSCROLL Edited May 25 by Asmusr 8 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5473555 Share on other sites More sharing options...
PeteE Posted May 25 Share Posted May 25 Here are some links to C64 demos that I'm looking at for inspiration. https://www.youtube.com/watch?v=v9kr8Ie5YPw https://www.youtube.com/watch?v=GxxbcFqTdX8 https://www.youtube.com/watch?v=R7QL6-MrDnk https://www.youtube.com/watch?v=qBVCv1NN0Ek https://www.youtube.com/watch?v=WYFPjSvxZpo 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5473810 Share on other sites More sharing options...
PeteE Posted May 26 Share Posted May 26 This is the effect I've been working on. The placeholder image and text would need to be replaced, but the code seems to work well enough. (No videos please) sinetxt8.bin 9 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5474124 Share on other sites More sharing options...
Asmusr Posted May 26 Author Share Posted May 26 3 hours ago, PeteE said: This is the effect I've been working on. The placeholder image and text would need to be replaced, but the code seems to work well enough. (No videos please) Very nice. It has that "How did he do that?" quality. 1 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5474179 Share on other sites More sharing options...
+mizapf Posted May 26 Share Posted May 26 RPK for MAME (gromemu type). sinetxt.rpk 2 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5474224 Share on other sites More sharing options...
RamonB5^dSr Posted May 26 Share Posted May 26 I've always believed that the MSX1 and TI systems are quite compatible in terms of technical capabilities. Following @PeteE lead, I explored some MSX demos for inspiration. 4 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5474556 Share on other sites More sharing options...
Asmusr Posted May 31 Author Share Posted May 31 On 5/26/2024 at 11:44 PM, RamonB5^dSr said: I've always believed that the MSX1 and TI systems are quite compatible in terms of technical capabilities. Following @PeteE lead, I explored some MSX demos for inspiration. We already borrowed a lot of stuff from those demos for the first demo, but keep in mind that the Z80 is generally faster than the TMS9900. I like the last plasma effect of 'Invasion Of The Big Pixels' and I'm not sure know how they did it. I'm currently thinking about an isometric scroller that could be fed either from generated or stored data. It wouldn't be smooth, but maybe quite fast? 3 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5477734 Share on other sites More sharing options...
Asmusr Posted May 31 Author Share Posted May 31 Another idea I have thought about for years: Implement the ultimate algorithm for converting an image to the 9918A taking into account that you can have 4 additional sprites per scanline. We will run out of sprites after 128 scanlines, but then we can switch to another sprite attribute table. The picture is from an old demo of mine where you see 48 sprites on the screen at the same time. 5 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5477746 Share on other sites More sharing options...
MueThor Posted June 1 Share Posted June 1 (edited) Dear Asmusr, Your idea reminds me of following rhetorical question I asked the member Tursi a few years ago: Tursi's answer was following: If your idea is meant this way, then please go ahead. Kind regards Edited June 1 by MueThor Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478007 Share on other sites More sharing options...
Tursi Posted June 1 Share Posted June 1 13 hours ago, Asmusr said: Another idea I have thought about for years: Implement the ultimate algorithm for converting an image to the 9918A taking into account that you can have 4 additional sprites per scanline. We will run out of sprites after 128 scanlines, but then we can switch to another sprite attribute table. The picture is from an old demo of mine where you see 48 sprites on the screen at the same time. I think there are a couple of image converters that attempt this. The main issue I see is once you commit to a sprite, you've committed for at least 8 scanlines - whether there's pattern on those lines or now, it will contribute to the four sprites on a line limit. So basically, for each character row, you can get 4 8x8 pixel single color overlays. Will it help? Yeah! But automating it to be the best possible is a challenge. My brute force concepts are defeated by this, since you've got 4*8*8*15*256 possible layouts. (4 sprites, 8 rows of 8 pixels, one of 15 colors, and one of 256 positions.). Made even more complex when you consider that you are applying that to the existing pixel layouts - and how you lay out those pixels can be impacted by the sprite selection. You can get more coverage with double-size 16x16 sprites, of course, but it also commits you for 16 rows. The commit might be controllable by changing the sprite table, but since most register changes take a couple of scanlines, I wonder if it's possible to do that to any value. Anyway, that's why I don't want to tackle it. My code is pure brute force and we aren't brute enough yet for that. A genetic algorithm running on a GPU could potentially do a good job though! (I've seen this done on the C64, actually, it's stunning to watch ) 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478129 Share on other sites More sharing options...
Asmusr Posted June 1 Author Share Posted June 1 (edited) 10 hours ago, Tursi said: I've seen this done on the C64, actually, it's stunning to watch Could you post a link? Edited June 1 by Asmusr Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478373 Share on other sites More sharing options...
Asmusr Posted June 1 Author Share Posted June 1 I would like to encourage anyone to post suggestions for demo effects that you like, no matter how impossible they might seem. Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478381 Share on other sites More sharing options...
Tursi Posted June 2 Share Posted June 2 10 hours ago, Asmusr said: Could you post a link? Unfortunately, no. One of my Imagineer friends did it after seeing my image converter, so I've only seen it run live. I don't think I was ever able to finagle the code from him I did have the non-GPU version of it.. I remember it took a good 20-30 hours to converge. The GPU was done in seconds and you could watch it live. Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478584 Share on other sites More sharing options...
+OLD CS1 Posted June 2 Share Posted June 2 Would some of the dancing outline effects used in the "State of the Art" Amiga demo by Spaceballs be too pedestrian for a TI demo? What about the motion video stuff done for "9 Fingers" from the same group? Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478894 Share on other sites More sharing options...
Tursi Posted June 2 Share Posted June 2 1 hour ago, OLD CS1 said: Would some of the dancing outline effects used in the "State of the Art" Amiga demo by Spaceballs be too pedestrian for a TI demo? What about the motion video stuff done for "9 Fingers" from the same group? Ahh, dancing outlines was what I was planning to do. If you've already started, go ahead. 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478938 Share on other sites More sharing options...
+OLD CS1 Posted June 2 Share Posted June 2 12 minutes ago, Tursi said: Ahh, dancing outlines was what I was planning to do. If you've already started, go ahead. Not me. I do not have the time to do any demo work, and I still have other projects to do before I start playing. I was asking more for a measure of opinions toward effects. Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5478945 Share on other sites More sharing options...
sometimes99er Posted June 3 Share Posted June 3 🤨 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479128 Share on other sites More sharing options...
sometimes99er Posted June 3 Share Posted June 3 🙂 3 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479130 Share on other sites More sharing options...
sometimes99er Posted June 3 Share Posted June 3 Tons of ZX Spectrum demos seem to be a good source of inspiration. However some ZX Spectrum 128k demos have more colors and get out of the 8 pixel restriction. 😐 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479133 Share on other sites More sharing options...
TheMole Posted June 3 Share Posted June 3 5 hours ago, sometimes99er said: 🤨 Wait, what? Does anyone have any idea how this is done? Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479231 Share on other sites More sharing options...
Asmusr Posted June 3 Author Share Posted June 3 (edited) 1 hour ago, TheMole said: Wait, what? Does anyone have any idea how this is done? It could be F18A. That YouTube channel has a few other F18A videos. But it's hard to see because the video is so grainy. Edited June 3 by Asmusr Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479292 Share on other sites More sharing options...
ti99iuc Posted June 3 Share Posted June 3 I would like to dream a state of the art dancing woman on the ti99 but maybe it has a too much low resolutiion for that kind of graphics. 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479503 Share on other sites More sharing options...
+OLD CS1 Posted June 3 Share Posted June 3 52 minutes ago, ti99iuc said: I would like to dream a state of the art dancing woman on the ti99 but maybe it has a too much low resolutiion for that kind of graphics. Considering what has been done for "Bad Apple" on the 4A, I suspect otherwise. In fact, regarding "State of the Art," I imagine the dancing outlines could be stored as vectors. 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479543 Share on other sites More sharing options...
ti99iuc Posted June 3 Share Posted June 3 Maybe i missed something... Bad Apple was not a digital grab only? Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479566 Share on other sites More sharing options...
Tursi Posted June 4 Share Posted June 4 5 hours ago, ti99iuc said: Maybe i missed something... Bad Apple was not a digital grab only? Mine was, but there are better ones 1 1 Quote Link to comment https://forums.atariage.com/topic/366197-would-anyone-be-interested-in-working-on-another-mega-demo/page/3/#findComment-5479718 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.