A complementing GPU for the Propeller 1
propfox78
Posts: 3
in Propeller 1
I've for some time been entertaining the thought of working on an original/new "late PS1"-era game console. I'm determined that the Propeller chip would be the best choice, but the P1 is way too limited when it comes to graphics output - for such a project.
I'm not overly tech-savvy enough to actually make something like this yet, although I have a rudimentary knowledge of most relevant tech concepts, and I know how to program (Lua, R, Python and C).
What I'm interested in, and have no clue about whatsoever, is how one would add an (open source) GPU to said game console, to compensate for the P1's not-quite-good-enough graphics/video output. That's the main question.
However, now I'm reading that the P2 is in it's final stages of development, and I read that it will support 1080p HD (?) with "true color" support (?). But has it been ultimately decided what the supported/possible color and resolution range will be, and could someone maybe give a few examples of such supported/possible color-resolution setups?
PS. I know this is the P1 subforum, but the question is mainly about the P1, so..
I'm not overly tech-savvy enough to actually make something like this yet, although I have a rudimentary knowledge of most relevant tech concepts, and I know how to program (Lua, R, Python and C).
What I'm interested in, and have no clue about whatsoever, is how one would add an (open source) GPU to said game console, to compensate for the P1's not-quite-good-enough graphics/video output. That's the main question.
However, now I'm reading that the P2 is in it's final stages of development, and I read that it will support 1080p HD (?) with "true color" support (?). But has it been ultimately decided what the supported/possible color and resolution range will be, and could someone maybe give a few examples of such supported/possible color-resolution setups?
PS. I know this is the P1 subforum, but the question is mainly about the P1, so..
Comments
If you want a graphics coprocessor for P1, just add more P1s. No seriously, 3D graphics could scale pretty well when splitting each frame between multiple chips in a scanline-interleave fashion and then using a common video bus to combine them. Look into how LFT's Turbulence demo works. That concept can be easily expanded to multiple chips and higher color depths.
Or, look at the scribble I've attached, maybe that gets the idea across.
Thanks for the reply. I see, so maybe the P1 is more fit for the purpose, given that more P1's can be utilized as a GPU. I've thought about this, that is, that multiple P1's could be used as a GPU (substitute). My question is then how one would transmit and convert any given GPU "result" (i.e. frame to be displayed) to a given digital (or analog) component the chosen display happens to use, and what such kinds of components (and protocols) are called and where one can read and learn about the standards (?).
In the simplest case, it's literally just a bunch of resistors and proper timing. It is really quite simple. Read up on analog video formats (most digital ones work much the same, except more complicated)
If one were to entertain the P2 approach a bit more, wouldn't the lacking amount of RAM be easily solvable by simply adding a SRAM/DRAM (or the alike) module, and simply use that for frambuffer, extra game logic, 3D graphics, etc.? Then you could benefit from a much more simplified layout (?).
It's meant for LCD's, but I think it could also be used for VGA/HDMI with an extra chip...
This is getting me pretty nicely for LCD projects, until P2 arrives in mass...
If you used a tile driver and sprites, you could probably use the P1.
But if you want full-screen bitmaps, probably not.
My latest project uses 256x192 4-colors unique palette (64 colors) every 8x8 pixels and this uses 16K with a 128 character 8x8 font.
Bean