Users browsing this thread: 1 Guest(s)
Mega Drive/Genesis ripping tutorial
#1
OK, bringing this back up for questions:

I tried to open up the Gens11svn emulator, but when the moment that I do, my computer tells me that it is an invalid Win32 application and then my Norton Security Suite recognizes it as a virus and completely removes it from my computer. Sad

Does anyone have this problem, too?

Are there any better Sprite Ripping/BG Rip-Extracting Emulators out there?
Reply
Thanked by:
#2
hmm, that's curious. Where did you download it from?
Tsunami Bomb - The Simple Truth
We could run away
Leave behind anything paper
Not knowing where we're going to stay
When there's no Mondays

You're part of me, it's so easy to see the simple truth
When I'm in your arms, I feel safe from harm and sorrow too
You're part of me, it's so easy to see the simple truth
But most of all, nothing couldn't be solved when I'm with you
Reply
Thanked by:
#3
Well, last time I remembered...

I think it was in a forum post somewhere in this forum.

This one to be exact: www.vg-resource.com/thread-23494.html

This link led me to the false-working emulator: https://code.google.com/p/gens-rerecordi...loads/list
Reply
Thanked by:
#4
Works fine for me, and I'm not getting told that it's a virus. Personally I find this to be the best emulator for Mega Drive ripping, the palettes are accurate and you can modify the background colour using an LUA script (instead of just black).

I've been using Gens11b though, I didn't know there was a later version. Try using that version instead and see if it works.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Reply
Thanked by:
#5
Nevermind, I fixed the problem.

But now I've got another problem: How to change the background color from black to a different color.

Does anyone know how to do that?
Reply
Thanked by:
#6
Then you should disable Norton For a while or something like that.
My Program Has NEVER done that, so dunno what you're experiencing.
[Image: jcKgJbX.png]
Reply
Thanked by:
#7
That's ok, I fixed the problem somehow.

But now I've got another problem: How to change the color of the background from black to a different color.

I know there was a color key feature, but I don't know how to get it. Sad
Reply
Thanked by:
#8
(11-12-2014, 08:55 PM)LooneyTunerIan Wrote: But now I've got another problem: How to change the color of the background from black to a different color.
LUA script.
Code:
BLUE = {r=0, g=0, b=1}
    ...
    background = BLUE
I don't know much LUA, but maybe someone can help you with that Smile
[Image: jcKgJbX.png]
Reply
Thanked by:
#9
This LUA script changes the background to magenta:

Code:
gens.registerbefore(function(address,size)
 local p,t=vdp.readpalette(1,1);
 local c=pal.getcolor(t[1],1);
 c.A=255;
 c.B=255;
 c.G=0;
 c.R=255;
 pal.setcolor(t[1],1,c);
 vdp.writepalette(1,t[1]);
end)

If you know how colour channels work you should be able to modify this to any colour you want. Magenta should be sufficient though.

Copy-paste that into a text file called "bg-change.lua". In the emulator go to Tools -> Lua Scripting -> New Lua Script Window. Click Browse and select bg-change.lua.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Reply
Thanked by: eureka
#10
It works, but it won't stay in its color. Sad

It goes back to black after the next scene comes in.
Reply
Thanked by:
#11
Hmm, I don't know why that would happen. What do you mean by next scene? Try clicking Run in the Lua window once it's gone back to black.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Reply
Thanked by:
#12
No worries, I fixed the problem now. Smile All is working properly.
Reply
Thanked by:


Forum Jump: