Skip to main content

This is a project for editing parts of an 'aoe2scenario' file from Age of Empires 2 Definitive Edition

Project description

AoE2ScenarioParser

This is a project for editing parts of an aoe2scenario file from Age of Empires 2 Definitive Edition outside of the in-game editor.

Progress

Current up-to-date progress can be found on the Trello board.

Features:

  • aoe2scenario files
    • Reading aoe2scenario files from AoE2:DE.
    • Writing to a new aoe2scenario file with edited contents.
  • Triggers
    • View (Specific or all) Triggers, Conditions and Effects.
    • Adding Triggers, Conditions and Effects.
    • Editing Triggers. (Only adding Conditions and Effects is currently supported)
    • Deleting Triggers.

Bugs:

Support:

This repository supports the DE scenario version:

  • 1.36
  • 1.37 (Game update: 35584)

Installation

Run the following pip command for installation:v

pip install AoE2ScenarioParser

Usage

Getting Started

To start, import the main AoE2Scnerio class from the module:

from AoE2ScenarioParser.aoe2_scenario import AoE2Scenario

Also import the two datasets for ease of use:

from AoE2ScenarioParser.datasets import effects
from AoE2ScenarioParser.datasets import conditions

Define the file you will be reading and the path you will be writing to.
Note: Creating folders isn't supported at this time. Please use an excisting folder.

# It is recommended to not overwrite your file. This way you can keep a backup!
input_path = "File/Path/To/Your/Input/File"
output_path = "File/Path/To/Your/Output/File"

Now create the object with the filename as parameter.

scenario = AoE2Scenario(input_path)

You can retrieve access to the triggers using the object_manager.

trigger_object = scenario.object_manager.get_triggers()

 

Adding triggers

Now the best part, adding triggers! You can add triggers easily. You can change all parts of the trigger using functions (type "trigger.set_" and the autocomplete will show you a list of options.). Eventually there will be a API docs.

trigger = trigger_object.add_trigger("Trigger :)")
trigger.set_description("This is a great description!")

To add conditions or effects, just call the method add_condition and add_effect. You can use the dataset to figure give the function the right ID. If you're unsure about what parameters are available in every trigger, check the docs of the condition. Click on conditions.chance and show the docs (CTRL + Q in PyCharm). It will show you: "Parameters for the chance condition are: amount_or_quantity". Now use the function set_amount_or_quantity to apply the right value.

The example shows: A trigger with 25% chance of showing a message.

condition = trigger.add_condition(conditions.chance)
condition.set_amount_or_quantity(25)

effect = trigger.add_effect(effects.display_instructions)
effect.set_player_source(1)
effect.set_display_time(11)
effect.set_message("This message was set using AoE2ScenarioParser!")

 

Viewing triggers

Tip: As you know you can change the order of triggers in the in-game editor (Not possible with this package (yet)). When using the view, edit and delete functionality you can choose to select a trigger by index or by display_index. display_index is the index in which the triggers are shown in the in-game editor. The index is the index in which they were created. Both start from 0.

There's multiple ways to check out triggers and their contents. When editing or deleting a trigger you'll need an index. This can be the actual index or the display index.

You can use the following function to generate a simple overview of the triggers.

trigger_object.get_trigger_overview_as_string()

# This returns the following (As String):
Trigger Overview:
	Init Trigger    [Index: 0, Display: 0]	(conditions: 2,  effects: 1)
	Spawn Wave 1    [Index: 1, Display: 1]	(conditions: 2,  effects: 7)
	Spawn Wave 2    [Index: 2, Display: 2]	(conditions: 1,  effects: 7)

If you want to know all specifics about a trigger you can use the functions below.

trigger_object.get_trigger_as_string(0)
trigger_object.get_trigger_as_string_by_display_index(0)
# Or if you have a trigger as object:
trigger_object.get_trigger_as_string(trigger.trigger_id)

