Pac Man World GBA remake

Dannyboy64

Member
OP
Newcomer
Joined
Mar 13, 2022
Messages
10
Trophies
0
Age
19
Location
Jamaica, Queens
XP
47
Country
United States
I like Pac Man world for GBA, but most people with taste dont, and this is coming from the guy who played the PS1 version first. So, I have a challenge for you all:
Take the GBA version, and make it as close to the PS1 version as possible. This includes: motion cutscenes, The three modes: Quest, Maze, and Classic, the PS1 hub, all levels of the PS1 version, etc.
Once finished, please post it here an provide the rom in .GBA file.
Good luck 😀.
 

Shadow#1

Wii, 3DS Softmod & Dumpster Diving Expert
Member
Joined
Nov 21, 2005
Messages
12,354
Trophies
2
XP
8,031
Country
United States
I like Pac Man world for GBA, but most people with taste dont, and this is coming from the guy who played the PS1 version first. So, I have a challenge for you all:
Take the GBA version, and make it as close to the PS1 version as possible. This includes: motion cutscenes, The three modes: Quest, Maze, and Classic, the PS1 hub, all levels of the PS1 version, etc.
Once finished, please post it here an provide the rom in .GBA file.
Good luck [emoji3].
How much is the bounty set for?
 

FAST6191

Techromancer
Editorial Team
Joined
Nov 21, 2005
Messages
36,798
Trophies
3
XP
28,374
Country
United Kingdom
Yeah that is not usually how this works.

So anyway you want a ROM hacker (of which there are not that many) that knows both the GBA and PS1 (both more niche, though not so very much, consoles as far as ROM hacking is concerned compared to the 8-16 bit pools most spend their time in and not so much overlap between them -- PS1 and PS2 have a lot in common, GBA and DS have a lot in common, none of the others as much but you can probably skate by on more generalised approaches) to pull apart the PS1 game and the GBA game, figure out the formats of the PS1, figure out the GBA formats/setup and reduce things in scope to work with what is possibly a far weaker version of the game. Also add in full motion video to a game without it, though amusingly that might even be the easier aspect of it (if you just assume you are going with 32 megs of video then you can probably make some easy branch to another standalone aspect of code to play them).

After all that you want them to post pirated material (leaving aside copying copyrighted works from the PS1 thing) on a site that would be troubled by such things, as opposed to a patch.

Bounties tend not to be a thing either; money makes lawyers perk up. You also have the costing problem -- if someone will do it for a slab of beer type money then congratulations, if you are going to pay Johnny just graduated Java school money for a real coding project then the $2k of earlier is probably on the lower end, and if you are going to pay big boy reverse engineer money then that is possibly a consultation fee.

People do port things around the place; Mario Kart peeps have been seen to grab basically every kart racing track they can, crash team racing is among the mario kart set but has their own, http://www.thugpro.com/ is a project to grab every Tony Hawk level they can and merge it into one mega project. However what you will tend to note about those sorts of projects is they serve to make an ultimate version of the game. Nobody is likely looking at the GBA throwaway version of pac man (while it is not Paper Boy bad it is far from something like pac man cedx or bomberman live in potentially being an ultimate version). Occasionally you also get people making character inserts in platform/fighting games but this is also not that. To that end the other alternative of make someone excited enough about the concept to take it on as their own project (despite every hacker probably having a hundred other projects available to them) is also looking pretty unlikely.

To that end you may have to do it yourself

https://gbatemp.net/threads/gbatemp-rom-hacking-documentation-project-new-2016-edition-out.73394/
https://www.romhacking.net/start/
PS1 games are mostly based on the iso9660 file system so you can pull them apart with whatever tool you like that can pull apart the relevant iso format, assuming you did not just copy the files off the disc. http://problemkaputt.de/psx-spx.htm if you want some notes on the PS1 hardware though. The format for many graphics on the PS1 is called "TIM" and the romhacking.net link above should have several viewers and editors for it (chances are even if it is a 2d appearing thing then on the PS1 it is going to be a 3d texture for the graphics part).
I would start by finding the level data on the PS1 game. Bonus for you is you don't necessarily have to do tracing or corruption and can probably look at things at file level and swap things around (if what is normally level 1 is now level 5 and vice versa then you might not know a thing about the format*

*though level formats are done in one of a few ways. That being coordinates or space representative (every byte corresponds to a given square or whatever on the screen).
 
  • Like
Reactions: Tarmfot and Kwyjor

Dannyboy64

Member
OP
Newcomer
Joined
Mar 13, 2022
Messages
10
Trophies
0
Age
19
Location
Jamaica, Queens
XP
47
Country
United States
Yeah that is not usually how this works.

So anyway you want a ROM hacker (of which there are not that many) that knows both the GBA and PS1 (both more niche, though not so very much, consoles as far as ROM hacking is concerned compared to the 8-16 bit pools most spend their time in and not so much overlap between them -- PS1 and PS2 have a lot in common, GBA and DS have a lot in common, none of the others as much but you can probably skate by on more generalised approaches) to pull apart the PS1 game and the GBA game, figure out the formats of the PS1, figure out the GBA formats/setup and reduce things in scope to work with what is possibly a far weaker version of the game. Also add in full motion video to a game without it, though amusingly that might even be the easier aspect of it (if you just assume you are going with 32 megs of video then you can probably make some easy branch to another standalone aspect of code to play them).

