This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 2 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
DLC Decryption
#35
(08-24-2012, 06:17 PM)serio Wrote:
Quote:arent they supposed to be "a secret"?
not him, but why would it be a secret? jpcsp's an open source emulator, not some secret club.

well emulators takes alot of work.. and i didnt see any .java/main() code files in the jpcsp folder or even any classes/subclasses... (I found some files that end with the .jar extension, but they look like theyre encrypted or protected or something. I tried openning them with Netbeans ide and Notepad ++ but no luck, all of the codes where just jiberish, i wish they were written in Lua or C++, then jpcsp would be more stable)

EDIT: Scratch that reply... i managed to find and open the main jpcsp.jar file with netbeans ide Smile
here is a this memory class i found (*sigh* i wish i knew what does all this mean)
Code:
package jpcsp;

import java.nio.Buffer;
import java.nio.ByteBuffer;
import jpcsp.settings.AbstractBoolSettingsListener;

public abstract class Memory {

    private class IgnoreInvalidMemoryAccessSettingsListerner extends AbstractBoolSettingsListener {

        private IgnoreInvalidMemoryAccessSettingsListerner() {
            //compiled code
            throw new RuntimeException("Compiled Code");
        }

        protected void settingsValueChanged(boolean value) {
            //compiled code
            throw new RuntimeException("Compiled Code");
        }
    }
    public static org.apache.log4j.Logger log;
    private static Memory instance;
    public static boolean useDirectBufferMemory;
    public static boolean useSafeMemory;
    public static boolean useDebuggerMemory;
    public static final int addressMask = 1073741823;
    private boolean ignoreInvalidMemoryAccess;
    protected static final int MEMORY_PAGE_SHIFT = 12;
    protected static boolean[] validMemoryPage;

