diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md deleted file mode 100644 index 480f0a2..0000000 --- a/.github/copilot-instructions.md +++ /dev/null @@ -1,72 +0,0 @@ -# Copilot instructions for DCS_MissionDev - -These notes teach AI coding agents how to be productive in this DCS World mission-scripting workspace. Keep responses concrete, reference the files below, and prefer making small targeted edits over broad rewrites. - -## Big picture - -- This repo is a DCS mission lab focused on Lua scripting for the MOOSE, MIST, CTLD, and CSAR ecosystems. -- Structure: - - Root hosts shared framework scripts and utilities: `Moose_.lua`, `Moose.lua`, `mist.lua`, multiple pinned `mist_*` versions, `CTLD.lua`, `CSAR.lua`, plus helper and mission glue scripts (e.g., `NukeBlockerScriptv1_2_1.lua`, `OnBirthMessage.lua`). - - Mission families live under `DCS_/...` with individual `.miz` files and scenario folders. - - Purpose-built modules live under `Moose_*/*` with a main Lua, demo `.miz`, and a README describing setup. -- Loading order matters in DCS: framework(s) first, then modules, then mission glue. Typical trigger order: `Moose_.lua` → framework/middleware → module script(s) → custom mission logic. - -## Core modules and patterns (examples in repo) - -- Zone Capture (dual coalition): `Moose_DualCoalitionZoneCapture/Moose_DualCoalitionZoneCapture.lua` - - Edit-only config tables: `ZONE_CONFIG` (BLUE/RED/NEUTRAL lists) and `ZONE_SETTINGS` (scan/capture/guard). - - Uses MOOSE classes like `ZONE`, `ZONE_CAPTURE_COALITION`, `COMMANDCENTER`, `MISSION`; logs via `env.info` with `[CAPTURE Module]` prefix. - - Visuals driven by `ZONE_COLORS`; contested/attacked overrides ownership color. -- Dynamic Ground Battle: `Moose_DynamicGroundBattle/Moose_DynamicGroundBattle.lua` - - User-edit section defines red/blue `ZONE:New(...)`, warehouse `STATIC:FindByName(...)`, and template arrays. After the “DO NOT EDIT BELOW THIS LINE” banner core logic runs. - - Spawn rates scale with warehouse survival; periodic tasking (`ASSIGN_TASKS_SCHED`) retasks idle groups; optional infantry movement via `MOVING_INFANTRY_PATROLS`. -- CTLD: `CTLD.lua` - - Large, configurable logistics/troop script; user config at top: smoke, hover pickup, crate rules, pickup/drop/wp zones, vehicle weights, JTAC settings, and transport pilot names. - - Important distances: `ctld.maximumDistanceLogistic`, `ctld.minimumDeployDistance`, etc. Keep names matching ME zones strictly. -- CSAR: `CSAR.lua` - - Note: the current file contains an HTML GitHub page artifact. When updating, replace with the raw Lua from ciribob/DCS-CSAR (use the Raw file, not the HTML page). - -## Developer workflows (what to run and how) - -- Script load in missions (Mission Editor → Triggers): - 1) DO SCRIPT FILE `Moose_.lua` - 2) DO SCRIPT FILE your module(s) (e.g., DualCoalitionZoneCapture or DynamicGroundBattle) - 3) DO SCRIPT FILE mission glue (CTLD/CSAR/others), respecting their config requirements -- Fast mission patching without opening the editor: `Patch-MooseMissions/` - - Use `Patch-MooseMissions.ps1` to inject or replace a Lua inside a `.miz` and auto-bump version numbers. - - See `Patch-MooseMissions/README.md` for examples (pipeline-friendly; default script location inside miz: `l10n/DEFAULT/*.lua`). -- Versioning conventions for missions: filenames embed the version (`F99th-Operation Ronin 1.4.miz` → next `1.5`); the patcher respects X, X.Y, X.Y.Z. -- Debugging: - - Prefer `env.info("[Tag] message")`; check `Saved Games\DCS\Logs\DCS.log`. Modules log with distinct prefixes (e.g., `[CAPTURE Module]`). - - Common issues: wrong zone/group/static names; framework not loaded first; CTLD/CSAR configs mismatched with ME. Fix by aligning names and load order. - -## Conventions and gotchas (repo-specific) - -- Name matching is strict across modules. Examples to copy: - - Zones: `"Capture Zone-1"`, `"FrontLine7"`, etc. - - HQ groups: `BLUEHQ`, `REDHQ` for MOOSE `COMMANDCENTER`/`MISSION` creation. - - Warehouses: use Static object Unit Name: `RedWarehouse1-1`, `BlueWarehouse3-1`. -- Module layout: top “user config” section, followed by `-- DO NOT EDIT BELOW THIS LINE` guard. Keep PRs to config when possible; avoid editing engine logic unless necessary. -- Framework pinning: multiple `mist_*` versions live alongside `mist.lua`. Mission scripts may expect a specific version; don’t silently swap them—load the version matching the mission. -- CTLD settings commonly used here: `ctld.enableCrates`, `ctld.slingLoad`, `ctld.pickupZones`, `ctld.dropOffZones`, `ctld.wpZones`, `ctld.transportPilotNames`. Follow the existing style when extending. -- CSAR file hygiene: replace HTML artifacts with raw Lua. Verify by ensuring the file starts with Lua, not ``. - -## Integration points - -- MOOSE: all advanced orchestration depends on `Moose_.lua`/`Moose.lua` APIs (`ZONE`, `GROUP`, `STATIC`, `ZONE_CAPTURE_COALITION`, `COMMANDCENTER`, `MISSION`, `SCORING`). Load it first. -- CTLD/CSAR interop: DynamicGroundBattle notes CTLD troops integrate automatically; ensure CTLD is active if you expect troop drops to influence zones. -- VoiceAttack: profiles under `Moose_CTLD_Pure/Voice Attack/` are player tooling, not runtime dependencies. Don’t reference them from mission scripts. - -## Making changes safely - -- When adding new zones/templates/warehouses, update the corresponding arrays in the module’s user config and mirror the names in the Mission Editor. -- When changing visuals or scan cadence, update `ZONE_COLORS` and `ZONE_SETTINGS` in Zone Capture, or scheduler values in Dynamic Ground Battle. -- For patching `.miz` with new `Moose_.lua`/scripts, prefer the PowerShell patcher; it preserves originals and bumps the version. - -## Pointers to examples in this repo - -- Dual coalition capture: `Moose_DualCoalitionZoneCapture/README.md` and example `.miz` in same folder. -- Dynamic ground battle: `Moose_DynamicGroundBattle/README.md`. -- Mission patching: `Patch-MooseMissions/README.md`. - -If anything above is ambiguous (e.g., CSAR expected version, CTLD defaults for a specific mission family), ask for the target mission and we’ll codify the exact load order and script set. \ No newline at end of file diff --git a/.metadata/.lock b/.metadata/.lock deleted file mode 100644 index e69de29..0000000 diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.location deleted file mode 100644 index d5f5292..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/org.eclipse.dltk.core/state.dat deleted file mode 100644 index d4ec1f2..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Battle of Gori/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.location deleted file mode 100644 index 91c823e..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/org.eclipse.dltk.core/state.dat deleted file mode 100644 index b6bb50c..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Afgainistan/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.location deleted file mode 100644 index ade34eb..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/org.eclipse.dltk.core/state.dat deleted file mode 100644 index 67e0396..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Caucasus/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.location deleted file mode 100644 index 171e489..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/org.eclipse.dltk.core/state.dat deleted file mode 100644 index aed318a..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Falklands/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.location deleted file mode 100644 index 5b9c1d0..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/org.eclipse.dltk.core/state.dat deleted file mode 100644 index 6eff08a..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Marianas/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.location deleted file mode 100644 index 3000806..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/org.eclipse.dltk.core/state.dat deleted file mode 100644 index f9d352e..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Nevada/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.location deleted file mode 100644 index d4cd151..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/org.eclipse.dltk.core/state.dat deleted file mode 100644 index afc328e..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Normandy/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.location deleted file mode 100644 index 8489a54..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/org.eclipse.dltk.core/state.dat deleted file mode 100644 index ec92671..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Persian_Gulf/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.location deleted file mode 100644 index 630f412..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/org.eclipse.dltk.core/state.dat deleted file mode 100644 index bf91ce7..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Sinai/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.location deleted file mode 100644 index d86dc99..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/org.eclipse.dltk.core/state.dat deleted file mode 100644 index 5e66f12..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/DCS_Syria/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.location deleted file mode 100644 index 15fbfa5..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/org.eclipse.dltk.core/state.dat deleted file mode 100644 index 6247530..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Framework/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.indexes/properties.index deleted file mode 100644 index 151a9d4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.location b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.location deleted file mode 100644 index eb89dba..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/.location and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/org.eclipse.dltk.core/state.dat b/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/org.eclipse.dltk.core/state.dat deleted file mode 100644 index b00029e..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.projects/Moose_Missions/org.eclipse.dltk.core/state.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version b/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version deleted file mode 100644 index 25cb955..0000000 --- a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index b/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index deleted file mode 100644 index 898f8c4..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version b/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version deleted file mode 100644 index 6b2aaa7..0000000 --- a/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree b/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree deleted file mode 100644 index 2be290f..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.root/3.tree and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources deleted file mode 100644 index 35d19ed..0000000 Binary files a/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index dffc6b5..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -version=1 diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs deleted file mode 100644 index 98d8634..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\r\n\r\n diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.dltk.ui.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.dltk.ui.prefs deleted file mode 100644 index 238fe2b..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.dltk.ui.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -sourceHoverBackgroundColor=255,255,225 -sourceHoverBackgroundColor.SystemDefault=true -useAnnotationsPrefPage=true -useQuickDiffPrefPage=true diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.prefs deleted file mode 100644 index 08f2473..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.dltk.core.codeComplete.visibilityCheck=enabled diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.ui.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.ui.prefs deleted file mode 100644 index 238fe2b..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ldt.ui.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -sourceHoverBackgroundColor=255,255,225 -sourceHoverBackgroundColor.SystemDefault=true -useAnnotationsPrefPage=true -useQuickDiffPrefPage=true diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs deleted file mode 100644 index 56cd496..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.team.ui.first_time=false diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs deleted file mode 100644 index 61f3bb8..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -overviewRuler_migration=migrated_3.1 diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs deleted file mode 100644 index e6297f6..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs +++ /dev/null @@ -1,5 +0,0 @@ -PROBLEMS_FILTERS_MIGRATE=true -eclipse.preferences.version=1 -platformState=1645898269583 -quickStart=false -tipsAndTricks=true diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs deleted file mode 100644 index 08076f2..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -showIntro=false diff --git a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs b/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs deleted file mode 100644 index 699e6a2..0000000 --- a/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs +++ /dev/null @@ -1,2 +0,0 @@ -//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false -eclipse.preferences.version=1 diff --git a/.metadata/.plugins/org.eclipse.dltk.core/1484524933.index b/.metadata/.plugins/org.eclipse.dltk.core/1484524933.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/1484524933.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/1502499027.index b/.metadata/.plugins/org.eclipse.dltk.core/1502499027.index deleted file mode 100644 index 569a221..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/1502499027.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/1505386533.index b/.metadata/.plugins/org.eclipse.dltk.core/1505386533.index deleted file mode 100644 index 3d91a7c..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/1505386533.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/1747788129.index b/.metadata/.plugins/org.eclipse.dltk.core/1747788129.index deleted file mode 100644 index dc0a8ee..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/1747788129.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/1939285624.index b/.metadata/.plugins/org.eclipse.dltk.core/1939285624.index deleted file mode 100644 index 569a221..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/1939285624.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/2538043997.index b/.metadata/.plugins/org.eclipse.dltk.core/2538043997.index deleted file mode 100644 index a01b55e..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/2538043997.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/2768864900.index b/.metadata/.plugins/org.eclipse.dltk.core/2768864900.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/2768864900.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/329329841.index b/.metadata/.plugins/org.eclipse.dltk.core/329329841.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/329329841.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/3688405372.index b/.metadata/.plugins/org.eclipse.dltk.core/3688405372.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/3688405372.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/4554018.index b/.metadata/.plugins/org.eclipse.dltk.core/4554018.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/4554018.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/567655800.index b/.metadata/.plugins/org.eclipse.dltk.core/567655800.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/567655800.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/640583989.index b/.metadata/.plugins/org.eclipse.dltk.core/640583989.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/640583989.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/998229636.index b/.metadata/.plugins/org.eclipse.dltk.core/998229636.index deleted file mode 100644 index c94dbd3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/998229636.index and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/Containers.dat b/.metadata/.plugins/org.eclipse.dltk.core/Containers.dat deleted file mode 100644 index c4e995e..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/Containers.dat and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2210315311/5.idx b/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2210315311/5.idx deleted file mode 100644 index 6bccb0b..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2210315311/5.idx and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2846345860/7.idx b/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2846345860/7.idx deleted file mode 100644 index 1377e93..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/2846345860/7.idx and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/336605292/3.idx b/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/336605292/3.idx deleted file mode 100644 index 9bfe373..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/336605292/3.idx and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/3672975892/1.idx b/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/3672975892/1.idx deleted file mode 100644 index 9e4db47..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/cache/2838196607/3672975892/1.idx and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/cache/index b/.metadata/.plugins/org.eclipse.dltk.core/cache/index deleted file mode 100644 index c967b01..0000000 --- a/.metadata/.plugins/org.eclipse.dltk.core/cache/index +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/.metadata/.plugins/org.eclipse.dltk.core/customTimeStamps b/.metadata/.plugins/org.eclipse.dltk.core/customTimeStamps deleted file mode 100644 index 593f470..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/customTimeStamps and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/externalLibsTimeStamps b/.metadata/.plugins/org.eclipse.dltk.core/externalLibsTimeStamps deleted file mode 100644 index b77c9f3..0000000 Binary files a/.metadata/.plugins/org.eclipse.dltk.core/externalLibsTimeStamps and /dev/null differ diff --git a/.metadata/.plugins/org.eclipse.dltk.core/savedIndexNames.txt b/.metadata/.plugins/org.eclipse.dltk.core/savedIndexNames.txt deleted file mode 100644 index e328cf6..0000000 --- a/.metadata/.plugins/org.eclipse.dltk.core/savedIndexNames.txt +++ /dev/null @@ -1,2 +0,0 @@ -C:\DCS_MissionDev\.metadata\.plugins\org.eclipse.dltk.core\2538043997.index -C:\DCS_MissionDev\.metadata\.plugins\org.eclipse.dltk.core\1505386533.index diff --git a/.metadata/.plugins/org.eclipse.dltk.ui/dialog_settings.xml b/.metadata/.plugins/org.eclipse.dltk.ui/dialog_settings.xml deleted file mode 100644 index a6308c8..0000000 --- a/.metadata/.plugins/org.eclipse.dltk.ui/dialog_settings.xml +++ /dev/null @@ -1,12 +0,0 @@ - -
-
- - - - - -
-
-
-
diff --git a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi deleted file mode 100644 index 57db667..0000000 --- a/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ /dev/null @@ -1,1402 +0,0 @@ - - - - activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration - ModelMigrationProcessor.001 - - - - - - - - topLevel - - - - - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.newWizSC:org.eclipse.ui.wizards.new.folder - persp.newWizSC:org.eclipse.ui.wizards.new.file - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.viewSC:org.eclipse.ui.views.BookmarkView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.views.PropertySheet - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.views.TaskList - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.newWizSC:org.eclipse.ldt.wizard - persp.newWizSC:org.eclipse.ldt.wizard.file - persp.newWizSC:org.eclipse.ldt.wizard.docfile - persp.perspSC:org.eclipse.debug.ui.DebugPerspective - persp.actionSet:org.eclipse.debug.ui.launchActionSet - - - - active - - View - categoryTag:Dynamic Languages - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Lua - - - - - - - - persp.actionSet:org.eclipse.ui.cheatsheets.actionSet - persp.actionSet:org.eclipse.search.searchActionSet - persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation - persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo - persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet - persp.actionSet:org.eclipse.ui.actionSet.keyBindings - persp.actionSet:org.eclipse.ui.actionSet.openFiles - persp.viewSC:org.eclipse.ui.views.ProgressView - persp.viewSC:org.eclipse.ui.texteditor.TemplatesView - persp.actionSet:org.eclipse.debug.ui.launchActionSet - persp.actionSet:org.eclipse.debug.ui.debugActionSet - persp.actionSet:org.eclipse.ui.NavigateActionSet - persp.viewSC:org.eclipse.debug.ui.DebugView - persp.viewSC:org.eclipse.debug.ui.VariableView - persp.viewSC:org.eclipse.debug.ui.BreakpointView - persp.viewSC:org.eclipse.debug.ui.ExpressionView - persp.viewSC:org.eclipse.ui.views.ContentOutline - persp.viewSC:org.eclipse.ui.console.ConsoleView - persp.viewSC:org.eclipse.ui.views.ProblemView - persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer - persp.actionSet:org.eclipse.debug.ui.breakpointActionSet - persp.viewSC:org.eclipse.pde.runtime.LogView - persp.actionSet:org.eclipse.dltk.debug.ui.ScriptDebugActionSet - persp.viewSC:org.eclipse.dltk.debug.ui.ScriptDisplayView - - - org.eclipse.e4.primaryNavigationStack - - View - categoryTag:Debug - - - View - categoryTag:General - - - View - categoryTag:Dynamic Languages - - - - - - - org.eclipse.e4.secondaryNavigationStack - - View - categoryTag:Debug - - - View - categoryTag:Debug - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Debug - - - View - categoryTag:Dynamic Languages - - - - - - View - categoryTag:General - - - View - categoryTag:General - - - View - categoryTag:Debug - - - View - categoryTag:General - - - View - categoryTag:General - - - - - - - - - View - categoryTag:Help - - - View - categoryTag:General - - - View - categoryTag:Help - - - - - - org.eclipse.e4.primaryDataStack - EditorStack - - - Editor - org.eclipse.ldt.ui.editor - removeOnHide - - - - - - - - View - categoryTag:Dynamic Languages - active - activeOnClose - - ViewMenu - menuContribution:menu - - - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - - - - View - categoryTag:General - - ViewMenu - menuContribution:menu - - - - - - - View - categoryTag:General - - - - - View - categoryTag:Lua - - - - - View - categoryTag:Help - - - - - View - categoryTag:General - - - - - View - categoryTag:Help - - - - - View - categoryTag:Debug - - - - - View - categoryTag:General - - - - - View - categoryTag:Debug - - - - - View - categoryTag:General - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:General - - - - - View - categoryTag:Dynamic Languages - - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - Draggable - - - toolbarSeparator - - - - Draggable - - - Draggable - - - Draggable - - - toolbarSeparator - - - - Draggable - - - - toolbarSeparator - - - - toolbarSeparator - - - - Draggable - - - stretch - SHOW_RESTORE_MENU - - - Draggable - HIDEABLE - SHOW_RESTORE_MENU - - - - - stretch - - - Draggable - - - Draggable - - - - - - - - - - platform:win32 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - platform:win32 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Editor - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Debug - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Dynamic Languages - - - - - View - categoryTag:Help - - - - - View - categoryTag:Lua - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:Team - - - - - View - categoryTag:Team - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:Help - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - - View - categoryTag:General - - - - glue - move_after:PerspectiveSpacer - SHOW_RESTORE_MENU - - - move_after:Spacer Glue - HIDEABLE - SHOW_RESTORE_MENU - - - glue - move_after:SearchField - SHOW_RESTORE_MENU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml b/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml deleted file mode 100644 index e4f5727..0000000 --- a/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml +++ /dev/null @@ -1,18 +0,0 @@ - -
- - - - - - - - - - - - - - - -
diff --git a/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml b/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml deleted file mode 100644 index 2e27e17..0000000 --- a/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml +++ /dev/null @@ -1,19 +0,0 @@ - -
-
- - -
-
- - - - - - - - - - -
-
diff --git a/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml b/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml deleted file mode 100644 index 0c59452..0000000 --- a/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.metadata/version.ini b/.metadata/version.ini deleted file mode 100644 index a4e9450..0000000 --- a/.metadata/version.ini +++ /dev/null @@ -1,3 +0,0 @@ -#Tue Sep 30 15:30:00 CDT 2025 -org.eclipse.core.runtime=2 -org.eclipse.platform=4.8.0.v20180308-0630