Revisiting classic N64 wresting games on a modern GNU/Linux

Posted:

N64 is nowhere near my favorite classic console, but I won't hesitate to agree that it is home to the best wresting video games ever made. As it turns out, these games (particularly the Asmik ones) are still fun! In this entry I'm going to talk about how I've been playing WWF No Mercy on Void Linux. Although you (likely) won't be able to enjoy any of the many No Mercy mods that are out there, you can enjoy the very fun vanilla game with some modern enhancements like HD resolutions. Wooooooo!

The Game

I do not endorse violating copyright laws, nor do I encourage usage of illegal ROMs. But, if you own the N64 cart (I do) and are able to dump the ROM (I have, and am not covering this here), then get ready to enter the 64-bit squared circle!

The Nintendo 64

The Nintendo 64 console shouldn't be too hard to find, nor should be it too expensive (or in too bad of shape..) Controllers, on the other hand, are a different story. Granted I've not looked too terribly hard, but the three N64 controllers I have suffer from a few issues that make then difficult to use: huge analog stick dead-zones, broken buttons, and even just not working. I think I'm not alone in saying the controller is not the best design; that is they don't seem to stand the test of time given heavy usage, particularly the analog stick. Thankfully, amazing folks out there have created/are creating emulators!

Mupen64Plus

Enter Mupen64Plus, my preferred way to enjoy classic N64 games! Most distributions should have a package for it, on Void Linux you can install like this:

# xbps-install mupen64plus

This installs the mupen64plus binary as well as the necessary plugins required to run a game.

The Plugins

This is where it can get tricky; there are two (more actually, but we're working with two today) video plugins I work with, and some games work better with one while some the other. For WWF No Mercy (and most likely the other Asmik wrestling games as well) the "rice" video plugin seemed to work the best.

Configuration

You shouldn't need to touch the config file (which should be at $HOME/.config/mupen64plus/mupen64plus.cfg) except to set your controller mappings - but before you do that, make sure that your controller configuration mode (under the [Input-SDL-Control1] section) is zero, like this:

[Input-SDL-Control1]
... 
mode = 0
...

Your button mappings may vary depending on the controller you use; below are the button mappings I'm using for the 8bitdo N64 Bluetooth Gamepad:

DPad R = "hat(0 Right)"
DPad L = "hat(0 Left)"
DPad D = "hat(0 Down)"
DPad U = "hat(0 Up)"
Start = "button(11)"
Z Trig = "button(10)"
B Button = "button(1)"
A Button = "button(0)"
C Button R = "button(9)"
C Button L = "button(4)"
C Button D = "button(3)"
C Button U = "button(8)"
R Trig = "button(7)"
L Trig = "button(6)"
Mempak switch = ""
Rumblepak switch = ""
X Axis = "axis(0-,0+)"
Y Axis = "axis(1-,1+)"

There is a GUI for this, but I couldn't get it to work. Instead, I used jstest to get the button IDs of the controller, and edited the values in manually. It ended up being way less work than trying to mess with the GUI.

Controllers

You don't have to use a replica of the N64 controller, but in my opinion it helps a lot. Aside from most controllers (xbox, playstation) just mapping awkwardly to N64 games, the games themselves were designed to be played with that awful "claw" controller. Consider that it could enhance your experience significantly -- especially for the WWF games.

Ready to rumble

You should now be able to play, but the command line invocation is a bit long:

$ mupen64plus --fullscreen --resolution 1920x1080 --gfx /usr/lib/mupen64plus/mupen64plus-video-rice.so  --audio /usr/lib/mupen64plus/mupen64plus-audio-sdl.so --input /usr/lib/mupen64plus/mupen64plus-input-sdl.so --rsp /usr/lib/mupen64plus/mupen64plus-rsp-hle.so --emumode 2 ROM.n64

I personally wrote a small wrapper script called nintendo64 that I can call, rather than that long command line. And if I need to change video plugins I can just make a quick edit to that script. No big deal.

Conclusion and final thoughts

Often times, it seems like with older video games they aren't as good as we remember them. Well, other people say that; I don't usually find that to be the case. And I think this is doubly true in the case of the Asmik WWF games for the N64.

It amazes me to see others caring about these games at all, let along creating breathtaking mods for them. Yes, now is the best time for one to enjoy WWF No Mercy!!

This page was last modified on: 2020-07-26