Duke4.net Forums: BloodBox proof of concept - Duke4.net Forums

Jump to content

  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

BloodBox proof of concept

User is offline   MrFlibble 

#31

It just happens that relatively recently I talked to a person who had successfully reverse-engineered a commercial game that was released on multiple platforms including DOS, and based on this reverse-engineering that person created a re-implementation of said game running on modern systems. When I touched the subject of legal matters that person directed me to this website:
https://www.eff.org/...engineering-faq

This supposedly should answer some of the questions concerning how legal reverse-engineering for such purposes as stated above is. I have no idea how accurate this source is, however, and would much appreciate any comments from the more experienced people here.
0

#32

View PostPsycho87, on 25 June 2016 - 06:34 AM, said:

Thanks. And yeah, even if it's illegal, It's not like I'm distributing the game's data or anything, so I doubt they'd come after Lucius or me.

Good Luck :) Hope to see a finished product.
1

User is offline   deuxsonic 

#33

I'll use the example of printers. Take for example the reverse-engineering of ink cartridges so that 3rd parties can make them. Lexmark tried taking them to court over it and lost, which found that the reverse-engineering was legal because it was done to allow compatibility with their system. People do this with old device drivers sometimes to allow devices to be used on operating systems that aren't officially supported. Since it's dealing with the binary and not the game data, I don't think anyone has anything. Kaiser did it to get DOOM 64 working on PC. You still have to fetch the game data. I think you should run with it.

This post has been edited by deuxsonic: 25 June 2016 - 08:59 AM

0

User is offline   Hendricks266 

  • Weaponized Autism

  #34

View Postdeuxsonic, on 25 June 2016 - 05:53 AM, said:

Reverse-engineering something for the purposes of compatibility is legal I believe so I think you're okay. Good luck.

For compatibility or interoperability, yes. But keep in mind that the act of reverse engineering is not the same as distributing the copyrighted result. Your printer example is totally irrelevant.

From MrFlibble's link: "It is highly risky to copy any code into a program you create as a result of reverse engineering, because that copy could infringe copyright unless it is a fair use under copyright law. Note that copying can include both imitation of non-functional elements as well as verbatim duplication."

It might be possible to make a fair use defense, but the problem with fair use is that you have to defend yourself in court should anything arise, rather than operate under clear-cut rules. So unless you have a massive legal budget, don't count on it.

View PostPsycho87, on 25 June 2016 - 03:21 AM, said:

I believe the only way to get an accurate port is by reverse engineering the original game,

I agree.
1

User is offline   deuxsonic 

#35

Do it anyway.
0

User is offline   Psycho87 

#36

View Postdeuxsonic, on 25 June 2016 - 09:32 AM, said:

Do it anyway.


I will. Whether it's going to be Lucius, me or someone else, this game is going to get a good open source port.
3

User is offline   TerminX 

  • el fundador

  #37

Hendricks266's thing is going to walk all over all other efforts.
2

User is offline   Hendricks266 

  • Weaponized Autism

  #38

Yes. It will support Extreme Paintbrawl.
2

User is offline   Psycho87 

#39

Does your approach involve some sort of run-time analysis of BLOOD.EXE?
0

User is offline   Hendricks266 

  • Weaponized Autism

  #40

Yes.
0

User is offline   Psycho87 

#41

Interesting. When do you think you'll have something to show us?
0

User is offline   TerminX 

  • el fundador

  #42

"When it's done."
0

User is offline   Hendricks266 

  • Weaponized Autism

  #43

I don't know. BLEED is easily the most ambitious project I have ever undertaken, and I have to reinvent several wheels to make it happen.
2

User is offline   MusicallyInspired 

  • The Sarien Encounter

#44

I'm still interested in the other attempts, so please do not stop your efforts, Psycho87.
1

User is offline   Hendricks266 

  • Weaponized Autism

  #45

Yes. Please don't stop on my account. I'm sure we'll encounter some of the same issues.
0

User is offline   Psycho87 

#46

Don't worry, I'm actually having fun with this. And I think it's great that multiple people are working on porting the game. The higher the chance we'll end up with a good port.
5

#47

View PostPsycho87, on 25 June 2016 - 01:39 PM, said:

Don't worry, I'm actually having fun with this. And I think it's great that multiple people are working on porting the game. The higher the chance we'll end up with a good port.

This
0

#48

Interesting, so Hendricks, does this mean your approach could technically run any version of Blood, provided you have the executable for that respective version? Or am I misunderstanding?
0

User is offline   MrFlibble 

#49

I've got a very vague suspicion that Henrdicks266's project is going to somehow use the compatibility layer principle. If this is the case, then yes, it should theoretically run any version of any supported game.
0

User is offline   MrFlibble 

#50

With my interest in source ports and remakes renewed, I just read about KeeperFX which is a re-implementation of Dungeon Keeper. According to the official site, it works as follows (emphasis added):

Quote

The problem with remaking games is that usually the remakes are abandoned at some stage and never finished. This means that all the work put into such remake is lost, as it usually isn't finished enoughly to be used. Making games requires lots of time, and often volunteers do not have enough will to finish the project.

Bearing this in mind, I've decided I won't try to remake the game from start. Instead, I've learned binary formats of EXE and DLL files, and modified the Dungeon Keeper executable file to become a DLL.

With my new DLL, I was able to create very simple executable file which may be used as complete code to run the game. Now I'm incrementally rewriting DK; functions which are not yet rewritten are called from the DLL, so the project functions like whole game, even though it wasn't completely rewritten yet.


Many functions are already rewritten and fixed. Structure of the code allows to take advantages of every rewritten part, by fixing bugs and making new functions. The project is open-source, and its code is downloadable here.

I wonder if something like this could theoretically work with Blood (I'm assuming that the KeeperFX author used the Windows version of DK)? That would be way easier and less demanding of system resources than any approach that involves DOSBox.
0

User is offline   Kawa 

#51

Turning an EXE into a DLL?

What a time to be alive.
0

User is offline   Hendricks266 

  • Weaponized Autism

  #52

This is very similar to my plan. With yet another competitor entering the ring, I can't afford to put this off any longer.
2

#53

View PostKawa, on 04 January 2017 - 07:17 AM, said:

Turning an EXE into a DLL?

What a time to be alive.


Not that unusual, if I'm not wrong, a similar concept is used to make Return To The Roots aka Settlers II open source remake.
http://settlers2.net...n-to-the-roots/
1

#54

View PostMrFlibble, on 04 January 2017 - 06:57 AM, said:

With my interest in source ports and remakes renewed, I just read about KeeperFX which is a re-implementation of Dungeon Keeper. According to the official site, it works as follows (emphasis added):

He documents the process here
1

User is offline   MrFlibble 

#55

View PostTheZombieKiller, on 04 January 2017 - 05:38 PM, said:

He documents the process here

Excellent, great thanks for the link to this! :lol:
0

User is offline   Jim 

#56

Will this be able to support texture filtering?
0

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic


All copyrights and trademarks not owned by Voidpoint, LLC are the sole property of their respective owners. Play Ion Fury! ;) © Voidpoint, LLC

Enter your sign in name and password


Sign in options