warscript 0.0.1-dev.404878c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +23 -0
- package/binaryreader.d.ts +20 -0
- package/binaryreader.lua +50 -0
- package/binarywriter.d.ts +21 -0
- package/binarywriter.lua +90 -0
- package/core/dummy.d.ts +22 -0
- package/core/dummy.lua +133 -0
- package/core/game.d.ts +3 -0
- package/core/game.lua +24 -0
- package/core/mapbounds.d.ts +8 -0
- package/core/mapbounds.lua +12 -0
- package/core/thread.d.ts +8 -0
- package/core/thread.lua +40 -0
- package/core/types/ability.d.ts +4 -0
- package/core/types/ability.lua +10 -0
- package/core/types/async.d.ts +3 -0
- package/core/types/async.lua +2 -0
- package/core/types/camera.d.ts +4 -0
- package/core/types/camera.lua +21 -0
- package/core/types/cameraField.d.ts +15 -0
- package/core/types/cameraField.lua +38 -0
- package/core/types/color.d.ts +16 -0
- package/core/types/color.lua +93 -0
- package/core/types/destructable.d.ts +31 -0
- package/core/types/destructable.lua +245 -0
- package/core/types/effect.d.ts +31 -0
- package/core/types/effect.lua +209 -0
- package/core/types/frame.d.ts +140 -0
- package/core/types/frame.lua +882 -0
- package/core/types/game.d.ts +8 -0
- package/core/types/game.lua +41 -0
- package/core/types/group.d.ts +22 -0
- package/core/types/group.lua +94 -0
- package/core/types/handle.d.ts +48 -0
- package/core/types/handle.lua +169 -0
- package/core/types/image.d.ts +30 -0
- package/core/types/image.lua +121 -0
- package/core/types/internal/ability+cooldownRemaining.d.ts +1 -0
- package/core/types/internal/ability+cooldownRemaining.lua +0 -0
- package/core/types/item.d.ts +4 -0
- package/core/types/item.lua +6 -0
- package/core/types/missile.d.ts +22 -0
- package/core/types/missile.lua +233 -0
- package/core/types/order.d.ts +25 -0
- package/core/types/order.lua +55 -0
- package/core/types/player.d.ts +71 -0
- package/core/types/player.lua +448 -0
- package/core/types/playerCamera.d.ts +32 -0
- package/core/types/playerCamera.lua +162 -0
- package/core/types/playerColor.d.ts +40 -0
- package/core/types/playerColor.lua +203 -0
- package/core/types/rect.d.ts +39 -0
- package/core/types/rect.lua +152 -0
- package/core/types/region.d.ts +14 -0
- package/core/types/region.lua +84 -0
- package/core/types/sound.d.ts +69 -0
- package/core/types/sound.lua +247 -0
- package/core/types/tileCell.d.ts +13 -0
- package/core/types/tileCell.lua +100 -0
- package/core/types/timer.d.ts +36 -0
- package/core/types/timer.lua +230 -0
- package/core/types/timerDialog.d.ts +19 -0
- package/core/types/timerDialog.lua +95 -0
- package/core/types/unit.d.ts +10 -0
- package/core/types/unit.lua +24 -0
- package/core/types/widget.d.ts +5 -0
- package/core/types/widget.lua +2 -0
- package/core/util.d.ts +62 -0
- package/core/util.lua +464 -0
- package/core/vecmath/common.d.ts +18 -0
- package/core/vecmath/common.lua +29 -0
- package/core/vecmath/mat2.d.ts +73 -0
- package/core/vecmath/mat2.lua +261 -0
- package/core/vecmath/vec3.d.ts +47 -0
- package/core/vecmath/vec3.lua +350 -0
- package/core/vecmath/vec4.d.ts +54 -0
- package/core/vecmath/vec4.lua +400 -0
- package/crypto/ecc.d.ts +6 -0
- package/crypto/ecc.lua +1734 -0
- package/decl/index.d.ts +116 -0
- package/decl/native.d.ts +8198 -0
- package/destroyable.d.ts +20 -0
- package/destroyable.lua +31 -0
- package/engine/ability.d.ts +5 -0
- package/engine/ability.lua +7 -0
- package/engine/behavior.d.ts +28 -0
- package/engine/behavior.lua +181 -0
- package/engine/behaviour/ability/apply-buff.d.ts +38 -0
- package/engine/behaviour/ability/apply-buff.lua +126 -0
- package/engine/behaviour/ability/apply-unit-behavior.d.ts +12 -0
- package/engine/behaviour/ability/apply-unit-behavior.lua +36 -0
- package/engine/behaviour/ability/damage.d.ts +25 -0
- package/engine/behaviour/ability/damage.lua +75 -0
- package/engine/behaviour/ability/heal.d.ts +16 -0
- package/engine/behaviour/ability/heal.lua +35 -0
- package/engine/behaviour/ability/instant-impact.d.ts +6 -0
- package/engine/behaviour/ability/instant-impact.lua +25 -0
- package/engine/behaviour/ability.d.ts +40 -0
- package/engine/behaviour/ability.lua +175 -0
- package/engine/behaviour/unit/stun-immunity.d.ts +19 -0
- package/engine/behaviour/unit/stun-immunity.lua +67 -0
- package/engine/behaviour/unit.d.ts +20 -0
- package/engine/behaviour/unit.lua +75 -0
- package/engine/buff.d.ts +221 -0
- package/engine/buff.lua +1093 -0
- package/engine/constants.d.ts +7 -0
- package/engine/constants.lua +8 -0
- package/engine/index.d.ts +5 -0
- package/engine/index.lua +2 -0
- package/engine/internal/ability.d.ts +91 -0
- package/engine/internal/ability.lua +531 -0
- package/engine/internal/item/ability.d.ts +2 -0
- package/engine/internal/item/ability.lua +48 -0
- package/engine/internal/item+owner.d.ts +7 -0
- package/engine/internal/item+owner.lua +22 -0
- package/engine/internal/item.d.ts +86 -0
- package/engine/internal/item.lua +580 -0
- package/engine/internal/mechanics/ability-duration.d.ts +4 -0
- package/engine/internal/mechanics/ability-duration.lua +11 -0
- package/engine/internal/mechanics/area-damage.d.ts +2 -0
- package/engine/internal/mechanics/area-damage.lua +33 -0
- package/engine/internal/misc/dummy-units.d.ts +2 -0
- package/engine/internal/misc/dummy-units.lua +14 -0
- package/engine/internal/object-data/armor-increase.d.ts +2 -0
- package/engine/internal/object-data/armor-increase.lua +19 -0
- package/engine/internal/object-data/attribute-bonus.d.ts +2 -0
- package/engine/internal/object-data/attribute-bonus.lua +15 -0
- package/engine/internal/object-data/auto-attack-damage-increase.d.ts +2 -0
- package/engine/internal/object-data/auto-attack-damage-increase.lua +17 -0
- package/engine/internal/object-data/auto-attack-speed-increase.d.ts +2 -0
- package/engine/internal/object-data/auto-attack-speed-increase.lua +14 -0
- package/engine/internal/object-data/dummy-inventory.d.ts +2 -0
- package/engine/internal/object-data/dummy-inventory.lua +16 -0
- package/engine/internal/object-data/dummy-item.d.ts +2 -0
- package/engine/internal/object-data/dummy-item.lua +10 -0
- package/engine/internal/object-data/ghost-visible.d.ts +2 -0
- package/engine/internal/object-data/ghost-visible.lua +15 -0
- package/engine/internal/object-data/invulnerable.d.ts +2 -0
- package/engine/internal/object-data/invulnerable.lua +11 -0
- package/engine/internal/object-data/movement-speed-increase-factor.d.ts +2 -0
- package/engine/internal/object-data/movement-speed-increase-factor.lua +18 -0
- package/engine/internal/unit/ability.d.ts +143 -0
- package/engine/internal/unit/ability.lua +369 -0
- package/engine/internal/unit/allowed-targets.d.ts +17 -0
- package/engine/internal/unit/allowed-targets.lua +19 -0
- package/engine/internal/unit/band-aids/ancestral-spirit-cannibalize.d.ts +2 -0
- package/engine/internal/unit/band-aids/ancestral-spirit-cannibalize.lua +21 -0
- package/engine/internal/unit/bonus.d.ts +41 -0
- package/engine/internal/unit/bonus.lua +188 -0
- package/engine/internal/unit/buff.d.ts +38 -0
- package/engine/internal/unit/buff.lua +81 -0
- package/engine/internal/unit/expiration-timer.d.ts +22 -0
- package/engine/internal/unit/expiration-timer.lua +44 -0
- package/engine/internal/unit/ghost-counter.d.ts +12 -0
- package/engine/internal/unit/ghost-counter.lua +26 -0
- package/engine/internal/unit/invulnerability-counter.d.ts +12 -0
- package/engine/internal/unit/invulnerability-counter.lua +26 -0
- package/engine/internal/unit/missile.d.ts +42 -0
- package/engine/internal/unit/missile.lua +70 -0
- package/engine/internal/unit/movement-speed.d.ts +18 -0
- package/engine/internal/unit/movement-speed.lua +42 -0
- package/engine/internal/unit/summon-event.d.ts +12 -0
- package/engine/internal/unit/summon-event.lua +50 -0
- package/engine/internal/unit+ability.d.ts +9 -0
- package/engine/internal/unit+ability.lua +59 -0
- package/engine/internal/unit+bonus.d.ts +8 -0
- package/engine/internal/unit+bonus.lua +40 -0
- package/engine/internal/unit+damage.d.ts +69 -0
- package/engine/internal/unit+damage.lua +123 -0
- package/engine/internal/unit+rally.d.ts +10 -0
- package/engine/internal/unit+rally.lua +159 -0
- package/engine/internal/unit+spellSteal.d.ts +7 -0
- package/engine/internal/unit+spellSteal.lua +64 -0
- package/engine/internal/unit+transport.d.ts +12 -0
- package/engine/internal/unit+transport.lua +102 -0
- package/engine/internal/unit-missile-data.d.ts +2 -0
- package/engine/internal/unit-missile-data.lua +107 -0
- package/engine/internal/unit-missile-launch.d.ts +7 -0
- package/engine/internal/unit-missile-launch.lua +32 -0
- package/engine/internal/unit.d.ts +312 -0
- package/engine/internal/unit.lua +2430 -0
- package/engine/internal/utility.d.ts +2 -0
- package/engine/internal/utility.lua +13 -0
- package/engine/lightning.d.ts +51 -0
- package/engine/lightning.lua +303 -0
- package/engine/local-client.d.ts +16 -0
- package/engine/local-client.lua +86 -0
- package/engine/object-data/auxiliary/animation-name.d.ts +14 -0
- package/engine/object-data/auxiliary/animation-name.lua +2 -0
- package/engine/object-data/auxiliary/animation-qualifier.d.ts +53 -0
- package/engine/object-data/auxiliary/animation-qualifier.lua +2 -0
- package/engine/object-data/auxiliary/armor-sound-type.d.ts +8 -0
- package/engine/object-data/auxiliary/armor-sound-type.lua +2 -0
- package/engine/object-data/auxiliary/attachment-preset.d.ts +15 -0
- package/engine/object-data/auxiliary/attachment-preset.lua +29 -0
- package/engine/object-data/auxiliary/attack-type.d.ts +11 -0
- package/engine/object-data/auxiliary/attack-type.lua +2 -0
- package/engine/object-data/auxiliary/buff-polarity.d.ts +6 -0
- package/engine/object-data/auxiliary/buff-polarity.lua +2 -0
- package/engine/object-data/auxiliary/buff-resistance-type.d.ts +6 -0
- package/engine/object-data/auxiliary/buff-resistance-type.lua +2 -0
- package/engine/object-data/auxiliary/combat-classification.d.ts +46 -0
- package/engine/object-data/auxiliary/combat-classification.lua +206 -0
- package/engine/object-data/auxiliary/detection-type.d.ts +7 -0
- package/engine/object-data/auxiliary/detection-type.lua +2 -0
- package/engine/object-data/auxiliary/model-node-name.d.ts +12 -0
- package/engine/object-data/auxiliary/model-node-name.lua +2 -0
- package/engine/object-data/auxiliary/model-node-qualifier.d.ts +21 -0
- package/engine/object-data/auxiliary/model-node-qualifier.lua +2 -0
- package/engine/object-data/auxiliary/movement-type.d.ts +10 -0
- package/engine/object-data/auxiliary/movement-type.lua +2 -0
- package/engine/object-data/auxiliary/race.d.ts +14 -0
- package/engine/object-data/auxiliary/race.lua +2 -0
- package/engine/object-data/auxiliary/sound-preset-name.d.ts +8 -0
- package/engine/object-data/auxiliary/sound-preset-name.lua +2 -0
- package/engine/object-data/auxiliary/sound-set-name.d.ts +35 -0
- package/engine/object-data/auxiliary/sound-set-name.lua +2 -0
- package/engine/object-data/auxiliary/targeting-type.d.ts +8 -0
- package/engine/object-data/auxiliary/targeting-type.lua +2 -0
- package/engine/object-data/auxiliary/tech-tree-dependency.d.ts +16 -0
- package/engine/object-data/auxiliary/tech-tree-dependency.lua +8 -0
- package/engine/object-data/auxiliary/unit-classification.d.ts +19 -0
- package/engine/object-data/auxiliary/unit-classification.lua +50 -0
- package/engine/object-data/auxiliary/weapon-sound-type.d.ts +17 -0
- package/engine/object-data/auxiliary/weapon-sound-type.lua +2 -0
- package/engine/object-data/entry/ability-type/armor-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/armor-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/attribute-increase.d.ts +12 -0
- package/engine/object-data/entry/ability-type/attribute-increase.lua +52 -0
- package/engine/object-data/entry/ability-type/auto-attack-damage-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/auto-attack-damage-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/auto-attack-heal-reduction-effect.d.ts +12 -0
- package/engine/object-data/entry/ability-type/auto-attack-heal-reduction-effect.lua +52 -0
- package/engine/object-data/entry/ability-type/auto-attack-speed-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/auto-attack-speed-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/bash.d.ts +16 -0
- package/engine/object-data/entry/ability-type/bash.lua +78 -0
- package/engine/object-data/entry/ability-type/berserk.d.ts +10 -0
- package/engine/object-data/entry/ability-type/berserk.lua +39 -0
- package/engine/object-data/entry/ability-type/blank-configurable.d.ts +21 -0
- package/engine/object-data/entry/ability-type/blank-configurable.lua +249 -0
- package/engine/object-data/entry/ability-type/blank-passive.d.ts +7 -0
- package/engine/object-data/entry/ability-type/blank-passive.lua +28 -0
- package/engine/object-data/entry/ability-type/blizzard.d.ts +16 -0
- package/engine/object-data/entry/ability-type/blizzard.lua +78 -0
- package/engine/object-data/entry/ability-type/blood-lust.d.ts +12 -0
- package/engine/object-data/entry/ability-type/blood-lust.lua +52 -0
- package/engine/object-data/entry/ability-type/chain-lightning.d.ts +12 -0
- package/engine/object-data/entry/ability-type/chain-lightning.lua +52 -0
- package/engine/object-data/entry/ability-type/channel.d.ts +48 -0
- package/engine/object-data/entry/ability-type/channel.lua +140 -0
- package/engine/object-data/entry/ability-type/charge-gold-and-lumber.d.ts +14 -0
- package/engine/object-data/entry/ability-type/charge-gold-and-lumber.lua +65 -0
- package/engine/object-data/entry/ability-type/cleaving-attack.d.ts +8 -0
- package/engine/object-data/entry/ability-type/cleaving-attack.lua +26 -0
- package/engine/object-data/entry/ability-type/cluster-rockets.d.ts +18 -0
- package/engine/object-data/entry/ability-type/cluster-rockets.lua +91 -0
- package/engine/object-data/entry/ability-type/cripple.d.ts +12 -0
- package/engine/object-data/entry/ability-type/cripple.lua +52 -0
- package/engine/object-data/entry/ability-type/critical-strike.d.ts +18 -0
- package/engine/object-data/entry/ability-type/critical-strike.lua +91 -0
- package/engine/object-data/entry/ability-type/curse.d.ts +8 -0
- package/engine/object-data/entry/ability-type/curse.lua +26 -0
- package/engine/object-data/entry/ability-type/dark-summoning.d.ts +10 -0
- package/engine/object-data/entry/ability-type/dark-summoning.lua +39 -0
- package/engine/object-data/entry/ability-type/death-coil.d.ts +8 -0
- package/engine/object-data/entry/ability-type/death-coil.lua +26 -0
- package/engine/object-data/entry/ability-type/disease-cloud.d.ts +15 -0
- package/engine/object-data/entry/ability-type/disease-cloud.lua +65 -0
- package/engine/object-data/entry/ability-type/divine-shield.d.ts +5 -0
- package/engine/object-data/entry/ability-type/divine-shield.lua +12 -0
- package/engine/object-data/entry/ability-type/endurance-aura.d.ts +10 -0
- package/engine/object-data/entry/ability-type/endurance-aura.lua +39 -0
- package/engine/object-data/entry/ability-type/engineering-upgrade.d.ts +13 -0
- package/engine/object-data/entry/ability-type/engineering-upgrade.lua +88 -0
- package/engine/object-data/entry/ability-type/evasion.d.ts +8 -0
- package/engine/object-data/entry/ability-type/evasion.lua +26 -0
- package/engine/object-data/entry/ability-type/faerie-fire.d.ts +10 -0
- package/engine/object-data/entry/ability-type/faerie-fire.lua +39 -0
- package/engine/object-data/entry/ability-type/far-sight.d.ts +9 -0
- package/engine/object-data/entry/ability-type/far-sight.lua +26 -0
- package/engine/object-data/entry/ability-type/feral-spirit.d.ts +11 -0
- package/engine/object-data/entry/ability-type/feral-spirit.lua +39 -0
- package/engine/object-data/entry/ability-type/frenzy.d.ts +12 -0
- package/engine/object-data/entry/ability-type/frenzy.lua +52 -0
- package/engine/object-data/entry/ability-type/frost-nova.d.ts +12 -0
- package/engine/object-data/entry/ability-type/frost-nova.lua +52 -0
- package/engine/object-data/entry/ability-type/ghost-visible.d.ts +10 -0
- package/engine/object-data/entry/ability-type/ghost-visible.lua +39 -0
- package/engine/object-data/entry/ability-type/gold-mine.d.ts +12 -0
- package/engine/object-data/entry/ability-type/gold-mine.lua +52 -0
- package/engine/object-data/entry/ability-type/heal.d.ts +8 -0
- package/engine/object-data/entry/ability-type/heal.lua +26 -0
- package/engine/object-data/entry/ability-type/healing-salve.d.ts +22 -0
- package/engine/object-data/entry/ability-type/healing-salve.lua +78 -0
- package/engine/object-data/entry/ability-type/healing-spray.d.ts +18 -0
- package/engine/object-data/entry/ability-type/healing-spray.lua +91 -0
- package/engine/object-data/entry/ability-type/healing-wave.d.ts +12 -0
- package/engine/object-data/entry/ability-type/healing-wave.lua +52 -0
- package/engine/object-data/entry/ability-type/holy-light.d.ts +8 -0
- package/engine/object-data/entry/ability-type/holy-light.lua +26 -0
- package/engine/object-data/entry/ability-type/incinerate.d.ts +18 -0
- package/engine/object-data/entry/ability-type/incinerate.lua +91 -0
- package/engine/object-data/entry/ability-type/inner-fire.d.ts +14 -0
- package/engine/object-data/entry/ability-type/inner-fire.lua +65 -0
- package/engine/object-data/entry/ability-type/inventory.d.ts +16 -0
- package/engine/object-data/entry/ability-type/inventory.lua +78 -0
- package/engine/object-data/entry/ability-type/invulnerable.d.ts +5 -0
- package/engine/object-data/entry/ability-type/invulnerable.lua +12 -0
- package/engine/object-data/entry/ability-type/lightning-shield.d.ts +8 -0
- package/engine/object-data/entry/ability-type/lightning-shield.lua +26 -0
- package/engine/object-data/entry/ability-type/movement-speed-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/movement-speed-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/permanent-immolation.d.ts +8 -0
- package/engine/object-data/entry/ability-type/permanent-immolation.lua +26 -0
- package/engine/object-data/entry/ability-type/phoenix-morph.d.ts +25 -0
- package/engine/object-data/entry/ability-type/phoenix-morph.lua +130 -0
- package/engine/object-data/entry/ability-type/recall.d.ts +10 -0
- package/engine/object-data/entry/ability-type/recall.lua +39 -0
- package/engine/object-data/entry/ability-type/rejuvenation.d.ts +20 -0
- package/engine/object-data/entry/ability-type/rejuvenation.lua +65 -0
- package/engine/object-data/entry/ability-type/searing-arrows.d.ts +8 -0
- package/engine/object-data/entry/ability-type/searing-arrows.lua +26 -0
- package/engine/object-data/entry/ability-type/shock-wave.d.ts +10 -0
- package/engine/object-data/entry/ability-type/shock-wave.lua +39 -0
- package/engine/object-data/entry/ability-type/slow-poison.d.ts +12 -0
- package/engine/object-data/entry/ability-type/slow-poison.lua +52 -0
- package/engine/object-data/entry/ability-type/slow.d.ts +12 -0
- package/engine/object-data/entry/ability-type/slow.lua +52 -0
- package/engine/object-data/entry/ability-type/spell-damage-reduction.d.ts +10 -0
- package/engine/object-data/entry/ability-type/spell-damage-reduction.lua +39 -0
- package/engine/object-data/entry/ability-type/spiked-carapace.d.ts +12 -0
- package/engine/object-data/entry/ability-type/spiked-carapace.lua +52 -0
- package/engine/object-data/entry/ability-type/spirit-touch.d.ts +14 -0
- package/engine/object-data/entry/ability-type/spirit-touch.lua +65 -0
- package/engine/object-data/entry/ability-type/storm-bolt.d.ts +8 -0
- package/engine/object-data/entry/ability-type/storm-bolt.lua +26 -0
- package/engine/object-data/entry/ability-type/summon-quilbeast.d.ts +11 -0
- package/engine/object-data/entry/ability-type/summon-quilbeast.lua +39 -0
- package/engine/object-data/entry/ability-type/summon-water-elemental.d.ts +11 -0
- package/engine/object-data/entry/ability-type/summon-water-elemental.lua +39 -0
- package/engine/object-data/entry/ability-type.d.ts +148 -0
- package/engine/object-data/entry/ability-type.lua +1058 -0
- package/engine/object-data/entry/buff-type/applicable.d.ts +16 -0
- package/engine/object-data/entry/buff-type/applicable.lua +377 -0
- package/engine/object-data/entry/buff-type/blank.d.ts +8 -0
- package/engine/object-data/entry/buff-type/blank.lua +17 -0
- package/engine/object-data/entry/buff-type.d.ts +64 -0
- package/engine/object-data/entry/buff-type.lua +316 -0
- package/engine/object-data/entry/destructible-type.d.ts +21 -0
- package/engine/object-data/entry/destructible-type.lua +83 -0
- package/engine/object-data/entry/item-type/blank.d.ts +8 -0
- package/engine/object-data/entry/item-type/blank.lua +21 -0
- package/engine/object-data/entry/item-type.d.ts +49 -0
- package/engine/object-data/entry/item-type.lua +259 -0
- package/engine/object-data/entry/lightning-type.d.ts +37 -0
- package/engine/object-data/entry/lightning-type.lua +191 -0
- package/engine/object-data/entry/unit-type/blank.d.ts +6 -0
- package/engine/object-data/entry/unit-type/blank.lua +13 -0
- package/engine/object-data/entry/unit-type.d.ts +218 -0
- package/engine/object-data/entry/unit-type.lua +1306 -0
- package/engine/object-data/entry/upgrade/blank.d.ts +8 -0
- package/engine/object-data/entry/upgrade/blank.lua +22 -0
- package/engine/object-data/entry/upgrade.d.ts +59 -0
- package/engine/object-data/entry/upgrade.lua +238 -0
- package/engine/object-data/entry.d.ts +80 -0
- package/engine/object-data/entry.lua +634 -0
- package/engine/object-data/utility/object-data-entry-id-generator.d.ts +6 -0
- package/engine/object-data/utility/object-data-entry-id-generator.lua +63 -0
- package/engine/object-data/utility/order-type-string-id-factory.d.ts +9 -0
- package/engine/object-data/utility/order-type-string-id-factory.lua +368 -0
- package/engine/object-field/ability.d.ts +115 -0
- package/engine/object-field/ability.lua +471 -0
- package/engine/object-field/unit.d.ts +15 -0
- package/engine/object-field/unit.lua +49 -0
- package/engine/object-field.d.ts +84 -0
- package/engine/object-field.lua +444 -0
- package/engine/random.d.ts +10 -0
- package/engine/random.lua +9 -0
- package/engine/standard/entries/ability-type.d.ts +8 -0
- package/engine/standard/entries/ability-type.lua +8 -0
- package/engine/standard/entries/lightning-type.d.ts +16 -0
- package/engine/standard/entries/lightning-type.lua +16 -0
- package/engine/standard/entries/unit-type.d.ts +63 -0
- package/engine/standard/entries/unit-type.lua +63 -0
- package/engine/standard/entries/upgrade.d.ts +92 -0
- package/engine/standard/entries/upgrade.lua +92 -0
- package/engine/standard/fields/ability.d.ts +737 -0
- package/engine/standard/fields/ability.lua +749 -0
- package/engine/standard/pathing-textures.d.ts +6 -0
- package/engine/standard/pathing-textures.lua +7 -0
- package/engine/text-tag.d.ts +25 -0
- package/engine/text-tag.lua +109 -0
- package/engine/unit.d.ts +20 -0
- package/engine/unit.lua +31 -0
- package/event.d.ts +53 -0
- package/event.lua +269 -0
- package/exception.d.ts +17 -0
- package/exception.lua +53 -0
- package/file.d.ts +4 -0
- package/file.lua +42 -0
- package/global/math.d.ts +21 -0
- package/global/math.lua +72 -0
- package/global/vec2.d.ts +66 -0
- package/global/vec2.lua +159 -0
- package/index.d.ts +8 -0
- package/index.lua +9 -0
- package/lualib_bundle.lua +2629 -0
- package/math/vec2.d.ts +18 -0
- package/math/vec2.lua +42 -0
- package/math.d.ts +39 -0
- package/math.lua +91 -0
- package/net/signal.d.ts +11 -0
- package/net/signal.lua +56 -0
- package/net/socket.d.ts +9 -0
- package/net/socket.lua +26 -0
- package/network.d.ts +31 -0
- package/network.lua +194 -0
- package/objutil/ability.d.ts +710 -0
- package/objutil/ability.lua +3781 -0
- package/objutil/buff.d.ts +110 -0
- package/objutil/buff.lua +769 -0
- package/objutil/dummy.d.ts +2 -0
- package/objutil/dummy.lua +49 -0
- package/objutil/idgen.d.ts +9 -0
- package/objutil/idgen.lua +92 -0
- package/objutil/item.d.ts +38 -0
- package/objutil/item.lua +254 -0
- package/objutil/object.d.ts +43 -0
- package/objutil/object.lua +213 -0
- package/objutil/unit.d.ts +134 -0
- package/objutil/unit.lua +913 -0
- package/objutil/upgrade.d.ts +22 -0
- package/objutil/upgrade.lua +127 -0
- package/operation.d.ts +35 -0
- package/operation.lua +179 -0
- package/package.json +47 -0
- package/patch-lualib.d.ts +2 -0
- package/patch-lualib.lua +67 -0
- package/patch-natives.d.ts +11 -0
- package/patch-natives.lua +14 -0
- package/string.d.ts +106 -0
- package/string.lua +34 -0
- package/time/dayOfWeek.d.ts +97 -0
- package/time/dayOfWeek.lua +53 -0
- package/time/localDate.d.ts +145 -0
- package/time/localDate.lua +236 -0
- package/time/localDateTime.d.ts +133 -0
- package/time/localDateTime.lua +154 -0
- package/time/localTime.d.ts +87 -0
- package/time/localTime.lua +91 -0
- package/time/month.d.ts +146 -0
- package/time/month.lua +129 -0
- package/time/year.d.ts +117 -0
- package/time/year.lua +81 -0
- package/types.d.ts +13 -0
- package/types.lua +0 -0
- package/util/objectPool.d.ts +6 -0
- package/util/objectPool.lua +28 -0
- package/util/stream.d.ts +29 -0
- package/util/stream.lua +453 -0
- package/util/stringBuilder.d.ts +8 -0
- package/util/stringBuilder.lua +25 -0
- package/utility/arrays.d.ts +57 -0
- package/utility/arrays.lua +369 -0
- package/utility/base64.d.ts +23 -0
- package/utility/base64.lua +177 -0
- package/utility/bit-set.d.ts +18 -0
- package/utility/bit-set.lua +12 -0
- package/utility/functions.d.ts +5 -0
- package/utility/functions.lua +90 -0
- package/utility/json.d.ts +2 -0
- package/utility/json.lua +400 -0
- package/utility/linked-set.d.ts +49 -0
- package/utility/linked-set.lua +181 -0
- package/utility/lua-maps.d.ts +6 -0
- package/utility/lua-maps.lua +25 -0
- package/utility/lua-sets.d.ts +6 -0
- package/utility/lua-sets.lua +37 -0
- package/utility/lzw.d.ts +2 -0
- package/utility/lzw.lua +161 -0
- package/utility/observable-array.d.ts +17 -0
- package/utility/observable-array.lua +30 -0
- package/utility/preconditions.d.ts +23 -0
- package/utility/preconditions.lua +58 -0
- package/utility/records.d.ts +3 -0
- package/utility/records.lua +9 -0
- package/utility/reflection.d.ts +4 -0
- package/utility/reflection.lua +31 -0
- package/utility/strings.d.ts +2 -0
- package/utility/strings.lua +44 -0
- package/utility/types.d.ts +39 -0
- package/utility/types.lua +2 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 ElusiveMori
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2021 Rhazarian
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
SOFTWARE.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
export declare class BinaryReader {
|
|
3
|
+
private readonly s;
|
|
4
|
+
private i;
|
|
5
|
+
constructor(data: string);
|
|
6
|
+
read(fmt: string): any;
|
|
7
|
+
readBytes(size: number): string;
|
|
8
|
+
readDouble(): number;
|
|
9
|
+
readFloat(): number;
|
|
10
|
+
readInt16(): number;
|
|
11
|
+
readInt32(): number;
|
|
12
|
+
readInt8(): number;
|
|
13
|
+
readString(): string;
|
|
14
|
+
readUInt16(): number;
|
|
15
|
+
readUInt32(): number;
|
|
16
|
+
readUInt8(): number;
|
|
17
|
+
readObject<T>(clazz: {
|
|
18
|
+
deserialize(reader: BinaryReader): T;
|
|
19
|
+
}): T;
|
|
20
|
+
}
|
package/binaryreader.lua
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local ____exports = {}
|
|
4
|
+
local ____unpack = string.unpack
|
|
5
|
+
____exports.BinaryReader = __TS__Class()
|
|
6
|
+
local BinaryReader = ____exports.BinaryReader
|
|
7
|
+
BinaryReader.name = "BinaryReader"
|
|
8
|
+
function BinaryReader.prototype.____constructor(self, data)
|
|
9
|
+
self.i = 1
|
|
10
|
+
self.s = data
|
|
11
|
+
end
|
|
12
|
+
function BinaryReader.prototype.read(self, fmt)
|
|
13
|
+
local value, pos = ____unpack(">" .. fmt, self.s, self.i)
|
|
14
|
+
self.i = pos
|
|
15
|
+
return value
|
|
16
|
+
end
|
|
17
|
+
function BinaryReader.prototype.readBytes(self, size)
|
|
18
|
+
return self:read("c" .. tostring(size))
|
|
19
|
+
end
|
|
20
|
+
function BinaryReader.prototype.readDouble(self)
|
|
21
|
+
return self:read("d")
|
|
22
|
+
end
|
|
23
|
+
function BinaryReader.prototype.readFloat(self)
|
|
24
|
+
return self:read("f")
|
|
25
|
+
end
|
|
26
|
+
function BinaryReader.prototype.readInt16(self)
|
|
27
|
+
return self:read("h")
|
|
28
|
+
end
|
|
29
|
+
function BinaryReader.prototype.readInt32(self)
|
|
30
|
+
return self:read("i4")
|
|
31
|
+
end
|
|
32
|
+
function BinaryReader.prototype.readInt8(self)
|
|
33
|
+
return self:read("b")
|
|
34
|
+
end
|
|
35
|
+
function BinaryReader.prototype.readString(self)
|
|
36
|
+
return self:read("z")
|
|
37
|
+
end
|
|
38
|
+
function BinaryReader.prototype.readUInt16(self)
|
|
39
|
+
return self:read("H")
|
|
40
|
+
end
|
|
41
|
+
function BinaryReader.prototype.readUInt32(self)
|
|
42
|
+
return self:read("I4")
|
|
43
|
+
end
|
|
44
|
+
function BinaryReader.prototype.readUInt8(self)
|
|
45
|
+
return self:read("B")
|
|
46
|
+
end
|
|
47
|
+
function BinaryReader.prototype.readObject(self, clazz)
|
|
48
|
+
return clazz:deserialize(self)
|
|
49
|
+
end
|
|
50
|
+
return ____exports
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
export declare class BinaryWriter {
|
|
3
|
+
private readonly v;
|
|
4
|
+
private readonly f;
|
|
5
|
+
private i;
|
|
6
|
+
toString(): string;
|
|
7
|
+
write(fmt: string, value: number): void;
|
|
8
|
+
writeBytes(value: string): void;
|
|
9
|
+
writeDouble(value: number): void;
|
|
10
|
+
writeFloat(value: number): void;
|
|
11
|
+
writeInt16(value: number): void;
|
|
12
|
+
writeInt32(value: number): void;
|
|
13
|
+
writeInt8(value: number): void;
|
|
14
|
+
writeString(value: string): void;
|
|
15
|
+
writeUInt16(value: number): void;
|
|
16
|
+
writeUInt32(value: number): void;
|
|
17
|
+
writeUInt8(value: number): void;
|
|
18
|
+
writeObject<T>(value: {
|
|
19
|
+
serialize(writer: BinaryWriter): T;
|
|
20
|
+
}): T;
|
|
21
|
+
}
|
package/binarywriter.lua
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local ____exports = {}
|
|
4
|
+
local pack = string.pack
|
|
5
|
+
local concat = table.concat
|
|
6
|
+
local ____unpack = table.unpack
|
|
7
|
+
____exports.BinaryWriter = __TS__Class()
|
|
8
|
+
local BinaryWriter = ____exports.BinaryWriter
|
|
9
|
+
BinaryWriter.name = "BinaryWriter"
|
|
10
|
+
function BinaryWriter.prototype.____constructor(self)
|
|
11
|
+
self.v = {}
|
|
12
|
+
self.f = {">"}
|
|
13
|
+
self.i = 1
|
|
14
|
+
end
|
|
15
|
+
function BinaryWriter.prototype.__tostring(self)
|
|
16
|
+
return pack(
|
|
17
|
+
concat(self.f),
|
|
18
|
+
____unpack(self.v, 2, self.i)
|
|
19
|
+
)
|
|
20
|
+
end
|
|
21
|
+
function BinaryWriter.prototype.write(self, fmt, value)
|
|
22
|
+
local i = self.i + 1
|
|
23
|
+
self.f[i] = fmt
|
|
24
|
+
self.v[i] = value
|
|
25
|
+
self.i = i
|
|
26
|
+
end
|
|
27
|
+
function BinaryWriter.prototype.writeBytes(self, value)
|
|
28
|
+
local i = self.i + 1
|
|
29
|
+
self.f[i] = "c" .. tostring(#value)
|
|
30
|
+
self.v[i] = value
|
|
31
|
+
self.i = i
|
|
32
|
+
end
|
|
33
|
+
function BinaryWriter.prototype.writeDouble(self, value)
|
|
34
|
+
local i = self.i + 1
|
|
35
|
+
self.f[i] = "d"
|
|
36
|
+
self.v[i] = value
|
|
37
|
+
self.i = i
|
|
38
|
+
end
|
|
39
|
+
function BinaryWriter.prototype.writeFloat(self, value)
|
|
40
|
+
local i = self.i + 1
|
|
41
|
+
self.f[i] = "f"
|
|
42
|
+
self.v[i] = value
|
|
43
|
+
self.i = i
|
|
44
|
+
end
|
|
45
|
+
function BinaryWriter.prototype.writeInt16(self, value)
|
|
46
|
+
local i = self.i + 1
|
|
47
|
+
self.f[i] = "h"
|
|
48
|
+
self.v[i] = value
|
|
49
|
+
self.i = i
|
|
50
|
+
end
|
|
51
|
+
function BinaryWriter.prototype.writeInt32(self, value)
|
|
52
|
+
local i = self.i + 1
|
|
53
|
+
self.f[i] = "i4"
|
|
54
|
+
self.v[i] = value
|
|
55
|
+
self.i = i
|
|
56
|
+
end
|
|
57
|
+
function BinaryWriter.prototype.writeInt8(self, value)
|
|
58
|
+
local i = self.i + 1
|
|
59
|
+
self.f[i] = "b"
|
|
60
|
+
self.v[i] = value
|
|
61
|
+
self.i = i
|
|
62
|
+
end
|
|
63
|
+
function BinaryWriter.prototype.writeString(self, value)
|
|
64
|
+
local i = self.i + 1
|
|
65
|
+
self.f[i] = "z"
|
|
66
|
+
self.v[i] = value
|
|
67
|
+
self.i = i
|
|
68
|
+
end
|
|
69
|
+
function BinaryWriter.prototype.writeUInt16(self, value)
|
|
70
|
+
local i = self.i + 1
|
|
71
|
+
self.f[i] = "H"
|
|
72
|
+
self.v[i] = value
|
|
73
|
+
self.i = i
|
|
74
|
+
end
|
|
75
|
+
function BinaryWriter.prototype.writeUInt32(self, value)
|
|
76
|
+
local i = self.i + 1
|
|
77
|
+
self.f[i] = "I4"
|
|
78
|
+
self.v[i] = value
|
|
79
|
+
self.i = i
|
|
80
|
+
end
|
|
81
|
+
function BinaryWriter.prototype.writeUInt8(self, value)
|
|
82
|
+
local i = self.i + 1
|
|
83
|
+
self.f[i] = "B"
|
|
84
|
+
self.v[i] = value
|
|
85
|
+
self.i = i
|
|
86
|
+
end
|
|
87
|
+
function BinaryWriter.prototype.writeObject(self, value)
|
|
88
|
+
return value:serialize(self)
|
|
89
|
+
end
|
|
90
|
+
return ____exports
|
package/core/dummy.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { Widget } from "./types/widget";
|
|
3
|
+
import { Player } from "./types/player";
|
|
4
|
+
import { UnitAbility } from "./types/ability";
|
|
5
|
+
import { AbilityTypeId } from "../engine/object-data/entry/ability-type";
|
|
6
|
+
export declare class InstantDummyCaster {
|
|
7
|
+
private static instance;
|
|
8
|
+
private readonly dummy;
|
|
9
|
+
private constructor();
|
|
10
|
+
static getInstance(): InstantDummyCaster;
|
|
11
|
+
private prepare;
|
|
12
|
+
private finish;
|
|
13
|
+
castTarget(owner: Player, abilityTypeId: number, level: number | ((ability: UnitAbility) => void), orderId: number, target: Widget, pos?: Vec2): boolean;
|
|
14
|
+
castTarget<T extends [number, ...number[]]>(owner: Player, abilityTypeId: T, level: number[] | ((...abilities: {
|
|
15
|
+
[Index in keyof T]: UnitAbility;
|
|
16
|
+
}) => void), orderId: number, target: Widget, pos?: Vec2): boolean;
|
|
17
|
+
cast(owner: Player, abilityTypeId: AbilityTypeId, ...args: [
|
|
18
|
+
...levelOrAbilityConsumer: [number] | [(ability: UnitAbility) => void] | [],
|
|
19
|
+
x: number,
|
|
20
|
+
y: number
|
|
21
|
+
]): void;
|
|
22
|
+
}
|
package/core/dummy.lua
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local __TS__ArrayIsArray = ____lualib.__TS__ArrayIsArray
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____player = require("core.types.player")
|
|
7
|
+
local Player = ____player.Player
|
|
8
|
+
local ____ability = require("core.types.ability")
|
|
9
|
+
local UnitAbility = ____ability.UnitAbility
|
|
10
|
+
local ____unit = require("core.types.unit")
|
|
11
|
+
local Unit = ____unit.Unit
|
|
12
|
+
local ____dummy = require("objutil.dummy")
|
|
13
|
+
local dummyUnitId = ____dummy.dummyUnitId
|
|
14
|
+
local ____preconditions = require("utility.preconditions")
|
|
15
|
+
local checkNotNull = ____preconditions.checkNotNull
|
|
16
|
+
local ____ability = require("engine.internal.ability")
|
|
17
|
+
local getOrderIdByAbilityTypeId = ____ability.getOrderIdByAbilityTypeId
|
|
18
|
+
local neutralVictim = Player.neutralVictim.handle
|
|
19
|
+
____exports.InstantDummyCaster = __TS__Class()
|
|
20
|
+
local InstantDummyCaster = ____exports.InstantDummyCaster
|
|
21
|
+
InstantDummyCaster.name = "InstantDummyCaster"
|
|
22
|
+
function InstantDummyCaster.prototype.____constructor(self)
|
|
23
|
+
local dummy = CreateUnit(
|
|
24
|
+
neutralVictim,
|
|
25
|
+
dummyUnitId,
|
|
26
|
+
0,
|
|
27
|
+
0,
|
|
28
|
+
0
|
|
29
|
+
)
|
|
30
|
+
ShowUnit(dummy, false)
|
|
31
|
+
self.dummy = dummy
|
|
32
|
+
end
|
|
33
|
+
function InstantDummyCaster.getInstance(self)
|
|
34
|
+
if not self.instance then
|
|
35
|
+
self.instance = __TS__New(self)
|
|
36
|
+
end
|
|
37
|
+
return self.instance
|
|
38
|
+
end
|
|
39
|
+
function InstantDummyCaster.prototype.prepare(self, owner, abilityId, level)
|
|
40
|
+
local dummy = self.dummy
|
|
41
|
+
SetUnitOwner(dummy, owner.handle, false)
|
|
42
|
+
if type(abilityId) == "number" then
|
|
43
|
+
UnitAddAbility(dummy, abilityId)
|
|
44
|
+
if type(level) == "number" then
|
|
45
|
+
SetUnitAbilityLevel(dummy, abilityId, level + 1)
|
|
46
|
+
else
|
|
47
|
+
level(UnitAbility:of(
|
|
48
|
+
checkNotNull(BlzGetUnitAbility(dummy, abilityId)),
|
|
49
|
+
abilityId,
|
|
50
|
+
Unit:of(dummy)
|
|
51
|
+
))
|
|
52
|
+
end
|
|
53
|
+
else
|
|
54
|
+
for i = 1, #abilityId do
|
|
55
|
+
UnitAddAbility(dummy, abilityId[i])
|
|
56
|
+
end
|
|
57
|
+
if __TS__ArrayIsArray(level) then
|
|
58
|
+
for i = 1, #abilityId do
|
|
59
|
+
SetUnitAbilityLevel(dummy, abilityId[i], level[i] + 1)
|
|
60
|
+
end
|
|
61
|
+
else
|
|
62
|
+
local abilities = {}
|
|
63
|
+
for i = 1, #abilityId do
|
|
64
|
+
abilities[i] = UnitAbility:of(
|
|
65
|
+
checkNotNull(BlzGetUnitAbility(dummy, abilityId[i])),
|
|
66
|
+
abilityId[i],
|
|
67
|
+
Unit:of(dummy)
|
|
68
|
+
)
|
|
69
|
+
end
|
|
70
|
+
level(table.unpack(abilities))
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
SetUnitState(dummy, UNIT_STATE_MANA, 99999)
|
|
74
|
+
end
|
|
75
|
+
function InstantDummyCaster.prototype.finish(self, abilityId)
|
|
76
|
+
local dummy = self.dummy
|
|
77
|
+
SetUnitOwner(dummy, neutralVictim, false)
|
|
78
|
+
if type(abilityId) == "number" then
|
|
79
|
+
UnitRemoveAbility(dummy, abilityId)
|
|
80
|
+
else
|
|
81
|
+
for ____, id in ipairs(abilityId) do
|
|
82
|
+
UnitRemoveAbility(dummy, id)
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
ShowUnit(dummy, false)
|
|
86
|
+
end
|
|
87
|
+
function InstantDummyCaster.prototype.castTarget(self, owner, abilityId, level, orderId, target, pos)
|
|
88
|
+
self:prepare(owner, abilityId, level)
|
|
89
|
+
local dummy = self.dummy
|
|
90
|
+
if pos then
|
|
91
|
+
SetUnitX(dummy, pos.x)
|
|
92
|
+
SetUnitY(dummy, pos.y)
|
|
93
|
+
if pos.z then
|
|
94
|
+
SetUnitFlyHeight(dummy, pos.z, 99999)
|
|
95
|
+
end
|
|
96
|
+
else
|
|
97
|
+
SetUnitX(dummy, target.x)
|
|
98
|
+
SetUnitY(dummy, target.y)
|
|
99
|
+
SetUnitFlyHeight(dummy, 0, 99999)
|
|
100
|
+
end
|
|
101
|
+
local fm = CreateFogModifierRadius(
|
|
102
|
+
owner.handle,
|
|
103
|
+
FOG_OF_WAR_VISIBLE,
|
|
104
|
+
target.x,
|
|
105
|
+
target.y,
|
|
106
|
+
128,
|
|
107
|
+
false,
|
|
108
|
+
false
|
|
109
|
+
)
|
|
110
|
+
FogModifierStart(fm)
|
|
111
|
+
local result = IssueTargetOrderById(dummy, orderId, target.handle)
|
|
112
|
+
FogModifierStop(fm)
|
|
113
|
+
DestroyFogModifier(fm)
|
|
114
|
+
self:finish(abilityId)
|
|
115
|
+
return result
|
|
116
|
+
end
|
|
117
|
+
function InstantDummyCaster.prototype.cast(self, owner, abilityTypeId, levelOrAbilityConsumerOrX, xOrY, y)
|
|
118
|
+
if y == nil then
|
|
119
|
+
y = xOrY
|
|
120
|
+
xOrY = levelOrAbilityConsumerOrX
|
|
121
|
+
levelOrAbilityConsumerOrX = 1
|
|
122
|
+
end
|
|
123
|
+
self:prepare(owner, abilityTypeId, levelOrAbilityConsumerOrX)
|
|
124
|
+
local dummy = self.dummy
|
|
125
|
+
SetUnitX(dummy, xOrY)
|
|
126
|
+
SetUnitY(dummy, y)
|
|
127
|
+
IssueImmediateOrderById(
|
|
128
|
+
dummy,
|
|
129
|
+
getOrderIdByAbilityTypeId(abilityTypeId)
|
|
130
|
+
)
|
|
131
|
+
self:finish(abilityTypeId)
|
|
132
|
+
end
|
|
133
|
+
return ____exports
|
package/core/game.d.ts
ADDED
package/core/game.lua
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____player = require("core.types.player")
|
|
3
|
+
local Player = ____player.Player
|
|
4
|
+
local context = util.contextFn(
|
|
5
|
+
"game",
|
|
6
|
+
function()
|
|
7
|
+
local tracker = CreateTimer()
|
|
8
|
+
TimerStart(tracker, 60 * 60 * 24 * 365, false, nil)
|
|
9
|
+
return {tracker = tracker}
|
|
10
|
+
end
|
|
11
|
+
)
|
|
12
|
+
function ____exports.elapsedTime()
|
|
13
|
+
return TimerGetElapsed(context.tracker)
|
|
14
|
+
end
|
|
15
|
+
function ____exports.isSinglePlayer()
|
|
16
|
+
local count = 0
|
|
17
|
+
for ____, player in ipairs(Player.all) do
|
|
18
|
+
if player.isUser and player.isPlaying then
|
|
19
|
+
count = count + 1
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
return count == 1
|
|
23
|
+
end
|
|
24
|
+
return ____exports
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { Rect } from "./types/rect";
|
|
3
|
+
import { Region } from "./types/region";
|
|
4
|
+
export declare const boundRect: Rect;
|
|
5
|
+
export declare const boundRegion: Region;
|
|
6
|
+
export declare const boundMin: Readonly<Vec2>;
|
|
7
|
+
export declare const boundMax: Readonly<Vec2>;
|
|
8
|
+
export declare const boundCenter: Readonly<Vec2>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____rect = require("core.types.rect")
|
|
3
|
+
local Rect = ____rect.Rect
|
|
4
|
+
local ____region = require("core.types.region")
|
|
5
|
+
local Region = ____region.Region
|
|
6
|
+
____exports.boundRect = Rect:of(GetWorldBounds())
|
|
7
|
+
____exports.boundRegion = Region:create()
|
|
8
|
+
____exports.boundRegion:addRect(____exports.boundRect)
|
|
9
|
+
____exports.boundMin = vec2(____exports.boundRect.minX, ____exports.boundRect.minY)
|
|
10
|
+
____exports.boundMax = vec2(____exports.boundRect.maxX, ____exports.boundRect.maxY)
|
|
11
|
+
____exports.boundCenter = (____exports.boundMin + ____exports.boundMax) * 0.5
|
|
12
|
+
return ____exports
|
package/core/thread.d.ts
ADDED
package/core/thread.lua
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local ____exports = {}
|
|
5
|
+
local ____timer = require("core.types.timer")
|
|
6
|
+
local Timer = ____timer.Timer
|
|
7
|
+
local cocreate = coroutine.create
|
|
8
|
+
local coresume = coroutine.resume
|
|
9
|
+
local corunning = coroutine.running
|
|
10
|
+
local coyield = coroutine.yield
|
|
11
|
+
local cache = setmetatable({}, {__mode = "k"})
|
|
12
|
+
____exports.Thread = __TS__Class()
|
|
13
|
+
local Thread = ____exports.Thread
|
|
14
|
+
Thread.name = "Thread"
|
|
15
|
+
function Thread.prototype.____constructor(self, t)
|
|
16
|
+
self.t = t
|
|
17
|
+
cache[t] = self
|
|
18
|
+
end
|
|
19
|
+
function Thread.start(self, f)
|
|
20
|
+
local lt = cocreate(f)
|
|
21
|
+
local t = __TS__New(____exports.Thread, lt)
|
|
22
|
+
Timer:run(function()
|
|
23
|
+
coresume(lt, t)
|
|
24
|
+
end)
|
|
25
|
+
return t
|
|
26
|
+
end
|
|
27
|
+
function Thread.running(self)
|
|
28
|
+
local lt = corunning()
|
|
29
|
+
return cache[lt] or __TS__New(____exports.Thread, lt)
|
|
30
|
+
end
|
|
31
|
+
function Thread.prototype.sleep(self, seconds)
|
|
32
|
+
Timer:simple(
|
|
33
|
+
seconds,
|
|
34
|
+
function()
|
|
35
|
+
coresume(self.t)
|
|
36
|
+
end
|
|
37
|
+
)
|
|
38
|
+
coyield()
|
|
39
|
+
end
|
|
40
|
+
return ____exports
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____ability = require("engine.internal.ability")
|
|
3
|
+
local Ability = ____ability.Ability
|
|
4
|
+
local ItemAbility = ____ability.ItemAbility
|
|
5
|
+
local UnitAbility = ____ability.UnitAbility
|
|
6
|
+
require("core.types.internal.ability+cooldownRemaining")
|
|
7
|
+
____exports.Ability = Ability
|
|
8
|
+
____exports.ItemAbility = ItemAbility
|
|
9
|
+
____exports.UnitAbility = UnitAbility
|
|
10
|
+
return ____exports
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local ____exports = {}
|
|
4
|
+
____exports.Camera = __TS__Class()
|
|
5
|
+
local Camera = ____exports.Camera
|
|
6
|
+
Camera.name = "Camera"
|
|
7
|
+
function Camera.prototype.____constructor(self)
|
|
8
|
+
end
|
|
9
|
+
function Camera.setBounds(self, minX, minY, maxX, maxY)
|
|
10
|
+
SetCameraBounds(
|
|
11
|
+
minX,
|
|
12
|
+
minY,
|
|
13
|
+
minX,
|
|
14
|
+
maxY,
|
|
15
|
+
maxX,
|
|
16
|
+
maxY,
|
|
17
|
+
maxX,
|
|
18
|
+
minY
|
|
19
|
+
)
|
|
20
|
+
end
|
|
21
|
+
return ____exports
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { Handle } from "./handle";
|
|
3
|
+
export declare class CameraField extends Handle<jcamerafield> {
|
|
4
|
+
static targetDistance: CameraField;
|
|
5
|
+
static fieldOfView: CameraField;
|
|
6
|
+
static farClipping: CameraField;
|
|
7
|
+
static nearClipping: CameraField;
|
|
8
|
+
static zOffset: CameraField;
|
|
9
|
+
static yaw: CameraField;
|
|
10
|
+
static pitch: CameraField;
|
|
11
|
+
static roll: CameraField;
|
|
12
|
+
private static readonly _init;
|
|
13
|
+
get value(): number;
|
|
14
|
+
set value(v: number);
|
|
15
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____handle = require("core.types.handle")
|
|
7
|
+
local Handle = ____handle.Handle
|
|
8
|
+
____exports.CameraField = __TS__Class()
|
|
9
|
+
local CameraField = ____exports.CameraField
|
|
10
|
+
CameraField.name = "CameraField"
|
|
11
|
+
__TS__ClassExtends(CameraField, Handle)
|
|
12
|
+
CameraField._init = util.contextFn(
|
|
13
|
+
"warscript/cameraField/init",
|
|
14
|
+
function()
|
|
15
|
+
____exports.CameraField.targetDistance = ____exports.CameraField:of(CAMERA_FIELD_TARGET_DISTANCE)
|
|
16
|
+
____exports.CameraField.farClipping = ____exports.CameraField:of(CAMERA_FIELD_FARZ)
|
|
17
|
+
____exports.CameraField.pitch = ____exports.CameraField:of(CAMERA_FIELD_ANGLE_OF_ATTACK)
|
|
18
|
+
____exports.CameraField.fieldOfView = ____exports.CameraField:of(CAMERA_FIELD_FIELD_OF_VIEW)
|
|
19
|
+
____exports.CameraField.roll = ____exports.CameraField:of(CAMERA_FIELD_ROLL)
|
|
20
|
+
____exports.CameraField.yaw = ____exports.CameraField:of(CAMERA_FIELD_ROTATION)
|
|
21
|
+
____exports.CameraField.zOffset = ____exports.CameraField:of(CAMERA_FIELD_ZOFFSET)
|
|
22
|
+
____exports.CameraField.nearClipping = ____exports.CameraField:of(CAMERA_FIELD_NEARZ)
|
|
23
|
+
end
|
|
24
|
+
)
|
|
25
|
+
__TS__SetDescriptor(
|
|
26
|
+
CameraField.prototype,
|
|
27
|
+
"value",
|
|
28
|
+
{
|
|
29
|
+
get = function(self)
|
|
30
|
+
return GetCameraField(self.handle)
|
|
31
|
+
end,
|
|
32
|
+
set = function(self, v)
|
|
33
|
+
SetCameraField(self.handle, v, 0)
|
|
34
|
+
end
|
|
35
|
+
},
|
|
36
|
+
true
|
|
37
|
+
)
|
|
38
|
+
return ____exports
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
export declare class Color {
|
|
3
|
+
readonly r: number;
|
|
4
|
+
readonly g: number;
|
|
5
|
+
readonly b: number;
|
|
6
|
+
readonly a: number;
|
|
7
|
+
private constructor();
|
|
8
|
+
static readonly white: Color;
|
|
9
|
+
static readonly black: Color;
|
|
10
|
+
static readonly gold: Color;
|
|
11
|
+
static readonly silver: Color;
|
|
12
|
+
toString(): string;
|
|
13
|
+
get hexCode(): string;
|
|
14
|
+
static lerp(lhs: Color, rhs: Color, t: number): Color;
|
|
15
|
+
static of(red: number, green: number, blue: number, alpha?: number): Color;
|
|
16
|
+
}
|