Results 1 to 10 of 10

Thread: Possible to create source code from a game?

                  
   
  1. #1
    DCEmu Regular
    Join Date
    May 2006
    Posts
    388
    Rep Power
    67

    Default Possible to create source code from a game?

    Possible to create source code from a game?

    like to remodel the models and so on?

  2. #2
    Dream Coder
    Join Date
    Apr 2004
    Location
    Miami, FL
    Age
    37
    Posts
    4,675
    Rep Power
    50

    Default

    It is possible to create source from a binary, but the resulting code would be practically unreadable. It would DO everything that the binary does, but not in any sort of patterns recognizable to most programmers.

    However, changing models or images is much easier as they are usually stored outside of the binary, or if not stored within a fixed position inside the binary.
    If anyone is looking to buy, sell, trade games and support a developer directly at the same time, consider joining Goozex. Enjoy!

  3. #3
    DCEmu Regular
    Join Date
    May 2006
    Posts
    388
    Rep Power
    67

    Default

    oh right cool.

    for example, games like Resident Evil 2 or House of the Dead. possible to kinda 're-do' the models?

  4. #4
    Dream Coder
    Join Date
    Apr 2004
    Location
    Miami, FL
    Age
    37
    Posts
    4,675
    Rep Power
    50

    Default

    I don't know the structuring of the games well enough to make an informed comment on them specifically. It woud depend heavily on each game, how the engine works, and how it stores model information. Usually it would be exponentially easier to redo textures than models.
    If anyone is looking to buy, sell, trade games and support a developer directly at the same time, consider joining Goozex. Enjoy!

  5. #5
    DCEmu Regular
    Join Date
    May 2006
    Posts
    388
    Rep Power
    67

    Default

    oh ok then.

    this is a stupid silly minor question to say, may i ask, is it possible then to extract the models of the game and smack in a new game engine, like Unreal Engine 3, were it will render the models bettre than it would now?

    minor question, but back to the important fact, for House of the Dead 2 for PC, possible to create?

  6. #6

    Default

    so binary are all the numbers i see when i use a hex editor? what is it that the programmer has that can make that readable and how can that be recreated?

  7. #7
    DCEmu Coder
    Join Date
    Jul 2004
    Location
    Poughkeepsie, NY
    Posts
    60
    Rep Power
    0

    Default

    Quote Originally Posted by ßüboni¢ $oñic
    so binary are all the numbers i see when i use a hex editor? what is it that the programmer has that can make that readable and how can that be recreated?
    The binary, as far as this topic is concerned, is the executable file. On your Windows system, these are files with a *.exe extension. Any file a computer reads/stores/whatever is stored as a series of zeroes and ones (or, binary) but typically, at least in the context we're talking about here, I think most people mean the executable file.

    Anyway, we don't "make that readable," as you can't recreate the original code from a binary file. We write our code in a high-level language such as C or C++ using a text editor (or an IDE, which includes your text editor), save these text files, and feed them to a compiler which will use the information in the text file to produce object code, and we feed the object files to a linker to combine those object files into a single file. The file we get in the end is "the binary." If I write a program, compile it, and decide that I want to make a change (we do this many times when developing a program), I must go back to the text files (*.c, *.cpp, *.h, etc) and edit those files and compile the program again.

  8. #8
    DCEmu Regular
    Join Date
    May 2006
    Posts
    388
    Rep Power
    67

    Default

    oh right...cool.

    sorry if i left this out for soo long.

    thanks for that.

    as u might have heard of Total Conversion mod, is it possible to do such a thing with games like House of The Dead 2? like replacing that engine with a recent one like Source or Unreal Engines?

  9. #9
    DCEmu Regular
    Join Date
    May 2006
    Posts
    388
    Rep Power
    67

    Default

    anyone? i know its been awhile but i thought i came to visit to see anything.

    also, possible to rip or extract character's movements? like sprints from 3D games or something?

  10. #10
    DCEmu Newbie
    Join Date
    Jan 2007
    Posts
    14
    Rep Power
    0

    Default

    You may be able to replace models, textures, sound, etc. But no, you cannot replace the game's engine.

    Character movements I believe would be taken care of by the model.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •