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
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local __TS__ObjectDefineProperty = ____lualib.__TS__ObjectDefineProperty
|
|
5
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
6
|
+
local ____exports = {}
|
|
7
|
+
local ____common = require("core.vecmath.common")
|
|
8
|
+
local EPSILON = ____common.EPSILON
|
|
9
|
+
local Vector4 = __TS__Class()
|
|
10
|
+
Vector4.name = "Vector4"
|
|
11
|
+
function Vector4.prototype.____constructor(self, values)
|
|
12
|
+
self._values = {0, 0, 0, 0}
|
|
13
|
+
if values then
|
|
14
|
+
self.xyzw = values
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
function Vector4.lerp(self, a, b, t, dest)
|
|
18
|
+
if not dest then
|
|
19
|
+
dest = __TS__New(Vector4)
|
|
20
|
+
end
|
|
21
|
+
dest.x = a.x + t * (b.x - a.x)
|
|
22
|
+
dest.y = a.y + t * (b.y - a.y)
|
|
23
|
+
dest.z = a.z + t * (b.z - a.z)
|
|
24
|
+
dest.w = a.w + t * (b.w - a.w)
|
|
25
|
+
return dest
|
|
26
|
+
end
|
|
27
|
+
function Vector4.sum(self, vector, vector2, dest)
|
|
28
|
+
if not dest then
|
|
29
|
+
dest = __TS__New(Vector4)
|
|
30
|
+
end
|
|
31
|
+
dest.x = vector.x + vector2.x
|
|
32
|
+
dest.y = vector.y + vector2.y
|
|
33
|
+
dest.z = vector.z + vector2.z
|
|
34
|
+
dest.w = vector.w + vector2.w
|
|
35
|
+
return dest
|
|
36
|
+
end
|
|
37
|
+
function Vector4.difference(self, vector, vector2, dest)
|
|
38
|
+
if not dest then
|
|
39
|
+
dest = __TS__New(Vector4)
|
|
40
|
+
end
|
|
41
|
+
dest.x = vector.x - vector2.x
|
|
42
|
+
dest.y = vector.y - vector2.y
|
|
43
|
+
dest.z = vector.z - vector2.z
|
|
44
|
+
dest.w = vector.w - vector2.w
|
|
45
|
+
return dest
|
|
46
|
+
end
|
|
47
|
+
function Vector4.product(self, vector, vector2, dest)
|
|
48
|
+
if not dest then
|
|
49
|
+
dest = __TS__New(Vector4)
|
|
50
|
+
end
|
|
51
|
+
dest.x = vector.x * vector2.x
|
|
52
|
+
dest.y = vector.y * vector2.y
|
|
53
|
+
dest.z = vector.z * vector2.z
|
|
54
|
+
dest.w = vector.w * vector2.w
|
|
55
|
+
return dest
|
|
56
|
+
end
|
|
57
|
+
function Vector4.quotient(self, vector, vector2, dest)
|
|
58
|
+
if not dest then
|
|
59
|
+
dest = __TS__New(Vector4)
|
|
60
|
+
end
|
|
61
|
+
dest.x = vector.x / vector2.x
|
|
62
|
+
dest.y = vector.y / vector2.y
|
|
63
|
+
dest.z = vector.z / vector2.z
|
|
64
|
+
dest.w = vector.w / vector2.w
|
|
65
|
+
return dest
|
|
66
|
+
end
|
|
67
|
+
function Vector4.prototype.at(self, index)
|
|
68
|
+
return self._values[index + 1]
|
|
69
|
+
end
|
|
70
|
+
function Vector4.prototype.reset(self)
|
|
71
|
+
self.xyzw = {0, 0, 0, 0}
|
|
72
|
+
end
|
|
73
|
+
function Vector4.prototype.copy(self, dest)
|
|
74
|
+
if not dest then
|
|
75
|
+
dest = __TS__New(Vector4)
|
|
76
|
+
end
|
|
77
|
+
dest.xyzw = self.xyzw
|
|
78
|
+
return dest
|
|
79
|
+
end
|
|
80
|
+
function Vector4.prototype.negate(self, dest)
|
|
81
|
+
if not dest then
|
|
82
|
+
dest = self
|
|
83
|
+
end
|
|
84
|
+
dest.x = -self.x
|
|
85
|
+
dest.y = -self.y
|
|
86
|
+
dest.z = -self.z
|
|
87
|
+
dest.w = -self.w
|
|
88
|
+
return dest
|
|
89
|
+
end
|
|
90
|
+
function Vector4.prototype.equals(self, vector, threshold)
|
|
91
|
+
if threshold == nil then
|
|
92
|
+
threshold = EPSILON
|
|
93
|
+
end
|
|
94
|
+
if math.abs(self.x - vector.x) > threshold then
|
|
95
|
+
return false
|
|
96
|
+
end
|
|
97
|
+
if math.abs(self.y - vector.y) > threshold then
|
|
98
|
+
return false
|
|
99
|
+
end
|
|
100
|
+
if math.abs(self.z - vector.z) > threshold then
|
|
101
|
+
return false
|
|
102
|
+
end
|
|
103
|
+
if math.abs(self.w - vector.w) > threshold then
|
|
104
|
+
return false
|
|
105
|
+
end
|
|
106
|
+
return true
|
|
107
|
+
end
|
|
108
|
+
function Vector4.prototype.length(self)
|
|
109
|
+
return math.sqrt(self:squaredLength())
|
|
110
|
+
end
|
|
111
|
+
function Vector4.prototype.squaredLength(self)
|
|
112
|
+
local x = self.x
|
|
113
|
+
local y = self.y
|
|
114
|
+
local z = self.z
|
|
115
|
+
local w = self.w
|
|
116
|
+
return x * x + y * y + z * z + w * w
|
|
117
|
+
end
|
|
118
|
+
function Vector4.prototype.add(self, vector, dest)
|
|
119
|
+
if not dest then
|
|
120
|
+
dest = self
|
|
121
|
+
end
|
|
122
|
+
dest.x = self.x + vector.x
|
|
123
|
+
dest.y = self.y + vector.y
|
|
124
|
+
dest.z = self.z + vector.z
|
|
125
|
+
dest.w = self.w + vector.w
|
|
126
|
+
return dest
|
|
127
|
+
end
|
|
128
|
+
function Vector4.prototype.subtract(self, vector, dest)
|
|
129
|
+
if not dest then
|
|
130
|
+
dest = self
|
|
131
|
+
end
|
|
132
|
+
dest.x = self.x - vector.x
|
|
133
|
+
dest.y = self.y - vector.y
|
|
134
|
+
dest.z = self.z - vector.z
|
|
135
|
+
dest.w = self.w - vector.w
|
|
136
|
+
return dest
|
|
137
|
+
end
|
|
138
|
+
function Vector4.prototype.multiply(self, vector, dest)
|
|
139
|
+
if not dest then
|
|
140
|
+
dest = self
|
|
141
|
+
end
|
|
142
|
+
dest.x = self.x * vector.x
|
|
143
|
+
dest.y = self.y * vector.y
|
|
144
|
+
dest.z = self.z * vector.z
|
|
145
|
+
dest.w = self.w * vector.w
|
|
146
|
+
return dest
|
|
147
|
+
end
|
|
148
|
+
function Vector4.prototype.divide(self, vector, dest)
|
|
149
|
+
if not dest then
|
|
150
|
+
dest = self
|
|
151
|
+
end
|
|
152
|
+
dest.x = self.x / vector.x
|
|
153
|
+
dest.y = self.y / vector.y
|
|
154
|
+
dest.z = self.z / vector.z
|
|
155
|
+
dest.w = self.w / vector.w
|
|
156
|
+
return dest
|
|
157
|
+
end
|
|
158
|
+
function Vector4.prototype.scale(self, value, dest)
|
|
159
|
+
if not dest then
|
|
160
|
+
dest = self
|
|
161
|
+
end
|
|
162
|
+
dest.x = self.x * value
|
|
163
|
+
dest.y = self.y * value
|
|
164
|
+
dest.z = self.z * value
|
|
165
|
+
dest.w = self.w * value
|
|
166
|
+
return dest
|
|
167
|
+
end
|
|
168
|
+
function Vector4.prototype.normalize(self, dest)
|
|
169
|
+
if not dest then
|
|
170
|
+
dest = self
|
|
171
|
+
end
|
|
172
|
+
dest.xyzw = self.xyzw
|
|
173
|
+
local length = dest:length()
|
|
174
|
+
if length == 1 then
|
|
175
|
+
return dest
|
|
176
|
+
end
|
|
177
|
+
if length == 0 then
|
|
178
|
+
dest.x = dest.x * 0
|
|
179
|
+
dest.y = dest.y * 0
|
|
180
|
+
dest.z = dest.z * 0
|
|
181
|
+
dest.w = dest.w * 0
|
|
182
|
+
return dest
|
|
183
|
+
end
|
|
184
|
+
length = 1 / length
|
|
185
|
+
dest.x = dest.x * length
|
|
186
|
+
dest.y = dest.y * length
|
|
187
|
+
dest.z = dest.z * length
|
|
188
|
+
dest.w = dest.w * length
|
|
189
|
+
return dest
|
|
190
|
+
end
|
|
191
|
+
__TS__ObjectDefineProperty(
|
|
192
|
+
Vector4,
|
|
193
|
+
"zero",
|
|
194
|
+
{get = function(self)
|
|
195
|
+
return __TS__New(Vector4, {0, 0, 0, 0})
|
|
196
|
+
end}
|
|
197
|
+
)
|
|
198
|
+
__TS__ObjectDefineProperty(
|
|
199
|
+
Vector4,
|
|
200
|
+
"one",
|
|
201
|
+
{get = function(self)
|
|
202
|
+
return __TS__New(Vector4, {1, 1, 1, 1})
|
|
203
|
+
end}
|
|
204
|
+
)
|
|
205
|
+
__TS__SetDescriptor(
|
|
206
|
+
Vector4.prototype,
|
|
207
|
+
"x",
|
|
208
|
+
{
|
|
209
|
+
get = function(self)
|
|
210
|
+
return self._values[1]
|
|
211
|
+
end,
|
|
212
|
+
set = function(self, value)
|
|
213
|
+
self._values[1] = value
|
|
214
|
+
end
|
|
215
|
+
},
|
|
216
|
+
true
|
|
217
|
+
)
|
|
218
|
+
__TS__SetDescriptor(
|
|
219
|
+
Vector4.prototype,
|
|
220
|
+
"y",
|
|
221
|
+
{
|
|
222
|
+
get = function(self)
|
|
223
|
+
return self._values[2]
|
|
224
|
+
end,
|
|
225
|
+
set = function(self, value)
|
|
226
|
+
self._values[2] = value
|
|
227
|
+
end
|
|
228
|
+
},
|
|
229
|
+
true
|
|
230
|
+
)
|
|
231
|
+
__TS__SetDescriptor(
|
|
232
|
+
Vector4.prototype,
|
|
233
|
+
"z",
|
|
234
|
+
{
|
|
235
|
+
get = function(self)
|
|
236
|
+
return self._values[3]
|
|
237
|
+
end,
|
|
238
|
+
set = function(self, value)
|
|
239
|
+
self._values[3] = value
|
|
240
|
+
end
|
|
241
|
+
},
|
|
242
|
+
true
|
|
243
|
+
)
|
|
244
|
+
__TS__SetDescriptor(
|
|
245
|
+
Vector4.prototype,
|
|
246
|
+
"w",
|
|
247
|
+
{
|
|
248
|
+
get = function(self)
|
|
249
|
+
return self._values[4]
|
|
250
|
+
end,
|
|
251
|
+
set = function(self, value)
|
|
252
|
+
self._values[4] = value
|
|
253
|
+
end
|
|
254
|
+
},
|
|
255
|
+
true
|
|
256
|
+
)
|
|
257
|
+
__TS__SetDescriptor(
|
|
258
|
+
Vector4.prototype,
|
|
259
|
+
"xy",
|
|
260
|
+
{
|
|
261
|
+
get = function(self)
|
|
262
|
+
return {self._values[1], self._values[2]}
|
|
263
|
+
end,
|
|
264
|
+
set = function(self, values)
|
|
265
|
+
self._values[1] = values[1]
|
|
266
|
+
self._values[2] = values[2]
|
|
267
|
+
end
|
|
268
|
+
},
|
|
269
|
+
true
|
|
270
|
+
)
|
|
271
|
+
__TS__SetDescriptor(
|
|
272
|
+
Vector4.prototype,
|
|
273
|
+
"xyz",
|
|
274
|
+
{
|
|
275
|
+
get = function(self)
|
|
276
|
+
return {self._values[1], self._values[2], self._values[3]}
|
|
277
|
+
end,
|
|
278
|
+
set = function(self, values)
|
|
279
|
+
self._values[1] = values[1]
|
|
280
|
+
self._values[2] = values[2]
|
|
281
|
+
self._values[3] = values[3]
|
|
282
|
+
end
|
|
283
|
+
},
|
|
284
|
+
true
|
|
285
|
+
)
|
|
286
|
+
__TS__SetDescriptor(
|
|
287
|
+
Vector4.prototype,
|
|
288
|
+
"xyzw",
|
|
289
|
+
{
|
|
290
|
+
get = function(self)
|
|
291
|
+
return {self._values[1], self._values[2], self._values[3], self._values[4]}
|
|
292
|
+
end,
|
|
293
|
+
set = function(self, values)
|
|
294
|
+
self._values[1] = values[1]
|
|
295
|
+
self._values[2] = values[2]
|
|
296
|
+
self._values[3] = values[3]
|
|
297
|
+
self._values[4] = values[4]
|
|
298
|
+
end
|
|
299
|
+
},
|
|
300
|
+
true
|
|
301
|
+
)
|
|
302
|
+
__TS__SetDescriptor(
|
|
303
|
+
Vector4.prototype,
|
|
304
|
+
"r",
|
|
305
|
+
{
|
|
306
|
+
get = function(self)
|
|
307
|
+
return self._values[1]
|
|
308
|
+
end,
|
|
309
|
+
set = function(self, value)
|
|
310
|
+
self._values[1] = value
|
|
311
|
+
end
|
|
312
|
+
},
|
|
313
|
+
true
|
|
314
|
+
)
|
|
315
|
+
__TS__SetDescriptor(
|
|
316
|
+
Vector4.prototype,
|
|
317
|
+
"g",
|
|
318
|
+
{
|
|
319
|
+
get = function(self)
|
|
320
|
+
return self._values[2]
|
|
321
|
+
end,
|
|
322
|
+
set = function(self, value)
|
|
323
|
+
self._values[2] = value
|
|
324
|
+
end
|
|
325
|
+
},
|
|
326
|
+
true
|
|
327
|
+
)
|
|
328
|
+
__TS__SetDescriptor(
|
|
329
|
+
Vector4.prototype,
|
|
330
|
+
"b",
|
|
331
|
+
{
|
|
332
|
+
get = function(self)
|
|
333
|
+
return self._values[3]
|
|
334
|
+
end,
|
|
335
|
+
set = function(self, value)
|
|
336
|
+
self._values[3] = value
|
|
337
|
+
end
|
|
338
|
+
},
|
|
339
|
+
true
|
|
340
|
+
)
|
|
341
|
+
__TS__SetDescriptor(
|
|
342
|
+
Vector4.prototype,
|
|
343
|
+
"a",
|
|
344
|
+
{
|
|
345
|
+
get = function(self)
|
|
346
|
+
return self._values[4]
|
|
347
|
+
end,
|
|
348
|
+
set = function(self, value)
|
|
349
|
+
self._values[4] = value
|
|
350
|
+
end
|
|
351
|
+
},
|
|
352
|
+
true
|
|
353
|
+
)
|
|
354
|
+
__TS__SetDescriptor(
|
|
355
|
+
Vector4.prototype,
|
|
356
|
+
"rg",
|
|
357
|
+
{
|
|
358
|
+
get = function(self)
|
|
359
|
+
return {self._values[1], self._values[2]}
|
|
360
|
+
end,
|
|
361
|
+
set = function(self, values)
|
|
362
|
+
self._values[1] = values[1]
|
|
363
|
+
self._values[2] = values[2]
|
|
364
|
+
end
|
|
365
|
+
},
|
|
366
|
+
true
|
|
367
|
+
)
|
|
368
|
+
__TS__SetDescriptor(
|
|
369
|
+
Vector4.prototype,
|
|
370
|
+
"rgb",
|
|
371
|
+
{
|
|
372
|
+
get = function(self)
|
|
373
|
+
return {self._values[1], self._values[2], self._values[3]}
|
|
374
|
+
end,
|
|
375
|
+
set = function(self, values)
|
|
376
|
+
self._values[1] = values[1]
|
|
377
|
+
self._values[2] = values[2]
|
|
378
|
+
self._values[3] = values[3]
|
|
379
|
+
end
|
|
380
|
+
},
|
|
381
|
+
true
|
|
382
|
+
)
|
|
383
|
+
__TS__SetDescriptor(
|
|
384
|
+
Vector4.prototype,
|
|
385
|
+
"rgba",
|
|
386
|
+
{
|
|
387
|
+
get = function(self)
|
|
388
|
+
return {self._values[1], self._values[2], self._values[3], self._values[4]}
|
|
389
|
+
end,
|
|
390
|
+
set = function(self, values)
|
|
391
|
+
self._values[1] = values[1]
|
|
392
|
+
self._values[2] = values[2]
|
|
393
|
+
self._values[3] = values[3]
|
|
394
|
+
self._values[4] = values[4]
|
|
395
|
+
end
|
|
396
|
+
},
|
|
397
|
+
true
|
|
398
|
+
)
|
|
399
|
+
____exports.default = Vector4
|
|
400
|
+
return ____exports
|
package/crypto/ecc.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export function keypair(
|
|
2
|
+
this: void,
|
|
3
|
+
seed?: string
|
|
4
|
+
): LuaMultiReturn<[privateKey: string, publicKey: string]>
|
|
5
|
+
export function sign(this: void, privateKey: string, data: string): string
|
|
6
|
+
export function verify(this: void, publicKey: string, signature: string, data: string): boolean
|