Hey all,
I've been working on something for like the past 14 months...and I'm at the point where I think it just might be of use to a few of us.
It's actually more of a library than an engine, but 'Elbesem Library' doesn't quite sound as cool as 'Elbesem Engine' 😛
Well anyway, in the past I noticed that the Saturn dev community has some of the most dedicated coders I've personally ever seen...but let's face it, we're all pretty scattered about the globe here. So the main purpose of this is to try and allow one person to throw together a program faster than they could having to go the regular SGL route.
I just think of it as Lego blocks for Saturn dev. Awww heck, enough talk, here's what's supported:
- Paletted & 32K sprites (3 types).
* Basic sprites are just tiles...not animated in any way.
* Extra sprites are just frame animated...(kinda like the guys cheering in the backround of street fighter 2.
* Advanced sprites are totally animated, you can move, rotate, scale...whatever.
[Much thanks to CyberwarriorX for this, if it weren't for his code I never would've gotten paletted sprites]
- CD loading of everything supported.
- 256 scrollplaned (3 types).
* Basic is just a normal scroll plane, no rotation of any kind.
* Extra is just a Z rotation scrollplane.
* Advanced is an XYZ rotation scrollplane.
- Texture animation.
- 3D sprites.
- Light source animation.
- Camera animation.
- Sound animation (Thanks Rockin' - B!!!!!, your tools made it all possible).
- BASIC CDDA playback.
- Support for the digital & analog controller, and the Virtuagun.
- Support for the Ramcart (4 or 1).
- Support for Bitmaps.
Uh, I think that's just about it
But there is some stuff I just can't figure out:
- MIDI support (totally freakin' stumped...)
- Relative motion for the camera, 3d sprites, and 2d sprites (The option for 'movement_relative' in there DOES NOT WORK!!).
- Gouraud shading (sorry, but I just like flat-shaded graphics, I think its got more character 😀 )
- Linescrolls (I just haven't even tried yet).
So that's where I'm at.
Throw the files 'E2_def.h' and 'E2.lib.h' into the same directory as your source code, and you're all set to use the routines in your own code. I tried my best to document everything in those files so that you could figure out how to use things easily. But if there's enough interest, I'll probably just write a manual.
Anyway, when you unzip everything you're gonna see a folder called 'Toolkit' This has all you need in the way of file converters for use with the engine (as far as loading from CD). The tools output all data in ASCII format. Yeah I know I could've used binary, but this is a learning engine and I figured once everything was up and running properly then we could use binary files. Oh yeah, whatever you do...DON'T PROVOKE THE TOOLS!! There's very little error checking in them cause I thought I'd be the only one who'd ever use them.
The engine uses ALOT of globals, its bigger than I would've liked, and I really would've liked to have released it totally done...but I'm burnt out guys (I gotta take a few days just for dedicated gaming, get my mojo back :lol: )
Geez, this is alot longer than I thought it was gonna be!! I know I've just dumped a big rambling, confusing, mess on you guys (1. because I gotta catch a train to get home, and 2. because I just naturally ramble) but I'll try and explain more in future posts, probably throw together some tutorials over the weekend.
Any questions, comments, rants or raves....post 'em, long as its feedback I'm interested. Happy Coding!
Oh yeah!! I have no clue if this works with a Saturn Emu or not...but I'm guessing with all the 'realloc' & 'free' command, that it probably don't. Hah, something else to work on I guess. :lol:
FOR GREAT JUSTICE!! 😉
- Zak
I've been working on something for like the past 14 months...and I'm at the point where I think it just might be of use to a few of us.
It's actually more of a library than an engine, but 'Elbesem Library' doesn't quite sound as cool as 'Elbesem Engine' 😛
Well anyway, in the past I noticed that the Saturn dev community has some of the most dedicated coders I've personally ever seen...but let's face it, we're all pretty scattered about the globe here. So the main purpose of this is to try and allow one person to throw together a program faster than they could having to go the regular SGL route.
I just think of it as Lego blocks for Saturn dev. Awww heck, enough talk, here's what's supported:
- Paletted & 32K sprites (3 types).
* Basic sprites are just tiles...not animated in any way.
* Extra sprites are just frame animated...(kinda like the guys cheering in the backround of street fighter 2.
* Advanced sprites are totally animated, you can move, rotate, scale...whatever.
[Much thanks to CyberwarriorX for this, if it weren't for his code I never would've gotten paletted sprites]
- CD loading of everything supported.
- 256 scrollplaned (3 types).
* Basic is just a normal scroll plane, no rotation of any kind.
* Extra is just a Z rotation scrollplane.
* Advanced is an XYZ rotation scrollplane.
- Texture animation.
- 3D sprites.
- Light source animation.
- Camera animation.
- Sound animation (Thanks Rockin' - B!!!!!, your tools made it all possible).
- BASIC CDDA playback.
- Support for the digital & analog controller, and the Virtuagun.
- Support for the Ramcart (4 or 1).
- Support for Bitmaps.
Uh, I think that's just about it
But there is some stuff I just can't figure out:
- MIDI support (totally freakin' stumped...)
- Relative motion for the camera, 3d sprites, and 2d sprites (The option for 'movement_relative' in there DOES NOT WORK!!).
- Gouraud shading (sorry, but I just like flat-shaded graphics, I think its got more character 😀 )
- Linescrolls (I just haven't even tried yet).
So that's where I'm at.
Throw the files 'E2_def.h' and 'E2.lib.h' into the same directory as your source code, and you're all set to use the routines in your own code. I tried my best to document everything in those files so that you could figure out how to use things easily. But if there's enough interest, I'll probably just write a manual.
Anyway, when you unzip everything you're gonna see a folder called 'Toolkit' This has all you need in the way of file converters for use with the engine (as far as loading from CD). The tools output all data in ASCII format. Yeah I know I could've used binary, but this is a learning engine and I figured once everything was up and running properly then we could use binary files. Oh yeah, whatever you do...DON'T PROVOKE THE TOOLS!! There's very little error checking in them cause I thought I'd be the only one who'd ever use them.
The engine uses ALOT of globals, its bigger than I would've liked, and I really would've liked to have released it totally done...but I'm burnt out guys (I gotta take a few days just for dedicated gaming, get my mojo back :lol: )
Geez, this is alot longer than I thought it was gonna be!! I know I've just dumped a big rambling, confusing, mess on you guys (1. because I gotta catch a train to get home, and 2. because I just naturally ramble) but I'll try and explain more in future posts, probably throw together some tutorials over the weekend.
Any questions, comments, rants or raves....post 'em, long as its feedback I'm interested. Happy Coding!
Oh yeah!! I have no clue if this works with a Saturn Emu or not...but I'm guessing with all the 'realloc' & 'free' command, that it probably don't. Hah, something else to work on I guess. :lol:
FOR GREAT JUSTICE!! 😉
- Zak