A mirror of the OpenDiablo2 project
Go to file
Tim Sarbin c212a9875c
Create LICENSE
2019-10-25 18:47:19 -04:00
.github/ISSUE_TEMPLATE Update issue templates 2018-11-22 10:55:19 -05:00
Common Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
Compression Got audio rendering working. 2019-10-25 17:09:07 -04:00
Palettes Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
ResourcePaths Restructured the layout 2019-10-24 11:26:07 -04:00
UI Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
cmd/Client Restructured the layout 2019-10-24 11:26:07 -04:00
docs Configured CI 2018-11-26 22:42:22 -05:00
.gitignore Migrated to golang codebase. 2019-10-24 09:31:59 -04:00
.travis.yml Update .travis.yml 2019-10-24 12:01:37 -04:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-11-22 10:54:08 -05:00
Client.exe Restructured the layout 2019-10-24 11:26:07 -04:00
ColorConvert.go Finished font rendering with color mod support. 2019-10-24 19:13:30 -04:00
CryptoBuff.go Restructured the layout 2019-10-24 11:26:07 -04:00
Engine.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
LICENSE Create LICENSE 2019-10-25 18:47:19 -04:00
MPQ.go Restructured the layout 2019-10-24 11:26:07 -04:00
MPQFont.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
MPQStream.go Got audio rendering working. 2019-10-25 17:09:07 -04:00
Math.go Restructured the layout 2019-10-24 11:26:07 -04:00
Palette.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
README.md Got audio rendering working. 2019-10-25 17:09:07 -04:00
SceneMainMenu.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
SoundEntry.go Restructured the layout 2019-10-24 11:26:07 -04:00
Sprite.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
StringUtils.go Restructured the layout 2019-10-24 11:26:07 -04:00
UILabel.go Code cleanup. Added basic UI interface types. 2019-10-25 18:40:27 -04:00
cibuild.sh Restructured the layout 2019-10-24 11:26:07 -04:00
config.json Migrated to golang codebase. 2019-10-24 09:31:59 -04:00

README.md

OpenDiablo2 Build Status

Join us on Discord!
Development Live stream

About this project

OpenDiablo2 is an ARPG game engine in the same vein of the 2000's games, and supports playing Diablo 2. The engine is written in golang and is cross platform. However, please note that this project does not ship with the assets or content required to play Diablo 2. You must have a legally purchased copy of Diablo 2 and its expansion Lord of Destruction installed on your computer in order to run that game on this engine. If you have an original copy of the disks, those files should work fine as well.

Currently we are working on features necessary to play Diablo 2 in its entireity, but will then expand with tools and plugin support to allow modding, as well as writing completely new games with the engine.

We are in the process of moving to a go based engine. We are taking good bits from the original C# base and migrating it over to the new engine code.

Please note that this game is neither developed by, nor endorsed by Blizzard or its parent company Activision.

Diablo 2 and its content is ©2000 Blizzard Entertainment, Inc. All rights reserved. Diablo and Blizzard Entertainment are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries.

ALL OTHER TRADEMARKS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS.

Building

To pull the project down, run go get https://github.com/essial/OpenDiablo2

On windows this folder will most likely be in C:\\users\\(you)\\go\\src\\github.com\\essial\\OpenDiablo2

In the root folder, run go get -d to pull down all dependencies.

To run the project, run go run ./cmd/Client from the root folder.

You can also open the root folder in VSCode. Make sure you have the ms-vscode.go plugin installed.

VS Code Extensions

The following extensions are recommended for working with this project:

  • ms-vscode.go
  • defaltd.go-coverage-viewer

You can get to it by going to settings Ctrl+,, expanding Extensions and selecting Go configuration, then clicking on Edit in settings.json. Just paste that section where appropriate.

Configuration

The engine is configured via the config.json file. By default, the configuration assumes that you have installed Diablo 2 and the expansion via the official Blizzard Diablo2 installers using the default file paths. If you are not on Windows, or have installed the game in a different location, the base path may have to be adjusted.

Contributing

If you find something you'd like to fix thats obviously broken, create a branch, commit your code, and submit a pull request. If it's a new or missing feature you'd like to see, add an issue, and be descriptive! If you'd like to help out and are not quite sure how, you can look through any open issues and tasks.