wolfenstein demo for sega genesis

Announce (tech) demos or games releases

Moderator: Mask of Destiny

bastien
Very interested
Posts: 208
Joined: Mon Jun 25, 2007 7:19 pm
Location: Besançon,France
Contact:

Post by bastien »

It's really awesome :twisted:
Congrats !
Did you have some video about your mode7 project/avancement too ?
awye

Post by awye »

This is super nice!
Thanks for sharing!
Here are some hastily done covers and a cartridge sticker :)
Can't remember who made the templates but it either was someone at sega-16, spritesmind or segaage and all props goes to them.

Cart: http://i.imgur.com/TNGdG0P.png
Box 1 http://i.imgur.com/dwF4mHz.jpg
Box 2 http://i.imgur.com/ncNV0UO.jpg
Box 3 http://i.imgur.com/erqJovZ.jpg


Download them in hq with psd's here http://sendfile.su/1147322 (includes 3 more alternative covers) :P
How to download: http://i.imgur.com/MzwreXy.png
Mixail
Very interested
Posts: 133
Joined: Thu Nov 18, 2010 4:47 pm

Re: wolfenstein demo for sega genesis

Post by Mixail »

gasega68k, How progress?
gasega68k
Very interested
Posts: 141
Joined: Thu Aug 22, 2013 3:47 am
Location: Venezuela - Caracas
Contact:

Re: wolfenstein demo for sega genesis

Post by gasega68k »

Mixail wrote:gasega68k, How progress?
Well, I can say that is done, it has all levels (60), enemies, music, samples ... all like the original Wolf3D of PC :) , but need to correct some things and also want to modify some parts of code to improve it.
The size of the rom is currently 2.15MB (less than I thought). I want to try to compress some things to see if there is a possibility that the game stays in 2MB, but if this is not possible then I could add Spear of Destiny in the same Rom to fill up to 3MB or more. :)
alko
Very interested
Posts: 172
Joined: Thu Aug 07, 2014 9:31 am
Location: Russian Federation

Re: wolfenstein demo for sega genesis

Post by alko »

Do you plan in the future create editor of sprites, textures and maps to create own game?
Image
Mixail
Very interested
Posts: 133
Joined: Thu Nov 18, 2010 4:47 pm

Re: wolfenstein demo for sega genesis

Post by Mixail »

When release Wolf 3D?
SegaTim
Very interested
Posts: 180
Joined: Thu Nov 19, 2015 1:59 pm
Location: East Prussia
Contact:

Re: wolfenstein demo for sega genesis

Post by SegaTim »

2 in 1: "Wolfenstein 3D" and "Spear of Destiny" - http://romhacking.ru/news/2015-11-10-3221
"Wolfenstein 3D" - 100% OK; "Spear of Destiny" in progress...
Mixail
Very interested
Posts: 133
Joined: Thu Nov 18, 2010 4:47 pm

Re: wolfenstein demo for sega genesis

Post by Mixail »

gasega68k, How progress?
ICEknight
Very interested
Posts: 51
Joined: Mon Apr 23, 2012 10:41 am

Re: wolfenstein demo for sega genesis

Post by ICEknight »

SegaTim wrote:2 in 1: "Wolfenstein 3D" and "Spear of Destiny" - http://romhacking.ru/news/2015-11-10-3221
"Wolfenstein 3D" - 100% OK; "Spear of Destiny" in progress...
Is there a link in there... somewhere?
Mixail wrote:gasega68k, How progress?
Hey boss, give him a break. :P
Mixail
Very interested
Posts: 133
Joined: Thu Nov 18, 2010 4:47 pm

Re: wolfenstein demo for sega genesis

Post by Mixail »

gasega68k, When release Wolf 3D?
inu
Very interested
Posts: 50
Joined: Thu May 09, 2013 10:12 am

Re: wolfenstein demo for sega genesis

Post by inu »

I'm incredibly curious too on the current status of the project. Still play the available demos every now and then, but honestly after the whole mess with some guy trying to sell his demo on ebay, I'd take a 2 or 3 year break from the project too and consider an official or semi-official release before releasing more demos.

Plus didn't gasega68k improve his engine yet again? It takes time to implement and expand all that I guess. :D Especially if he now has less free time.
One way or another I'm sure he'll let us know when he's ready to let us know. This is definitely one of the most technically impressive new homebrew games on the Mega Drive\Genesis, and he knows it too. :)
ICEknight
Very interested
Posts: 51
Joined: Mon Apr 23, 2012 10:41 am

Re: wolfenstein demo for sega genesis

Post by ICEknight »

Please don't listen to this guy:
inu wrote:I'd take a 2 or 3 year break from the project too and consider an official or semi-official release before releasing more demos
ehaliewicz
Very interested
Posts: 50
Joined: Tue Dec 24, 2013 1:00 am

Re: wolfenstein demo for sega genesis

Post by ehaliewicz »

Can anybody explain the method this game uses for drawing columns?

I'm working on a demo that draws columns but I would like to rotate my buffer in software from row to column order (to allow fast drawing of vertical columns by writing multiple pixels at once), and I had the idea that this demo achieves this same optimization via DMA tricks combined with how the VDP planes are set up.
Sik
Very interested
Posts: 939
Joined: Thu Apr 10, 2008 3:03 pm
Contact:

Re: wolfenstein demo for sega genesis

Post by Sik »

The rotation would completely negate any advantage, not to mention that the scaling would already prevent you from manipulating multiple pixels at once like that.

If you want a suggestion, arrange the tiles in the same order as for sprites (i.e. first vertical then horizontal). This will guarantee that any two consecutive pixels within a column will be 4 bytes apart. You can definitely find some good optimization for that.
Sik is pronounced as "seek", not as "sick".
ehaliewicz
Very interested
Posts: 50
Joined: Tue Dec 24, 2013 1:00 am

Re: wolfenstein demo for sega genesis

Post by ehaliewicz »

Sik wrote:The rotation would completely negate any advantage, not to mention that the scaling would already prevent you from manipulating multiple pixels at once like that.

If you want a suggestion, arrange the tiles in the same order as for sprites (i.e. first vertical then horizontal). This will guarantee that any two consecutive pixels within a column will be 4 bytes apart. You can definitely find some good optimization for that.
Yeah, that's what I meant. Not real-time rotation, but using a column-major (vertical first) array rather than row order.
Post Reply