After all that you want them to post pirated material (leaving aside copying copyrighted works from the PS1 thing) on a site that would be troubled by such things, as opposed to a patch.

Bounties tend not to be a thing either; money makes lawyers perk up. You also have the costing problem -- if someone will do it for a slab of beer type money then congratulations, if you are going to pay Johnny just graduated Java school money for a real coding project then the $2k of earlier is probably on the lower end, and if you are going to pay big boy reverse engineer money then that is possibly a consultation fee.

People do port things around the place; Mario Kart peeps have been seen to grab basically every kart racing track they can, crash team racing is among the mario kart set but has their own, http://www.thugpro.com/ is a project to grab every Tony Hawk level they can and merge it into one mega project. However what you will tend to note about those sorts of projects is they serve to make an ultimate version of the game. Nobody is likely looking at the GBA throwaway version of pac man (while it is not Paper Boy bad it is far from something like pac man cedx or bomberman live in potentially being an ultimate version). Occasionally you also get people making character inserts in platform/fighting games but this is also not that. To that end the other alternative of make someone excited enough about the concept to take it on as their own project (despite every hacker probably having a hundred other projects available to them) is also looking pretty unlikely.

To that end you may have to do it yourself

https://gbatemp.net/threads/gbatemp-rom-hacking-documentation-project-new-2016-edition-out.73394/
https://www.romhacking.net/start/
PS1 games are mostly based on the iso9660 file system so you can pull them apart with whatever tool you like that can pull apart the relevant iso format, assuming you did not just copy the files off the disc. http://problemkaputt.de/psx-spx.htm if you want some notes on the PS1 hardware though. The format for many graphics on the PS1 is called "TIM" and the romhacking.net link above should have several viewers and editors for it (chances are even if it is a 2d appearing thing then on the PS1 it is going to be a 3d texture for the graphics part).
I would start by finding the level data on the PS1 game. Bonus for you is you don't necessarily have to do tracing or corruption and can probably look at things at file level and swap things around (if what is normally level 1 is now level 5 and vice versa then you might not know a thing about the format*

*though level formats are done in one of a few ways. That being coordinates or space representative (every byte corresponds to a given square or whatever on the screen).
So what your saying is that there’s a whole lotta technical problems, and I gotta do it myself.
 
  • Like
Reactions: Shadow#1

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • K3Nv2 @ K3Nv2:
    Thanks for signing up at LinusTechTips
  • QuarterCut @ QuarterCut:
    holey shmoley!
  • BigOnYa @ BigOnYa:
    Your credit card has been charged. Thank you.
  • K3Nv2 @ K3Nv2:
    Your screwdriverPlus will arrive in three weeks
    +1
  • QuarterCut @ QuarterCut:
    K64_Waddle_Dee_Artwork_1.jpg

    my reaction to such information
    +2
  • BigOnYa @ BigOnYa:
    Press 1 for English. Press 2 for Pig Latin. Or press 3 to speak to a representative.
  • BakerMan @ BakerMan:
    guys, i need help, i got into an argument about what genre radioactive is, and i forgot who made it
  • Sicklyboy @ Sicklyboy:
    @BakerMan, Imagine Dragons
  • Sicklyboy @ Sicklyboy:
    Dragon deez nuts across yo face GOTEEM
  • Sicklyboy @ Sicklyboy:
    lmao now I realize that was probably the joke in the first place
    +1
  • BakerMan @ BakerMan:
    IMAGINE DRAGON DEEZ NUTS ACROSS YO- FUCK HE BEAT ME TO IT
  • BigOnYa @ BigOnYa:
    You have selected 4 - Death by Snu Snu, please stand by...
    +1
  • BakerMan @ BakerMan:
    lucky bastard
    +1
  • Sicklyboy @ Sicklyboy:
    hahahaha I'm half way through a bag off my Volcano and my tolerance is way down because I haven't been smoking much lately, so I was a little slow to catch that that was what your angle was 🤣🤣
    +1
  • Sicklyboy @ Sicklyboy:
    Also I was just excited to know a music reference for once (I am the LAST person in the world that you want on your trivia team)
    +2
  • K3Nv2 @ K3Nv2:
    Bummer webos 7.4 isnt working with dejavuln-autoroot
  • Sicklyboy @ Sicklyboy:
    PS4 right? I think that's what mine's on. Or 5.6, maybe.
  • K3Nv2 @ K3Nv2:
    [!] Installation failed (devmode_enabled not recognized)
  • K3Nv2 @ K3Nv2:
    0.5 seemed to work whatever lol i wont bitch
  • Alysh_Graham @ Alysh_Graham:
    Hehehe
    Alysh_Graham @ Alysh_Graham: Hehehe