Search found 323 matches

by Fonzie
Wed Nov 28, 2007 4:51 pm
Forum: Mega/SegaCD
Topic: 3d software rendering on megacd
Replies: 20
Views: 24609

Is it possible to switch between H32 and H40 mode midscreen and back again during vblank(right before active display)? No, it break the sync on TV's... (not on emulator, of course). However, the fallowing method works : - Put Hint (or whatever) on line 180 (the less line you display the more DMA po...
by Fonzie
Wed Nov 28, 2007 12:48 pm
Forum: Megadrive/Genesis
Topic: newbie creating genesis graphics
Replies: 68
Views: 54565

So, no way to add .s files (in a VERY simple way) to a Stef devkit project? I ask that because I'm pretty embarrassed about explaining the things to some peoples when the difficulty is just to add few sprites to the rom (storing tiles in C program, as unpadded unsigned char, is just silly to me) ^^ ...
by Fonzie
Sun Nov 25, 2007 12:17 am
Forum: Mega/SegaCD
Topic: 3d software rendering on megacd
Replies: 20
Views: 24609

Ha yeah, the fast 1bpp>4bpp thing... There is also something obscure where you enter the full palette (16colors, 9bpc)... It is just a misunderstand or there is a hardware fading/alpha possibility when writing to the "framebuffer" (so the hardware find the nearest good color in the palette to fake f...
by Fonzie
Fri Nov 23, 2007 5:53 pm
Forum: Sound
Topic: PSG sound effects converter and player
Replies: 13
Views: 11969

It might depend of the peoples and their programming backgrounds...

Because, me too, I have crazy problem with windows C++.
But I have no problem at all making actionscript stuff (which can be kinda object based), strange ^^.
by Fonzie
Fri Nov 23, 2007 12:22 am
Forum: Mega/SegaCD
Topic: Sega CD technical introduction
Replies: 15
Views: 22041

That is very interesting. So, it cannot be said that any given Sega CD title could display 6 Megabits per level, it could really only display 2 Megabits per level/load? That's the idea... more over, the code itself can take a lot of space, so it reduce even more the gfx power. Do you think that an ...
by Fonzie
Thu Nov 22, 2007 7:09 pm
Forum: Mega/SegaCD
Topic: 3d software rendering on megacd
Replies: 20
Views: 24609

3d software rendering on megacd

Hi :) I just wanted to introduce a little chat about that (as it has been asked in a general sega board)... Please serious talk here. Compared to megadrive software 3d rendering, the segacd have those advantages : - Rendering cpu (subcpu) 75% faster - True 4bpp framebuffer - Auto bmp2tiles conversio...
by Fonzie
Wed Nov 21, 2007 11:51 am
Forum: Megadrive/Genesis
Topic: newbie creating genesis graphics
Replies: 68
Views: 54565

Well, SEGA CD uses the Genesis VDP as it is... So, nothing different. Well, half half.. The segacd have a rendering hardware... which render picture from RAM to RAM... This rendering hardware have several little stamping modes, one use a 2048*2048 map made of 32*32 (or 16*16, i don't remember) pixe...
by Fonzie
Mon Nov 19, 2007 8:25 am
Forum: Megadrive/Genesis
Topic: newbie creating genesis graphics
Replies: 68
Views: 54565

Yeah. Like i said a bit before, better not bother about the 32x... Because each "new game" might have its own file format, size and compression. Top of that, all the drawing softwares already handle 256 paletized and 16bit true color... So... :)
by Fonzie
Wed Nov 14, 2007 8:26 am
Forum: Blabla
Topic: Happy birthday to me !!!
Replies: 12
Views: 10758

Hehe, HBD :P man! :)
by Fonzie
Sat Nov 03, 2007 1:04 pm
Forum: Demos
Topic: TµEE co.(TM) Music & Sound Engine 0.3 WiP DEMO
Replies: 23
Views: 23825

Woot! :D I'm ultra fond of the L & R tracks :D Also, you say that the pcm samples can be up to 36Khz each... However, the drums (especially on the tracks like U & D) looks a bit "grainy", does it mean that they are lower framerate? Can you eventually have some of them in "hi quality" and some in "lo...
by Fonzie
Thu Oct 25, 2007 8:52 am
Forum: Mega/SegaCD
Topic: Sega CD MP3 Player?
Replies: 8
Views: 10590

I read somewhere that some companies did very light software mp3 player... But they call "light" something that run on a 25mhz risc, probably... However, a 16Khz/8bit/mono have a 128Kbs bitrate (like a 128Kbs 44khz Stereo mp3 ^^), approx 10 hours of music per disc. It is possible to make a player th...
by Fonzie
Sun Oct 21, 2007 12:35 pm
Forum: Megadrive/Genesis
Topic: Data compression
Replies: 8
Views: 10085

There was a guy here named Fdarkangel that ported a bunch of stuff to MD... One of the ported thing (and that was used for tavern rpg until some point) was an LZSS decompressor. It was pretty fast http://www.genny4ever.net/index.php?page=works (see MDSA benchmark) assuming that the data was compress...
by Fonzie
Sat Oct 20, 2007 9:47 pm
Forum: Megadrive/Genesis
Topic: Compilator warning
Replies: 12
Views: 10419

Ok nice :)
I'll maybe give a try at code blocks one day :D

Yeah, masterboot.ld, slaveboot.ld mastercode.ld is the "minimum" :P (tavern rpg have 11 .ld files, for more insane pleasure!)
by Fonzie
Sat Oct 20, 2007 10:43 am
Forum: Megadrive/Genesis
Topic: Compilator warning
Replies: 12
Views: 10419

Does code blocks allow you to have a different .ld per project?
Because, for a simple megacd game, you have minimum of 3 .ld , and each game is different ^^.
by Fonzie
Thu Oct 18, 2007 10:37 pm
Forum: Megadrive/Genesis
Topic: Compilator warning
Replies: 12
Views: 10419

Did u delete all the temp files (.o and others)? Sometimes it happen to me, and deleting all the files make it work again.

I also saw a bug of gcc confusing functions names (like play_pcm(); beeing confused by play_pcm_ok();)... There must be a bug somewhere too.