#game #browser #id #aoe2rec-js

aoe2rec-js

WASM version of aoe2rec to parse Age of Empires II: Definitive Edition recorded games in the browser

7 releases

0.1.10 Apr 11, 2025
0.1.9 Mar 30, 2025
0.1.7 Feb 22, 2025

#720 in Web programming

Download history 258/week @ 2025-02-04 10/week @ 2025-02-11 215/week @ 2025-02-18 78/week @ 2025-02-25 84/week @ 2025-03-04 8/week @ 2025-03-11 98/week @ 2025-03-25 31/week @ 2025-04-01 129/week @ 2025-04-08 23/week @ 2025-04-15 2/week @ 2025-04-22

211 downloads per month

MIT license

13KB
250 lines

Age of Empires 2 Record parser

This is a WASM library to parse Age of Empires 2 DE save games

Usage

To use the library, pass a ArrayBuffer to the parse_rec function. Example:

<input type="file" id="fileElem">
import { parse_rec } from "aoe2rec-js";

const fileElem = document.getElementById("fileElem");
fileElem.addEventListener("change", event => {
  const files = (event.target as HTMLInputElement).files
  if (!files) {
    replayFile.value = null
    return
  }
  const file = files[0]
  const reader = new FileReader();
  reader.addEventListener('loadend', (event) => {
    try {
      const rec = parse_rec(event.target.result);
    } catch (error) {
      // It's important to catch errors because not all recs are guaranteed to parse correctly
      console.error("Failed to parse game");
    };
  }, false);
  reader.readAsArrayBuffer(file);

}, false);

Dependencies

~11MB
~201K SLoC