Skip to content

aoemods/aoetypes

Repository files navigation

Age of Empires 4 TypeScript definitions generator

Generates TypeScript definitions for Age of Empires 4 to be used with TypeScriptToLua.

View the types in your browser here.

Usage (types)

  • npm i -D @aoemods/aoetypes
  • Add this to your tsconfig.json file.
{
    "compilerOptions": {
        "types": [
            "@aoemods/aoetypes"
        ],
    },
}

Projects using TypeScript

Usage (generate the types yourself)

  • Clone this repo and npm i
  • (Optional): download https://cm2.network/ScarDoc/function_list.htm to data/coh2-scardocs/
  • (Optional): copy function_list.htm and enum_list.htm to data/aoe4-scardocs/
  • (Optional): run the script dumpglobals.lua as detailed in its comment
  • Copy scar / lua scripts from data.sga archives to data/aoe4-scar/ (both cardinal and engine, the script will search there recursively so doesn't matter what the folders are named)
  • npm start will generate the types into packages/aoetypes/types/aoetypes.d.ts

Type sources

  • Age of Empires 4 scardocs (no return types)
  • Age of Empires 4 scar scripts from engine and cardinal Data.sga
  • Company of Heroes 2 scardocs (has return types, matched across the AoE4 scardocs)
  • Manual overrides in src/overrides.ts
  • Globals dump with dumpglobals.lua ingame with game mode set to None

Acknowledgements

This project was directly inspired by its Dota 2 counterpart.

Releases

No releases published

Packages

No packages published

Languages