Initial commit: OpenRA game engine
Some checks failed
Continuous Integration / Linux (.NET 8.0) (push) Has been cancelled
Continuous Integration / Windows (.NET 8.0) (push) Has been cancelled

Fork from OpenRA/OpenRA with one-click launch script (start-ra.cmd)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
let5sne.win10
2026-01-10 21:46:54 +08:00
commit 9cf6ebb986
4065 changed files with 635973 additions and 0 deletions

View File

@@ -0,0 +1,129 @@
--[[
Copyright (c) The OpenRA Developers and Contributors
This file is part of OpenRA, which is free software. It is made
available to you under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version. For more
information, see COPYING.
]]
NForce = { "e1", "e1", "e1", "e3", "cyborg", "cyborg" }
NForcePath = { NodW.Location }
NForceInterval = 5
VNForce = { "bike", "bike", "bggy", "bggy", "e1", "e1", "e3" }
VNForcePath = { South.Location }
VNForceInterval = 15
GForce = { "e1", "e1", "e1", "e1", "e2", "e1", "e2" }
GForcePath = { GDIW.Location }
GForceInterval = 5
VGForce = { "e2", "smech", "smech", "e1", "e1", "apc" }
VGForcePath = { North.Location }
VGForceInterval = 15
ProducedUnitTypes =
{
{ nodhand1, { "e1", "e3" }, GDIBase.Location },
{ gdibar1, { "e1", "e2" }, NodBase.Location }
}
ProduceUnits = function(t)
local factory = t[1]
if not factory.IsDead then
local unitType = t[2][Utils.RandomInteger(1, #t[2] + 1)]
factory.Wait(Actor.BuildTime(unitType))
factory.Produce(unitType)
factory.CallFunc(function() ProduceUnits(t) end)
end
end
SetupFactories = function()
Utils.Do(ProducedUnitTypes, function(pair)
Trigger.OnProduction(pair[1], function(_, a) BindActorTriggers(a, pair[3]) end)
end)
end
SetupInvulnerability = function()
Utils.Do(Map.NamedActors, function(actor)
if actor.HasProperty("AcceptsCondition") and actor.AcceptsCondition("unkillable") then
actor.GrantCondition("unkillable")
end
end)
end
SendNodInfantry = function()
local units = Reinforcements.Reinforce(nod, NForce, NForcePath, NForceInterval)
Utils.Do(units, function(unit)
BindActorTriggers(unit, GDIBase.Location)
end)
Trigger.AfterDelay(DateTime.Seconds(60), SendNodInfantry)
end
SendNodVehicles = function()
local units = Reinforcements.Reinforce(nod, VNForce, VNForcePath, VNForceInterval)
Utils.Do(units, function(unit)
BindActorTriggers(unit, GDIBase.Location)
end)
Trigger.AfterDelay(DateTime.Seconds(110), SendNodVehicles)
end
SendGDIInfantry = function()
local units = Reinforcements.Reinforce(gdi, GForce, GForcePath, GForceInterval)
Utils.Do(units, function(unit)
BindActorTriggers(unit, NodBase.Location)
end)
Trigger.AfterDelay(DateTime.Seconds(60), SendGDIInfantry)
end
SendGDIVehicles = function()
local units = Reinforcements.Reinforce(gdi, VGForce, VGForcePath, VGForceInterval)
Utils.Do(units, function(unit)
BindActorTriggers(unit, NodBase.Location)
end)
Trigger.AfterDelay(DateTime.Seconds(110), SendGDIVehicles)
end
BindActorTriggers = function(a, loc)
if a.HasProperty("AttackMove") then
a.AttackMove(loc)
else
a.Move(loc)
end
if a.HasProperty("Hunt") then
Trigger.OnIdle(a, a.Hunt)
else
Trigger.OnIdle(a, function()
a.Move(loc)
end)
end
if a.HasProperty("HasPassengers") then
Trigger.OnDamaged(a, function()
if a.HasPassengers then
a.Stop()
a.UnloadPassengers()
end
end)
Trigger.OnPassengerExited(a, function(_, p)
BindActorTriggers(p, loc)
end)
end
end
WorldLoaded = function()
nod = Player.GetPlayer("Nod")
gdi = Player.GetPlayer("GDI")
SetupFactories()
SetupInvulnerability()
Utils.Do(ProducedUnitTypes, ProduceUnits)
SendNodInfantry()
Trigger.AfterDelay(DateTime.Seconds(50), SendNodVehicles)
SendGDIInfantry()
Trigger.AfterDelay(DateTime.Seconds(70), SendGDIVehicles)
end

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,63 @@
Player:
-ConquestVictoryConditions:
PlayerResources:
ResourceValues:
Tiberium: 0
BlueTiberium: 0
World:
-CrateSpawner:
-StartGameNotification:
-SpawnStartingUnits:
-AutoSave:
-MapStartingLocations:
LuaScript:
Scripts: fields-of-green.lua
MusicPlaylist:
BackgroundMusic: intro
DisableWorldSounds: true
AllowMuteBackgroundMusic: true
^Palettes:
-MenuPostProcessEffect:
^BaseWorld:
TerrainLighting:
BlueTint: 0.7
Intensity: 0.6
INGRNLMP:
TerrainLightSource:
RedTint: 0.01
GreenTint: 0.7
BlueTint: 0.01
Intensity: 0.1
Range: 5c0
^ExistsInWorld:
GivesExperience:
ActorExperienceModifier: 0
HARV:
-Targetable:
GALITE:
-Targetable:
APC:
Cargo:
InitialUnits: e1, e1, e2, e2, medic
^Building:
DamageMultiplier@UNKILLABLE:
RequiresCondition: unkillable
Modifier: 0
ExternalCondition@UNKILLABLE:
Condition: unkillable
^Wall:
DamageMultiplier@UNKILLABLE:
RequiresCondition: unkillable
Modifier: 0
ExternalCondition@UNKILLABLE:
Condition: unkillable