Jump to content

Orion_

Members
  • Content Count

    527
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Orion_

  1. The preorder for the third run is now over. I will soon produce more cartridge of Elansar, my myst like game for the Atari Jaguar. One cartridge per person, First come first serve, Please don't request a cartridge if you already have one, or if you already have the CD version !
  2. Orion_

    Elansar Jaguar

    I already sold around 100 cartridges of Elansar, and around 100 Elansar CD version so I really doubt I could sell another 100 ... When I asked people to send me an email for a 3rd run, I got less than 10 emails anyway ... I decided to make some more cartridge to avoid ebay speculation, and also because I had around 20 Elansar sticker remaining also I had the opportunity to produce cartridge with Another World 2nd run, so I could get a fair price (else, producing 20 cartridge only would be way too expensive)
  3. Daniele > yes italian is available for Alice ls650 & sh3 > I know the title is bad, but I wanted something short and that explain best the story of the game.. (even If I can't pronounce it correctly) In french it would be "Le sauvetage de la mère d'Alice" which is ... a bit long, and not really a title as well I know a lot of game are referring to Alice in wonderland already so I didn't wanted to take an existing title too ... ah not easy to choose a game title
  4. Orion_

    Elansar Jaguar

    I just wanted to say, wait before buying the expensive Elansar cart listed on ebay.com, I will make some more Elansar cart soon (around 20)
  5. The game was ported on Jaguar with a 320x224 screen restriction. So it is NTSC compatible, no screen truncate. My Jaguar is PAL but I force the NTSC init to test like if it was a real NTSC display (320x224 60Hz) I'm just waiting someone to test it on a real NTSC Jaguar, and also with the M bios (I had problem with Yopaz on this particular model) Once these tests pass, I will start the production. No preorder, the game should be available by the end of March. Good news, the 6MB ROM version is ready and working on my skunkboard
  6. It's because I'm not an optimization freak on Jaguar The game use 2 tilemap scrolling layers, and It could be done using optimized OP list, but I never got this technique working, and I don't have enough ram for doing a multi buffer scrolling. So I'm using the blitter to create the full screen each frame and this takes a lots of time despite my effort. In PAL, It can be played at 50 fps, but at certain place in some levels, because of the second layer, the frame drop to 25, so I decided to fix the gameplay at 25fps.
  7. I'm officially announcing Alice's Mom's Rescue ! This is a 2D platformer game in the old school style. The giant raven has captured Alice's mother. Help Alice save her mother through the 3 worlds and 25 levels! Change Alice's height by jumping on the magic mushrooms to get through the tiny spaces. But be aware that your small size will also reduce your physical abilities! Solve puzzles, beware of the evil cats, birds, bats & spikes, and find the right path to victory. The game will soon be available for the Jaguar CD, on professionally pressed CD in a DVD case + manual. (like Philia) It plays at 30 fps in NTSC, and 25 fps in PAL. It support the Memory Track cartridge with automatic saving. The CD will also include a PC Windows version ! (Hybrid CD) Unfortunately, the game won't fit inside a cartridge, except if the cartridge is 6MBytes (which is not the case of the cartridges I can produce) So, I was wondering, if people without a JagCD would be happy if a ROM version would be available so they can flash it on their SkunkBoard Rev 2 ! Is there many people out there with a Skunkboard rev2 and without a JagCD ? The ROM will be available on the CD, but also as a downloadable file (with cheaper price)
  8. Not technically possible, the Dreamcast use a 2 sessions CD, so does the Jaguar. so you cannot mix the two. Also, the Dreamcast version is already released at HuCast games store.
  9. well, good news, Alice's Mom's Rescue, my new pixel 2D platformer game is fully working on Jaguar ! It will play at 30Fps, on Jaguar CD, Memory Track support, and this will be a world premiere Hybrid CD ! You get both Jaguar and PC Windows version on the same CD !
  10. don't forget parenthesis !! I remember having bugs with RMAC not calculating correctly some basic arithmetic without parenthesis.
  11. I had something (tilemap engine) working using raptor, but once I tried to pull raptor out and plug all my game engine on top of that, it didn't worked at all (crash, black screen ...) so ultimately I ended up getting back my old source code and trying to debug this one instead, now I finally have something playable (at 30fps :/ ) but at least something working ... (without raptor) I guess, it's better to use raptor from start, not trying to port something on it.
  12. Sorry, I guess I'm currently bothering too much reboot's members But that is what you get when you tell people to really start using your tools (CJ might hate me, I sent at least 2 bugs in the Raptor engine, through I correct one of them, and found a workaround for the second)
  13. The RMAC windows binary on Reboot's website is incorrect. (it's an ELF file) Also the version I had of RMAC/RLN had a bug with ".long" alignment which didn't work for example in a GPU code (it wasn't aligned to long, but to word !) The RMAC/RLN version I had with the Raptor package is good and align correctly. So maybe update the RMAC/RLN package from Reboot's website ? Thank you.
  14. EDIT: nevermind, I will do a more complete (private) report after I try what CJ sent me
  15. Hello, I had problems with my own sprite engine (that I've been using for years) while porting my platformer game Alice. I want to try Raptor, mainly because the sprite engine seems powerful, and the Tilemap system would be much more faster than my "blitter based" tilemap engine. The problem is that raptor seems to be designed in an all in one package, with lots of dependencies. for example I took the "tilemap" example from the raptor package, and removed all the stuff I didn't wanted... I removed U235, I removed the fonts, and I removed the "particle" stuffs. (by setting all the pointer related to these to 0) and then I compile, and it won't work anymore (black screen :/ ) So a few questions: Is it possible to use Raptor without having font/particle/u235 stuff ? What things are mandatory to set in the Raptor engine ? (can't we set NULL pointer to the stuffs we don't want to use ?) Can I add object dynamically using the RAPTOR_CreateObject function ? Is this a "Non-RAPTOR" object, or still a raptor object ? Will this be compatible with the Tilemap list ? Can we have 2 tilemap list ? Does the tilemap list ignore to display a tile when the tile index is 0 ? Can we set our own raw graphics for the tilemap without using the BMP convert stuff ? Also, I have my own DSP music/sfx decoder/mixer, can I use the DSP like I want without touching U235 ? I also want to include the JagCD bios call, and this needs: -a pointer to some space in the GPU ram (approx 336 bytes) -a clean space in the GPU IRQ code (nop nop nop nop ... at the beginning of the GPU ram) -and the GPU constantly running (Is it the case ?) Thank you CJ if you can answer
  16. one of my favorite game on ST
  17. CJ > Well, I might try raptor with your help, but learning a whole new API ... I will see when motivated
  18. I just wanted to say that, I recently stopped development on the Jaguar version of Alice because of bugs and issues I couldn't resolve to make a game at a decent speed (and bug free, I get random crashes) And before you ask, using raptor won't help because I can't figure out how to include JagCD gpu code into the engine, and the Alice platform engine needs dynamic sprite list, which seems not really compatible with raptor which require long static list description at compilation time.
  19. I'm working on this for the Dreamcast, but Jaguar CD port will follow http://www.retrocollect.com/News/hucast-games-announce-brand-new-2d-platformer-alices-moms-rescue-heading-to-sega-dreamcast.html
  20. Destocking my games, I put on ebay a box of 25 brand new Jaguar CD game "Philia: the sequel of Elansar" for as cheap as 1€ per game as starting price. if anyone is interessted, I ship worldwide. http://www.ebay.com/itm/281553247670
  21. Reading at this ex-Sony PS1 developer interview:http://www.fultonsoft.com/2009/07/01/an-interview-with-the-playstation-museum/ So, if "Core Design" developers, were struggling to get something running good on the PS1, (which has a dedicated polygon renderer chip and math chip) I guess they would have had pretty bad performance on the Atari Jaguar which had to do all by itself using highly optimized asm code for the GPU.
  22. it is already available for Android and PC. What platform are you interested in ?
  23. Christmas is coming, so, you get price discount on my games ! 10€ less for Elansar/Philia/Yopaz ! http://onorisoft.free.fr/retroshop/index.html
  24. No, because the pc version is downloadable and only at 3€ the dreamcast and jaguar cd version will be physical release (cd + box)
×
×
  • Create New...