Skip to content
Aaron edited this page Jan 13, 2023 · 54 revisions

What is OpenTESArena?

OpenTESArena is an open-source engine re-implementation for "The Elder Scrolls: Arena" by Bethesda Softworks, being developed from scratch in modern C++. It requires a copy of the original game data from either the floppy disk version (available on the official website here) or the CD version in order to play.

Early on, documentation about Arena's technical details was either hard to find or non-existent, but thanks to the efforts of several contributors, this wiki now contains a large collection of information regarding all aspects of the game, and continues to be revised from time to time.

The Arena manual is also an excellent resource for understanding the game's rules and design. However, not all of the stated values are accurately reproduced in-game. Therefore, the behavior of the original executable is preferred for tie-breaking and new quality-of-life changes are based off of it as well.

Roadmap

Features may come and go from here, or be moved around, depending on how the project is progressing. This list is not exhaustive.

0.15.0: Vanilla+ renderer

  • Classic 8-bit software renderer with modern enhancements (true 3D, custom scene graph, any screen resolutions, multi-threaded)

0.16.0: Minimum-playable starting dungeon, collision detection, and core stats

  • Attributes, level + experience, stat calculation, weight, stamina, speed, restrictions
  • Collision detection (+ climbing, jumping, swimming)
  • Entity interaction support (usable containers, placeholder conversation UI)
  • Movement sounds (walking, swimming)
  • Key locks implementation (pick up key and open associated door)
  • Initial inventory implementation (pick up/equip/drop placeholder items, generate placeholder items in loot/corpses, quest items do nothing)
  • Initial combat implementation (player health bar from class, enemies run towards player and attack, death animations, sounds)
  • NPC conversation support (citizen name, personality, ask directions, placeholder rumors/work)
  • NPC name generation

0.17.0: Item generation and game saving

  • Automap notes and fog of war
  • Character class generation questions
  • Initial camping implementation (pass time, heal, no enemy spawning)
  • Items generated from original data (no magical effects)
  • Enemy loot tables (based on level)
  • Ground loot tables
  • Loading/saving (+ classic save support)
  • NPC merchant item tables (tavern, blacksmith, wizard)
  • NPC services (tavern room, temple healing, equipment repair)

0.18.0: Crime, random enemy generation, and vehicles

  • City guards spawn after committing a crime
  • Lockpicking (locked containers and buildings)
  • Random enemy spawning (based on level)
  • Pickpocketing
  • Vehicle support (rowboats)
  • No wandering NPCs at night

0.19.0: Quests and spells

  • Character class traits/specials
  • Holidays
  • Logbook
  • Quests
  • Spells/enchantments

TBD/Wishlist

  • Automap zoom-in/out
  • AZERTY + QWERTZ keyboard support (see strings in original executable)
  • Gamepad support
  • Key rebinding
  • Launcher application/better means of setting ArenaPath in options
  • Localization
  • Save game versioning support
  • Screen-space fog shader
  • Replace UI panels with more data-driven "UI collections"
  • UI scaling

Project History

Pre-0.12.0

  • Support for all of the original game's major data formats
  • City generation
  • Wild generation
  • Main quest dungeons

0.12.0 - Oct. 10, 2020

  • Initial citizen spawning and color variation support
  • Puddle reflections
  • Voiced cinematic support (CD version only)
  • Music library system (user-defined MIDI filenames in text file)
  • City entrance jingle

0.13.0 - Mar. 28, 2021

  • Chunk system to replace fixed-size game world (#181)
  • Texture system redesign to decouple SDL2 from texture management and allow future support for other image formats (PNG, etc.) (#192)

0.14.0: Weather - Nov. 29, 2021

  • Weather effects (rain, snow, thunderstorms), no screen-space fog
  • Input system redesign (input listener registration, input action definitions, easier to add key rebinding later on) (#219)
  • UI system redesign (add UI texture handle allocation, UI building blocks like image texture functions, vector space geometry, anchoring, draw calls) (#209, #216, #220)