All Projects → GrayFace → Wog

GrayFace / Wog

In the Wake of Gods 3.59 alpha

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Wog

Linkermod
Enhancements for Black Ops' modtools
Stars: ✭ 63 (-54.68%)
Mutual labels:  game, mod
Punchandkick
A simple 2D Fighting Game.
Stars: ✭ 99 (-28.78%)
Mutual labels:  game, game-2d
Gowog
Gowog, Golang based Web multiplayer Online Game
Stars: ✭ 75 (-46.04%)
Mutual labels:  game, game-2d
Kaetram Open
An open-source 2D HTML5 adventure based off BrowserQuest (BQ).
Stars: ✭ 138 (-0.72%)
Mutual labels:  game, game-2d
Paradoxgameconverters
Various converters between different grand strategy games
Stars: ✭ 126 (-9.35%)
Mutual labels:  game, mod
Halomd
New demo version of Halo for the Mac.
Stars: ✭ 36 (-74.1%)
Mutual labels:  game, mod
Dose Response
Dose Response is a roguelike where you play an addict. Avoid the dangers threatening your mind and body while desperately looking for the next fix.
Stars: ✭ 95 (-31.65%)
Mutual labels:  game, game-2d
Beaverandfairies
Stars: ✭ 14 (-89.93%)
Mutual labels:  game, game-2d
Gamedev Resources
🎮 🎲 A wonderful list of Game Development resources.
Stars: ✭ 2,054 (+1377.7%)
Mutual labels:  game, game-2d
Flutters
A game powered by Flutter and Flame
Stars: ✭ 117 (-15.83%)
Mutual labels:  game, game-2d
Hinterland
2D top-down shooter game
Stars: ✭ 34 (-75.54%)
Mutual labels:  game, game-2d
Vault13
Reimplementation of Fallout 2 engine
Stars: ✭ 131 (-5.76%)
Mutual labels:  game, game-2d
Ao Server
Server for Argentum Online
Stars: ✭ 32 (-76.98%)
Mutual labels:  game, game-2d
Tank island
Top down 2D shooter game that involves blowing up tanks
Stars: ✭ 42 (-69.78%)
Mutual labels:  game, game-2d
Hsplugins
Various Honey Select plugins
Stars: ✭ 21 (-84.89%)
Mutual labels:  game, mod
Antipacman
HTML5 Pac-Man game with gesture recognition
Stars: ✭ 81 (-41.73%)
Mutual labels:  game, game-2d
Lantern
(DEPRECATED, SEE README)
Stars: ✭ 12 (-91.37%)
Mutual labels:  game, game-2d
Java Game And Application
Java Games and Application with awesome source code and better algorithm
Stars: ✭ 14 (-89.93%)
Mutual labels:  game, game-2d
Scala Game Library
Scala library for cross-platform 2D game development
Stars: ✭ 116 (-16.55%)
Mutual labels:  game, game-2d
F4mp
Stars: ✭ 130 (-6.47%)
Mutual labels:  game, mod

Heroes 3.5: In the Wake of Gods 3.59 alpha.

About

This is Alpha, so anything may change in the future.
Team interaction would happen via Skype: sergroj_(my GitHub nickname). Everyone's welcome! WoG 3.59 is going to be a platform hosting different mods, somewhat like Era II in that sense, but different.
Alpha version executable is called WogT1.exe for historic reasons. Executable of final version will be called h3wog.exe as usual. WogDialogs.dll source code can be found in MMExtension source code archive: https://www.dropbox.com/s/91xvgzbchx3h1bc/MMExtensionSrc.rar?dl=1

Installing a release

Extract contents to WoG home folder. Using a folder with clean WoG 3.58 install is preferable. Make sure Data folder doesn't contain these files:
ARTEVENT.TXT
ARTRAITS.TXT
CRANIM.txt
CRTRAITS.TXT
SpTraits.txt
ZCRTRAIT.TXT
ZELP.TXT

Note: If you're building WoG from sources, the only things you'll need from a release is Data\p\ folder and dbghelp.dll file, plus you must get rid of text files mentioned above.

Testing

'info' folder contains descriptions of new 3.59 stuff (and t1.map file for my own debugging convenience). Mods folder contains all scripts, Data\s\ isn't used anymore.
An intermediate version of ERM help is available at https://www.dropbox.com/s/uxoqylpuyh96iei/erm_help_1_Mar_2006.zip?dl=1
Currently no-one is taking care of it.

Saved games from 3.58 are incompatible. From one version of 3.59a to another saves compatibility may break as well.

If WoG happens to hang, don't kill the process. Instead, use this program: https://www.dropbox.com/s/zhf5sdq2e0e7m9t/WindowMan.rar?dl=1
Run it, then switch to WoG window and switch back to the program. It should pick up the window name of WoG. When you see it's correct, press the "Crash" button. This will make WoG create WOGCRASHDUMP.DMP, WOGCRASHLOG.TXT and WOGERMLOG.TXT files. The program itself will create CrashEIP.txt file in its own folder. Send me all 4 files.

In addition to sending WOGCRASHDUMP.DMP, WOGCRASHLOG.TXT and WOGERMLOG.TXT don't forget to describe what exactly you did that lead to the issue and send the saved game and map if they're relevant.

At some point you may find UnclosedStackLevels.txt file in your WoG folder. Send it to me if you do.

Also, setting No32Bit=0 in [Common] of WoG.ini will let you run WoG windowed in 32-bit screen mode. However, 10-60 minutes into the game it will hang. That's ok, 32 bit mode code is temporary. Baratorch's HD Mod does it much better, so it should be the base of future proper 32 bit mode support.

Building

[Common]
DeveloperPath=(path to the repository)
AllowMultipleCopies=1

Done! Now you can build and run the project. Use "Dll" configugation for debugging. "Release" configuratin is used for deployment. The t1.map file found in Build folder can help you debug it.

About Code

To find code of a receiver (let's say, 'UX'), search in erm.cpp for its name like this: 'UX'.

Internal numbers of triggers are listed after ERM_Triggers table in erm.cpp. To find code that calls a trigger you need to search for its number (use "Find in Files" in VS).

All new code hooks are in global_hooks.h and global.cpp files as well as Lua files. Old hooks are in _B1.cpp. Don't do hooks the old way!

Note the WogNew project. The reason it's there is because t1b project must be built with optimization turned off, due to functions intermixing C code with Asm. This is also one of the reasons the solution is for VS 2005.

One thing absolutely necessary in coding style is use of tabs, not spaces (set up in Tools -> Options -> Text Editor -> C/C++ -> Tabs -> Keep Tabs).

IDA Database

My database of executable can be found at https://www.dropbox.com/s/wl84icfyxz92ns0/Heroes3f.rar?dl=1
I update it very rarely.

About Git

You may want to hide a local folder from Git. E.g. I have a mod with my test scripts. To do so, create .gitignore file in it containing just this:

/*
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].