# These functions return the following (As String):
'Init Trigger' [Index: 0, Display: 0]:
    enabled: True
    looping: False
    description: 'This is the initialisation trigger. '
    conditions:
        timer:
            timer: 5
            inverted: 0
        variable_value:
            amount_or_quantity: 1
            inverted: 0
            variable: 0
            comparison: 0
    effects:
        activate_trigger:
            trigger_id: 1

# You can also use the function below to generate the same as above but for all the triggers.
trigger_object.get_content_as_string()

 

Editing or removing triggers

When opening a file that already contains triggers you might want to edit or even remove said triggers. Please note that it's not possible to remove specific conditions or effects (yet).

You can edit a trigger like so:

trigger = trigger_object.get_trigger(0)
# Or:
trigger = trigger_object.get_trigger_by_display_index(0)

# These functions are the same when adding new triggers.
trigger.set_name("New Trigger Name")
trigger.set_description("Awesome New Description!")

For removing it basically works the same:

# Once again remember to not save to a different file. Especially when removing (important) triggers.
trigger_object.delete_trigger(0)
trigger_object.delete_trigger_by_display_index(0)

 

Datasets (Buildings, Units and Techs)

The project currently contains 3 datasets. These are currently pretty basic and only contain the in-editor options. The following datasets are included in the project:

  • buildings
  • units
  • technologies (techs)

Please note: There are also datasets for effects and conditions but those are already explained in this document.

You can use them like so:

from AoE2ScenarioParser.datasets import techs, units, buildings

# Techs
techs.loom  # 22
techs.imperial_age  # 103
# Units
units.archer  # 4
units.man_at_arms  # 75
units.cannon_galleon  # 420
# Buildings
buildings.krepost  # 1251
buildings.wonder  # 276

You can also use strings to get the IDs

techs.get_tech_id_by_string("loom")  # 22
units.get_unit_id_by_string("man_at_arms")  # 75
buildings.get_building_id_by_string("farm")  # 50

Security note:

These functions are implented for ease of use. Not security. They use eval() and should not be used in any server environment where others have access to the input of these functions. For more information please check out this Stack Overflow answer.

Of course, you can combine that with triggers like so:

trigger = triggers.add_trigger("Create Man@Arms")

effect = trigger.add_effect(effects.create_object)  # effects dataset
effect.set_object_list_unit_id(units.man_at_arms)  # units dataset
effect.set_player_source(1)
effect.set_location_x(0)
effect.set_location_y(0)

 

Saving

When you are done, you can write all your progress to a file like so:

scenario.write_to_file(output_path)

Please remember to use a different path than your input file. This way you have a backup file incase you encounter a bug or made a mistake.


 

Authors

  • Kerwin Sneijders (Main Author)

License

Code

GNU General Public License v3.0: Please see the LICENSE file.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AoE2ScenarioParser-0.0.3.tar.gz (27.8 kB view details)

Uploaded Source

Built Distribution

AoE2ScenarioParser-0.0.3-py3-none-any.whl (59.7 kB view details)

Uploaded Python 3

File details

Details for the file AoE2ScenarioParser-0.0.3.tar.gz.

File metadata

  • Download URL: AoE2ScenarioParser-0.0.3.tar.gz
  • Upload date:
  • Size: 27.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for AoE2ScenarioParser-0.0.3.tar.gz
Algorithm Hash digest
SHA256 ec365a419b254207b3e82d68bcbb725d60f0bb8e1d935cfe8983d8a828f45d10
MD5 afad2062c888334a9666de536e4939d3
BLAKE2b-256 551815a2498e9b01e043ce3bf2b0a4caa43789dbfbfd54c0f8eee048fde1bcd4

See more details on using hashes here.

File details

Details for the file AoE2ScenarioParser-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: AoE2ScenarioParser-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 59.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for AoE2ScenarioParser-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 17d6af341dabc3dccbb71ba757afc04fad539c696b4889b0aa2da437850eb176
MD5 86b37f5d60bf31a6649a739dc6ba8958
BLAKE2b-256 a4735d7861c0727f631e0e20b008e0c4837cec09fc8817725842a7b278348c7a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page