diff --git a/.travis.yml b/.travis.yml index 16dcafcd..9fe41c99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.12 + - 1.13.3 before_install: - sudo apt-get -y install libx11-dev mesa-common-dev libglfw3-dev libgles2-mesa-dev libasound2-dev script: buildci.sh diff --git a/docs/diablo.woff b/docs/diablo.woff new file mode 100644 index 00000000..960f739d Binary files /dev/null and b/docs/diablo.woff differ diff --git a/docs/index.html b/docs/index.html index 9f82c125..a9f2fcfd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,13 +1,43 @@ - + OpenDiablo 2 + - We need a website. +

+ OPENDIABLO 2 + An open-source implementation of Diablo2 + + Github Project Page + +

+
+ + 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. + +
+
+

Screenshots

+ \ No newline at end of file diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 00000000..405ee3db --- /dev/null +++ b/docs/style.css @@ -0,0 +1,76 @@ +/* #### Generated By: http://www.cufonfonts.com #### */ + +@font-face { +font-family: 'Diablo Heavy'; +font-style: normal; +font-weight: normal; +src: local('Diablo Heavy'), url('diablo.woff') format('woff'); +} + +body { + font-family:'Diablo Heavy'; + background-color: #111; + color: #fff; + text-align:center; + text-shadow: 0px 0px 6px #000; +} + +hr { + margin: 0; + padding: 0; + border-color: #000; + box-shadow: 0px 0px 4px #f00; +} + +h1 { + font-size: 5em; + text-shadow: 0px 0px 6px #c00; +} + +h1 span { + font-size: 0.2em; + display: block; + margin: 8px 0; +} + +h2 { + font-size: 2.5em; + text-shadow: 0px 0px 4px #c00; +} + +img.imgFrame { + display: inline-block; + clear: bloth; + border-radius: 6px; + box-shadow: 0px 0px 8px #000; + margin: 6px 0px; +} + +div.paragraph { + text-align: left; + max-width: 1000px; + margin-left: auto; + margin-right: auto; + display: block; + font-size: 1.2em; + margin-bottom: 24px; +} + +div.paragraph span { + display: block; + padding: 12px 0; +} + +div.paragraph span::first-letter { + font-size: 1.5em; +} + +a { + text-decoration: none; + color: #ffa; +} + +a:hover { + text-decoration: underline; + color: #faa; +} \ No newline at end of file