aldonunez / Loz

A remake of The Legend of Zelda

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LOZ

This project is a remake of the game Legend of Zelda.

Summary

The repository is split into a game project and two tools. The tools extract resources from the original game and put them in a format usable by the game code.

The game is written in C++ and links with the Allegro library. The tools are written in C#.

Despite Allegro being a cross-platform library, all of the code is built with Visual Studio tools. Feel free to port all of this to other operating systems. Please let me know if you do.

The ExtractNsf project uses the Game Music Emu library.

How do I get set up?

The subprojects build with Visual Studio 2010 and depend on the Allegro library (5.2) that is automatically downloaded using Nuget. You’ll also need a copy of the original ROM.

The remake is divided in two parts: the remade game in the Game folder, and the extractor in the Tools folder. The extractor pulls resources like graphics and data tables out of the original ROM and puts them into a format suitable for the remade game. Build and run the extractor before building and running the remade game.

The extractor takes some arguments. For example:

#!cmd

ExtractLoz <RomPath> <Function> -out <OutputPath>

You can build all resources with the all function. Set OutputPath to the path where the remade game will go.

Once the resources are built, build and run the program in the bin folder.

Graphics Setting

The game uses OpenGL by default. To use Direct3D on Windows, add a setting to the user settings file %APPDATA%\Loz.exe\loz.ini:

[graphics]
renderer=Direct3D

Note that this will require that you install the shader compiler from Direct3D 9. The needed files (d3dx9_43.dll and D3DCompiler_43.dll) are not included with later versions of Windows such as Windows 10. You can get them by installing the DirectX runtime version 9; or extracting these files from it and copying them to %WINDIR%\SysWOW64.

Input Setting

Gamepad support is enabled by way of XInput by default. To enable DirectInput, remove the joystick driver setting in allegro5.cfg, or change it to "DIRECTINPUT". This config file is in the app's folder.

Be aware that I noticed a problem when enabling DirectInput in Windows 10 on one of my machines. I saw erratic behavior including slow response, random mouse movements and key presses, and unexpected changes in window focus. I haven't determined how to fix this problem or how prevalent it is.

History

I've been interested in remaking the first Legend of Zelda since a family friend gave me a copy of Turbo C++ when I was in eighth grade.

There were many tries - each one more sophisticated than the last. But, at last I realized that the best chance I would have of remaking the game was to disassemble the original.

I started out with the help of Computer Archeology and RomHacking.net before I finally made a disassembler and other tools, and set out to disassemble the bulk of the game code myself.

The way I organized the disassembly was good enough for me, but I don't feel comfortable releasing my notes.

Who do I talk to?

This software is written by Aldo Nunez (aldonunez1@gmail.com).

Feel free to reach out to me, if you'd like to learn more about the project.

About

A remake of The Legend of Zelda

License:Apache License 2.0


Languages

Language:C++ 86.7%Language:C# 10.1%Language:C 3.0%Language:GLSL 0.1%Language:HLSL 0.1%