    public static Memory getInstance() {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    protected Memory() {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public static void setInstance(Memory mem) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void invalidMemoryAddress(int address, String prefix, int status) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public boolean read32AllowedInvalidAddress(int address) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public abstract void Initialise();

    public abstract int read8(int i);

    public abstract int read16(int i);

    public abstract int read32(int i);

    public abstract void write8(int i, byte b);

    public abstract void write16(int i, short s);

    public abstract void write32(int i, int i1);

    public abstract void memset(int i, byte b, int i1);

    public abstract Buffer getMainMemoryByteBuffer();

    public abstract Buffer getBuffer(int i, int i1);

    public abstract void copyToMemory(int i, ByteBuffer bb, int i1);

    protected abstract void memcpy(int i, int i1, int i2, boolean bln);

    public int strlen(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public static final boolean isAddressGood(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public static final boolean isAddressAlignedTo(int i, int i1) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public static final boolean isRawAddressGood(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public boolean allocate() {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public long read64(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void write64(int i, long l) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public ByteBuffer readChunkZ(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public ByteBuffer readChunk(int i, int i1) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void memcpy(int i, int i1, int i2) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void memmove(int i, int i1, int i2) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public int normalizeAddress(int i) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    protected boolean areOverlapping(int i, int i1, int i2) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void load(ByteBuffer bb) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public void save(ByteBuffer bb) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    public boolean isIgnoreInvalidMemoryAccess() {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }

    private void setIgnoreInvalidMemoryAccess(boolean bln) {
        //compiled code
        throw new RuntimeException("Compiled Code");
    }
}
[Image: vincent_valentine_signature_by_rui_eri-d2zbu8z.png]
Reply


Messages In This Thread
DLC Decryption - by Hykem - 09-01-2011, 09:16 PM
RE: DLC Decryption - by shin x - 09-01-2011, 09:56 PM
RE: DLC Decryption - by beanclr - 09-02-2011, 09:32 AM
RE: DLC Decryption - by shin x - 09-02-2011, 09:58 AM
RE: DLC Decryption - by Hykem - 09-02-2011, 04:19 PM
RE: DLC Decryption - by beanclr - 09-02-2011, 11:42 PM
RE: DLC Decryption - by shin x - 09-03-2011, 07:09 PM
RE: DLC Decryption - by beanclr - 09-04-2011, 12:23 AM
RE: DLC Decryption - by Resus - 09-05-2011, 07:12 PM
RE: DLC Decryption - by andutrache - 09-04-2011, 02:15 AM
RE: DLC Decryption - by Hykem - 09-04-2011, 04:34 PM
RE: DLC Decryption - by Shina - 09-05-2011, 12:16 AM
RE: DLC Decryption - by Hykem - 09-05-2011, 03:46 PM
RE: DLC Decryption - by Shina - 09-06-2011, 04:46 AM
RE: DLC Decryption - by Shina - 09-25-2011, 07:49 PM
RE: DLC Decryption - by serio - 09-26-2011, 08:43 AM
RE: DLC Decryption - by bugmenot - 10-20-2011, 05:53 PM
RE: DLC Decryption - by Hykem - 12-22-2011, 07:00 PM
RE: DLC Decryption - by tpu - 02-09-2012, 02:26 PM
RE: DLC Decryption - by Hykem - 02-09-2012, 05:05 PM
RE: DLC Decryption - by tpu - 02-10-2012, 07:47 AM
RE: DLC Decryption - by Hykem - 02-10-2012, 04:31 PM
RE: DLC Decryption - by Krude - 02-10-2012, 11:37 PM
RE: DLC Decryption - by Hykem - 02-11-2012, 03:37 PM
RE: DLC Decryption - by venetiancrusader - 04-26-2012, 07:45 AM
RE: DLC Decryption - by Zekro - 04-26-2012, 04:08 PM
RE: DLC Decryption - by Hykem - 06-22-2012, 11:55 PM
RE: DLC Decryption - by hyakki - 06-23-2012, 12:37 AM
RE: DLC Decryption - by serio - 06-23-2012, 02:12 AM
RE: DLC Decryption - by Hykem - 06-23-2012, 02:24 PM
RE: DLC Decryption - by sipomisery - 07-10-2012, 05:13 PM
RE: DLC Decryption - by serio - 07-10-2012, 07:30 PM
RE: DLC Decryption - by abood555 - 08-24-2012, 11:32 AM
RE: DLC Decryption - by serio - 08-24-2012, 06:17 PM
RE: DLC Decryption - by abood555 - 08-24-2012, 08:40 PM
RE: DLC Decryption - by montcer9012 - 08-24-2012, 09:29 PM
RE: DLC Decryption - by hyakki - 08-24-2012, 09:06 PM
RE: DLC Decryption - by abood555 - 08-25-2012, 08:06 AM
RE: DLC Decryption - by Shina - 11-13-2012, 12:14 AM
RE: DLC Decryption - by Zekro - 11-13-2012, 01:41 PM
RE: DLC Decryption - by Hykem - 04-12-2013, 11:03 PM
RE: DLC Decryption - by serio - 04-12-2013, 11:58 PM
RE: DLC Decryption - by Hykem - 04-13-2013, 01:25 AM
RE: DLC Decryption - by nash67 - 04-13-2013, 12:04 AM
RE: DLC Decryption - by montcer9012 - 04-13-2013, 12:29 AM
RE: DLC Decryption - by serio - 04-13-2013, 01:19 AM
RE: DLC Decryption - by serio - 04-13-2013, 02:19 AM
RE: DLC Decryption - by hyakki - 04-13-2013, 05:10 AM
RE: DLC Decryption - by sum2012 - 04-13-2013, 06:01 AM
RE: DLC Decryption - by onelight - 04-13-2013, 06:24 AM
RE: DLC Decryption - by Herrod22 - 04-13-2013, 12:15 PM
RE: DLC Decryption - by nash67 - 04-13-2013, 12:22 PM
RE: DLC Decryption - by Hykem - 04-13-2013, 01:26 PM
RE: DLC Decryption - by chokaz - 04-13-2013, 02:23 PM
RE: DLC Decryption - by serio - 04-13-2013, 03:05 PM
RE: DLC Decryption - by chokaz - 04-13-2013, 04:34 PM
RE: DLC Decryption - by Sarisa81 - 04-13-2013, 10:20 PM
RE: DLC Decryption - by Hykem - 04-13-2013, 11:53 PM
RE: DLC Decryption - by montcer9012 - 04-13-2013, 11:55 PM
RE: DLC Decryption - by Hykem - 04-14-2013, 12:00 AM
RE: DLC Decryption - by montcer9012 - 04-14-2013, 12:02 AM
RE: DLC Decryption - by serio - 04-14-2013, 12:58 AM
RE: DLC Decryption - by nash67 - 04-14-2013, 01:35 AM
RE: DLC Decryption - by Sarisa81 - 04-14-2013, 02:34 AM
RE: DLC Decryption - by sum2012 - 04-14-2013, 04:51 AM
RE: DLC Decryption - by Herrod22 - 04-14-2013, 11:45 AM
RE: DLC Decryption - by hyakki - 04-14-2013, 06:22 AM
RE: DLC Decryption - by sum2012 - 04-14-2013, 08:53 AM
RE: DLC Decryption - by Hykem - 04-14-2013, 07:55 PM
RE: DLC Decryption - by serio - 04-14-2013, 08:28 PM
RE: DLC Decryption - by sum2012 - 04-14-2013, 10:23 PM
RE: DLC Decryption - by BlackDaemon - 04-15-2013, 08:01 AM
RE: DLC Decryption - by serio - 04-16-2013, 11:49 PM
RE: DLC Decryption - by Hykem - 04-17-2013, 03:25 PM
RE: DLC Decryption - by serio - 04-17-2013, 05:50 PM
RE: DLC Decryption - by pumloveju - 04-24-2013, 05:41 AM
RE: DLC Decryption - by nash67 - 04-26-2013, 07:38 AM
RE: DLC Decryption - by takaten - 05-21-2013, 02:32 AM
RE: DLC Decryption - by Gerion - 06-08-2013, 12:16 PM
RE: DLC Decryption - by Zekro - 06-08-2013, 12:44 PM
RE: DLC Decryption - by Gerion - 06-08-2013, 12:52 PM
RE: DLC Decryption - by laughin man - 07-07-2013, 06:58 PM
RE: DLC Decryption - by DragonNeos - 07-07-2013, 08:15 PM
RE: DLC Decryption - by laughin man - 07-07-2013, 10:45 PM
RE: DLC Decryption - by Zekro - 07-08-2013, 11:46 AM
RE: DLC Decryption - by laughin man - 07-08-2013, 12:07 PM
RE: DLC Decryption - by DragonNeos - 07-09-2013, 06:44 PM
RE: DLC Decryption - by onelight - 09-28-2013, 01:23 AM
RE: DLC Decryption - by onelight - 10-05-2013, 06:12 AM
RE: DLC Decryption - by Hykem - 10-10-2013, 10:55 PM
RE: DLC Decryption - by onelight - 10-12-2013, 12:19 AM
RE: DLC Decryption - by Hykem - 10-21-2013, 06:41 PM
RE: DLC Decryption - by onelight - 10-22-2013, 09:12 AM
RE: DLC Decryption - by Hykem - 10-24-2013, 07:36 PM
RE: DLC Decryption - by onelight - 10-26-2013, 01:23 AM
RE: DLC Decryption - by Hykem - 10-27-2013, 03:11 PM
RE: DLC Decryption - by onelight - 10-28-2013, 05:53 AM
RE: DLC Decryption - by Hykem - 11-23-2013, 11:44 PM
RE: DLC Decryption - by onelight - 11-24-2013, 02:02 PM
RE: DLC Decryption - by Hykem - 11-26-2013, 12:42 AM
RE: DLC Decryption - by onelight - 01-03-2014, 03:37 AM
RE: DLC Decryption - by Hykem - 01-08-2014, 05:56 PM
RE: DLC Decryption - by onelight - 01-09-2014, 11:39 AM
RE: DLC Decryption - by Hykem - 01-09-2014, 09:45 PM
RE: DLC Decryption - by onelight - 01-10-2014, 12:41 PM
RE: DLC Decryption - by Hykem - 01-10-2014, 03:20 PM
RE: DLC Decryption - by onelight - 01-11-2014, 04:27 AM
RE: DLC Decryption - by Hykem - 01-11-2014, 03:58 PM
RE: DLC Decryption - by Hykem - 01-15-2014, 07:50 PM
RE: DLC Decryption - by onelight - 03-28-2014, 05:08 AM
RE: DLC Decryption - by nightflyer - 04-07-2014, 01:24 PM
RE: DLC Decryption - by Hykem - 04-11-2014, 06:25 PM
RE: DLC Decryption - by nightflyer - 04-15-2014, 10:29 AM
RE: DLC Decryption - by Hykem - 04-16-2014, 09:59 PM
RE: DLC Decryption - by nightflyer - 04-17-2014, 07:40 AM
RE: DLC Decryption - by Hykem - 04-18-2014, 02:34 PM
RE: DLC Decryption - by Vegerunks - 06-15-2014, 04:18 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)