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,154 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____localDate = require("time.localDate")
|
|
7
|
+
local LocalDate = ____localDate.LocalDate
|
|
8
|
+
local ____localTime = require("time.localTime")
|
|
9
|
+
local LocalTime = ____localTime.LocalTime
|
|
10
|
+
local date = os.date
|
|
11
|
+
local pack = string.pack
|
|
12
|
+
local cache = {}
|
|
13
|
+
____exports.LocalDateTime = __TS__Class()
|
|
14
|
+
local LocalDateTime = ____exports.LocalDateTime
|
|
15
|
+
LocalDateTime.name = "LocalDateTime"
|
|
16
|
+
function LocalDateTime.prototype.____constructor(self, date, time, key)
|
|
17
|
+
self.date = date
|
|
18
|
+
self.time = time
|
|
19
|
+
self.key = key
|
|
20
|
+
cache[key] = self
|
|
21
|
+
end
|
|
22
|
+
function LocalDateTime.now()
|
|
23
|
+
local info = date("*t")
|
|
24
|
+
return ____exports.LocalDateTime:of(
|
|
25
|
+
info.year,
|
|
26
|
+
info.month,
|
|
27
|
+
info.day,
|
|
28
|
+
info.hour,
|
|
29
|
+
info.min,
|
|
30
|
+
info.sec
|
|
31
|
+
)
|
|
32
|
+
end
|
|
33
|
+
function LocalDateTime.of(self, year, month, dayOfMonth, hour, minute, second)
|
|
34
|
+
month = type(month) == "number" and month or month.value
|
|
35
|
+
local key = pack(
|
|
36
|
+
">i4BBBBB",
|
|
37
|
+
year,
|
|
38
|
+
month,
|
|
39
|
+
dayOfMonth,
|
|
40
|
+
hour,
|
|
41
|
+
minute,
|
|
42
|
+
second
|
|
43
|
+
)
|
|
44
|
+
return cache[key] or __TS__New(
|
|
45
|
+
____exports.LocalDateTime,
|
|
46
|
+
LocalDate:of(year, month, dayOfMonth),
|
|
47
|
+
LocalTime:of(hour, minute, second),
|
|
48
|
+
key
|
|
49
|
+
)
|
|
50
|
+
end
|
|
51
|
+
function LocalDateTime.ofEpochSecond(self, epochSecond)
|
|
52
|
+
local info = date("*t", epochSecond)
|
|
53
|
+
return ____exports.LocalDateTime:of(
|
|
54
|
+
info.year,
|
|
55
|
+
info.month,
|
|
56
|
+
info.day,
|
|
57
|
+
info.hour,
|
|
58
|
+
info.min,
|
|
59
|
+
info.sec
|
|
60
|
+
)
|
|
61
|
+
end
|
|
62
|
+
function LocalDateTime.deserialize(self, reader)
|
|
63
|
+
return ____exports.LocalDateTime:of(
|
|
64
|
+
reader:readInt32(),
|
|
65
|
+
reader:readUInt8(),
|
|
66
|
+
reader:readUInt8(),
|
|
67
|
+
reader:readUInt8(),
|
|
68
|
+
reader:readUInt8(),
|
|
69
|
+
reader:readUInt8()
|
|
70
|
+
)
|
|
71
|
+
end
|
|
72
|
+
function LocalDateTime.prototype.serialize(self, writer)
|
|
73
|
+
writer:writeBytes(self.key)
|
|
74
|
+
end
|
|
75
|
+
function LocalDateTime.prototype.toLocalDate(self)
|
|
76
|
+
return self.date
|
|
77
|
+
end
|
|
78
|
+
function LocalDateTime.prototype.toLocalTime(self)
|
|
79
|
+
return self.time
|
|
80
|
+
end
|
|
81
|
+
function LocalDateTime.prototype.__tostring(self)
|
|
82
|
+
return (tostring(self.date) .. "T") .. tostring(self.time)
|
|
83
|
+
end
|
|
84
|
+
function LocalDateTime.prototype.__lt(self, other)
|
|
85
|
+
return self.date <= other.date and (self.date ~= other.date or self.time < other.time)
|
|
86
|
+
end
|
|
87
|
+
function LocalDateTime.prototype.__le(self, other)
|
|
88
|
+
return self.date <= other.date and (self.date ~= other.date or self.time <= other.time)
|
|
89
|
+
end
|
|
90
|
+
__TS__SetDescriptor(
|
|
91
|
+
LocalDateTime.prototype,
|
|
92
|
+
"year",
|
|
93
|
+
{get = function(self)
|
|
94
|
+
return self.date.year
|
|
95
|
+
end},
|
|
96
|
+
true
|
|
97
|
+
)
|
|
98
|
+
__TS__SetDescriptor(
|
|
99
|
+
LocalDateTime.prototype,
|
|
100
|
+
"month",
|
|
101
|
+
{get = function(self)
|
|
102
|
+
return self.date.month
|
|
103
|
+
end},
|
|
104
|
+
true
|
|
105
|
+
)
|
|
106
|
+
__TS__SetDescriptor(
|
|
107
|
+
LocalDateTime.prototype,
|
|
108
|
+
"dayOfMonth",
|
|
109
|
+
{get = function(self)
|
|
110
|
+
return self.date.dayOfMonth
|
|
111
|
+
end},
|
|
112
|
+
true
|
|
113
|
+
)
|
|
114
|
+
__TS__SetDescriptor(
|
|
115
|
+
LocalDateTime.prototype,
|
|
116
|
+
"dayOfYear",
|
|
117
|
+
{get = function(self)
|
|
118
|
+
return self.date.dayOfYear
|
|
119
|
+
end},
|
|
120
|
+
true
|
|
121
|
+
)
|
|
122
|
+
__TS__SetDescriptor(
|
|
123
|
+
LocalDateTime.prototype,
|
|
124
|
+
"dayOfWeek",
|
|
125
|
+
{get = function(self)
|
|
126
|
+
return self.date.dayOfWeek
|
|
127
|
+
end},
|
|
128
|
+
true
|
|
129
|
+
)
|
|
130
|
+
__TS__SetDescriptor(
|
|
131
|
+
LocalDateTime.prototype,
|
|
132
|
+
"hour",
|
|
133
|
+
{get = function(self)
|
|
134
|
+
return self.time.hour
|
|
135
|
+
end},
|
|
136
|
+
true
|
|
137
|
+
)
|
|
138
|
+
__TS__SetDescriptor(
|
|
139
|
+
LocalDateTime.prototype,
|
|
140
|
+
"minute",
|
|
141
|
+
{get = function(self)
|
|
142
|
+
return self.time.minute
|
|
143
|
+
end},
|
|
144
|
+
true
|
|
145
|
+
)
|
|
146
|
+
__TS__SetDescriptor(
|
|
147
|
+
LocalDateTime.prototype,
|
|
148
|
+
"second",
|
|
149
|
+
{get = function(self)
|
|
150
|
+
return self.time.second
|
|
151
|
+
end},
|
|
152
|
+
true
|
|
153
|
+
)
|
|
154
|
+
return ____exports
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { BinaryReader } from "../binaryreader";
|
|
3
|
+
import { BinaryWriter } from "../binarywriter";
|
|
4
|
+
export declare class LocalTime {
|
|
5
|
+
readonly hour: number;
|
|
6
|
+
readonly minute: number;
|
|
7
|
+
readonly second: number;
|
|
8
|
+
private readonly key;
|
|
9
|
+
/**
|
|
10
|
+
* The minimum supported {@code LocalTime}, '00:00'.
|
|
11
|
+
* This is the time of midnight at the start of the day.
|
|
12
|
+
*/
|
|
13
|
+
static readonly MIN: LocalTime;
|
|
14
|
+
/**
|
|
15
|
+
* The maximum supported {@code LocalTime}, '23:59:59'.
|
|
16
|
+
* This is the time just before midnight at the end of the day.
|
|
17
|
+
*/
|
|
18
|
+
static readonly MAX: LocalTime;
|
|
19
|
+
/**
|
|
20
|
+
* The time of midnight at the start of the day, '00:00'.
|
|
21
|
+
*/
|
|
22
|
+
static readonly MIDNIGHT: LocalTime;
|
|
23
|
+
/**
|
|
24
|
+
* The time of noon in the middle of the day, '12:00'.
|
|
25
|
+
*/
|
|
26
|
+
static readonly NOON: LocalTime;
|
|
27
|
+
/**
|
|
28
|
+
* Hours per day.
|
|
29
|
+
*/
|
|
30
|
+
static readonly HOURS_PER_DAY = 24;
|
|
31
|
+
/**
|
|
32
|
+
* Minutes per hour.
|
|
33
|
+
*/
|
|
34
|
+
static readonly MINUTES_PER_HOUR = 60;
|
|
35
|
+
/**
|
|
36
|
+
* Minutes per day.
|
|
37
|
+
*/
|
|
38
|
+
static readonly MINUTES_PER_DAY: number;
|
|
39
|
+
/**
|
|
40
|
+
* Seconds per minute.
|
|
41
|
+
*/
|
|
42
|
+
static readonly SECONDS_PER_MINUTE = 60;
|
|
43
|
+
/**
|
|
44
|
+
* Seconds per hour.
|
|
45
|
+
*/
|
|
46
|
+
static readonly SECONDS_PER_HOUR: number;
|
|
47
|
+
/**
|
|
48
|
+
* Seconds per day.
|
|
49
|
+
*/
|
|
50
|
+
static readonly SECONDS_PER_DAY: number;
|
|
51
|
+
private constructor();
|
|
52
|
+
/**
|
|
53
|
+
* Obtains the current time from the system clock in the default time-zone.
|
|
54
|
+
*
|
|
55
|
+
* @return the current time using the system clock and default time-zone
|
|
56
|
+
*/
|
|
57
|
+
static now(): LocalTime;
|
|
58
|
+
/**
|
|
59
|
+
* Obtains an instance of {@code LocalTime} from an hour, minute and second.
|
|
60
|
+
* <p>
|
|
61
|
+
* This returns a {@code LocalTime} with the specified hour, minute and second.
|
|
62
|
+
*
|
|
63
|
+
* @param hour the hour-of-day to represent, from 0 to 23
|
|
64
|
+
* @param minute the minute-of-hour to represent, from 0 to 59
|
|
65
|
+
* @param second the second-of-minute to represent, from 0 to 59
|
|
66
|
+
* @return the local time
|
|
67
|
+
*/
|
|
68
|
+
static of(hour: number, minute: number, second?: number): LocalTime;
|
|
69
|
+
static deserialize(reader: BinaryReader): LocalTime;
|
|
70
|
+
serialize(writer: BinaryWriter): void;
|
|
71
|
+
/**
|
|
72
|
+
* Outputs this time as a {@code String}, such as {@code 10:15}.
|
|
73
|
+
* <p>
|
|
74
|
+
* The output will be one of the following ISO-8601 formats:
|
|
75
|
+
* <ul>
|
|
76
|
+
* <li>{@code HH:mm}</li>
|
|
77
|
+
* <li>{@code HH:mm:ss}</li>
|
|
78
|
+
* </ul>
|
|
79
|
+
* The format used will be the shortest that outputs the full value of
|
|
80
|
+
* the time where the omitted parts are implied to be zero.
|
|
81
|
+
*
|
|
82
|
+
* @return a string representation of this time
|
|
83
|
+
*/
|
|
84
|
+
toString(): string;
|
|
85
|
+
private __lt;
|
|
86
|
+
private __le;
|
|
87
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
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 ____stringBuilder = require("util.stringBuilder")
|
|
6
|
+
local StringBuilder = ____stringBuilder.StringBuilder
|
|
7
|
+
local date = os.date
|
|
8
|
+
local pack = string.pack
|
|
9
|
+
local cache = setmetatable({}, {__mode = "v"})
|
|
10
|
+
____exports.LocalTime = __TS__Class()
|
|
11
|
+
local LocalTime = ____exports.LocalTime
|
|
12
|
+
LocalTime.name = "LocalTime"
|
|
13
|
+
function LocalTime.prototype.____constructor(self, hour, minute, second, key)
|
|
14
|
+
self.hour = hour
|
|
15
|
+
self.minute = minute
|
|
16
|
+
self.second = second
|
|
17
|
+
self.key = key
|
|
18
|
+
assert(math.type(hour) == "integer" and hour >= 0 and hour <= 23)
|
|
19
|
+
assert(math.type(minute) == "integer" and minute >= 0 and minute <= 59)
|
|
20
|
+
assert(math.type(second) == "integer" and second >= 0 and second <= 59)
|
|
21
|
+
cache[key] = self
|
|
22
|
+
end
|
|
23
|
+
function LocalTime.now(self)
|
|
24
|
+
local info = date("*t")
|
|
25
|
+
return ____exports.LocalTime:of(info.hour, info.min, info.sec)
|
|
26
|
+
end
|
|
27
|
+
function LocalTime.of(self, hour, minute, second)
|
|
28
|
+
if second == nil then
|
|
29
|
+
second = 0
|
|
30
|
+
end
|
|
31
|
+
local key = pack(">BBB", hour, minute, second)
|
|
32
|
+
return cache[key] or __TS__New(
|
|
33
|
+
____exports.LocalTime,
|
|
34
|
+
hour,
|
|
35
|
+
minute,
|
|
36
|
+
second,
|
|
37
|
+
key
|
|
38
|
+
)
|
|
39
|
+
end
|
|
40
|
+
function LocalTime.deserialize(self, reader)
|
|
41
|
+
return ____exports.LocalTime:of(
|
|
42
|
+
reader:readUInt8(),
|
|
43
|
+
reader:readUInt8(),
|
|
44
|
+
reader:readUInt8()
|
|
45
|
+
)
|
|
46
|
+
end
|
|
47
|
+
function LocalTime.prototype.serialize(self, writer)
|
|
48
|
+
writer:writeBytes(self.key)
|
|
49
|
+
end
|
|
50
|
+
function LocalTime.prototype.__tostring(self)
|
|
51
|
+
local hour = self.hour
|
|
52
|
+
local minute = self.minute
|
|
53
|
+
local second = self.second
|
|
54
|
+
local sb = __TS__New(StringBuilder)
|
|
55
|
+
sb:append(hour < 10 and "0" or ""):append(hour):append(minute < 10 and ":0" or ":"):append(minute)
|
|
56
|
+
if second > 0 then
|
|
57
|
+
sb:append(second < 10 and ":0" or ":"):append(second)
|
|
58
|
+
end
|
|
59
|
+
return tostring(sb)
|
|
60
|
+
end
|
|
61
|
+
function LocalTime.prototype.__lt(self, other)
|
|
62
|
+
local cmp = self.hour - other.hour
|
|
63
|
+
if cmp == 0 then
|
|
64
|
+
cmp = self.minute - other.minute
|
|
65
|
+
if cmp == 0 then
|
|
66
|
+
cmp = self.second - other.second
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
return cmp < 0
|
|
70
|
+
end
|
|
71
|
+
function LocalTime.prototype.__le(self, other)
|
|
72
|
+
local cmp = self.hour - other.hour
|
|
73
|
+
if cmp == 0 then
|
|
74
|
+
cmp = self.minute - other.minute
|
|
75
|
+
if cmp == 0 then
|
|
76
|
+
cmp = self.second - other.second
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
return cmp <= 0
|
|
80
|
+
end
|
|
81
|
+
LocalTime.MIN = ____exports.LocalTime:of(0, 0, 0)
|
|
82
|
+
LocalTime.MAX = ____exports.LocalTime:of(23, 59, 59)
|
|
83
|
+
LocalTime.MIDNIGHT = ____exports.LocalTime:of(0, 0, 0)
|
|
84
|
+
LocalTime.NOON = ____exports.LocalTime:of(12, 0, 0)
|
|
85
|
+
LocalTime.HOURS_PER_DAY = 24
|
|
86
|
+
LocalTime.MINUTES_PER_HOUR = 60
|
|
87
|
+
LocalTime.MINUTES_PER_DAY = ____exports.LocalTime.MINUTES_PER_HOUR * ____exports.LocalTime.HOURS_PER_DAY
|
|
88
|
+
LocalTime.SECONDS_PER_MINUTE = 60
|
|
89
|
+
LocalTime.SECONDS_PER_HOUR = ____exports.LocalTime.SECONDS_PER_MINUTE * ____exports.LocalTime.MINUTES_PER_HOUR
|
|
90
|
+
LocalTime.SECONDS_PER_DAY = ____exports.LocalTime.SECONDS_PER_HOUR * ____exports.LocalTime.HOURS_PER_DAY
|
|
91
|
+
return ____exports
|
package/time/month.d.ts
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { BinaryReader } from "../binaryreader";
|
|
3
|
+
import { BinaryWriter } from "../binarywriter";
|
|
4
|
+
/**
|
|
5
|
+
* A month-of-year, such as 'July'.
|
|
6
|
+
* <p>
|
|
7
|
+
* {@code Month} is a class representing the 12 months of the year -
|
|
8
|
+
* January, February, March, April, May, June, July, August, September, October,
|
|
9
|
+
* November and December.
|
|
10
|
+
* <p>
|
|
11
|
+
* This class represents a common concept that is found in many calendar systems.
|
|
12
|
+
* As such, this class may be used by any calendar system that has the month-of-year
|
|
13
|
+
* concept defined exactly equivalent to the ISO-8601 calendar system.
|
|
14
|
+
*/
|
|
15
|
+
export declare class Month {
|
|
16
|
+
readonly value: number;
|
|
17
|
+
/**
|
|
18
|
+
* The singleton instance for the month of January with 31 days.
|
|
19
|
+
* This has the numeric value of {@code 1}.
|
|
20
|
+
*/
|
|
21
|
+
static readonly JANUARY: Month;
|
|
22
|
+
/**
|
|
23
|
+
* The singleton instance for the month of February with 28 days, or 29 in a leap year.
|
|
24
|
+
* This has the numeric value of {@code 2}.
|
|
25
|
+
*/
|
|
26
|
+
static readonly FEBRUARY: Month;
|
|
27
|
+
/**
|
|
28
|
+
* The singleton instance for the month of March with 31 days.
|
|
29
|
+
* This has the numeric value of {@code 3}.
|
|
30
|
+
*/
|
|
31
|
+
static readonly MARCH: Month;
|
|
32
|
+
/**
|
|
33
|
+
* The singleton instance for the month of April with 30 days.
|
|
34
|
+
* This has the numeric value of {@code 4}.
|
|
35
|
+
*/
|
|
36
|
+
static readonly APRIL: Month;
|
|
37
|
+
/**
|
|
38
|
+
* The singleton instance for the month of May with 31 days.
|
|
39
|
+
* This has the numeric value of {@code 5}.
|
|
40
|
+
*/
|
|
41
|
+
static readonly MAY: Month;
|
|
42
|
+
/**
|
|
43
|
+
* The singleton instance for the month of June with 30 days.
|
|
44
|
+
* This has the numeric value of {@code 6}.
|
|
45
|
+
*/
|
|
46
|
+
static readonly JUNE: Month;
|
|
47
|
+
/**
|
|
48
|
+
* The singleton instance for the month of July with 31 days.
|
|
49
|
+
* This has the numeric value of {@code 7}.
|
|
50
|
+
*/
|
|
51
|
+
static readonly JULY: Month;
|
|
52
|
+
/**
|
|
53
|
+
* The singleton instance for the month of August with 31 days.
|
|
54
|
+
* This has the numeric value of {@code 8}.
|
|
55
|
+
*/
|
|
56
|
+
static readonly AUGUST: Month;
|
|
57
|
+
/**
|
|
58
|
+
* The singleton instance for the month of September with 30 days.
|
|
59
|
+
* This has the numeric value of {@code 9}.
|
|
60
|
+
*/
|
|
61
|
+
static readonly SEPTEMBER: Month;
|
|
62
|
+
/**
|
|
63
|
+
* The singleton instance for the month of October with 31 days.
|
|
64
|
+
* This has the numeric value of {@code 10}.
|
|
65
|
+
*/
|
|
66
|
+
static readonly OCTOBER: Month;
|
|
67
|
+
/**
|
|
68
|
+
* The singleton instance for the month of November with 30 days.
|
|
69
|
+
* This has the numeric value of {@code 11}.
|
|
70
|
+
*/
|
|
71
|
+
static readonly NOVEMBER: Month;
|
|
72
|
+
/**
|
|
73
|
+
* The singleton instance for the month of December with 31 days.
|
|
74
|
+
* This has the numeric value of {@code 12}.
|
|
75
|
+
*/
|
|
76
|
+
static readonly DECEMBER: Month;
|
|
77
|
+
private constructor();
|
|
78
|
+
/**
|
|
79
|
+
* Obtains an instance of {@code Month} from an {@code int} value.
|
|
80
|
+
* <p>
|
|
81
|
+
* {@code Month} is a class representing the 12 months of the year.
|
|
82
|
+
* This factory allows the class to be obtained from the {@code int} value.
|
|
83
|
+
* The {@code int} value follows the ISO-8601 standard, from 1 (January) to 12 (December).
|
|
84
|
+
*
|
|
85
|
+
* @param month the month-of-year to represent, from 1 (January) to 12 (December)
|
|
86
|
+
* @return the month-of-year
|
|
87
|
+
*/
|
|
88
|
+
static of(month: number): Month;
|
|
89
|
+
static deserialize(reader: BinaryReader): Month;
|
|
90
|
+
serialize(writer: BinaryWriter): void;
|
|
91
|
+
/**
|
|
92
|
+
* Returns the month-of-year that is the specified number of months after this one.
|
|
93
|
+
* <p>
|
|
94
|
+
* The calculation rolls around the end of the year from December to January.
|
|
95
|
+
* The specified period may be negative.
|
|
96
|
+
* <p>
|
|
97
|
+
* This instance is immutable and unaffected by this method call.
|
|
98
|
+
*
|
|
99
|
+
* @param months the months to add, positive or negative
|
|
100
|
+
* @return the resulting month
|
|
101
|
+
*/
|
|
102
|
+
plus(months: number): Month;
|
|
103
|
+
/**
|
|
104
|
+
* Returns the month-of-year that is the specified number of months before this one.
|
|
105
|
+
* <p>
|
|
106
|
+
* The calculation rolls around the start of the year from January to December.
|
|
107
|
+
* The specified period may be negative.
|
|
108
|
+
* <p>
|
|
109
|
+
* This instance is immutable and unaffected by this method call.
|
|
110
|
+
*
|
|
111
|
+
* @param months the months to subtract, positive or negative
|
|
112
|
+
* @return the resulting month
|
|
113
|
+
*/
|
|
114
|
+
minus(months: number): Month;
|
|
115
|
+
/**
|
|
116
|
+
* Gets the length of this month in days.
|
|
117
|
+
* <p>
|
|
118
|
+
* This takes a flag to determine whether to return the length for a leap year or not.
|
|
119
|
+
* <p>
|
|
120
|
+
* February has 28 days in a standard year and 29 days in a leap year.
|
|
121
|
+
* April, June, September and November have 30 days.
|
|
122
|
+
* All other months have 31 days.
|
|
123
|
+
*
|
|
124
|
+
* @param leapYear true if the length is required for a leap year
|
|
125
|
+
* @return the length of this month in days, from 28 to 31
|
|
126
|
+
*/
|
|
127
|
+
getLength(leapYear: boolean): number;
|
|
128
|
+
/**
|
|
129
|
+
* Gets the day-of-year corresponding to the first day of this month.
|
|
130
|
+
* <p>
|
|
131
|
+
* This returns the day-of-year that this month begins on, using the leap
|
|
132
|
+
* year flag to determine the length of February.
|
|
133
|
+
*
|
|
134
|
+
* @param leapYear true if the length is required for a leap year
|
|
135
|
+
* @return the day of year corresponding to the first day of this month, from 1 to 336
|
|
136
|
+
*/
|
|
137
|
+
getFirstDayOfYear(leapYear: boolean): number;
|
|
138
|
+
/**
|
|
139
|
+
* Outputs this month as a {@code string}.
|
|
140
|
+
*
|
|
141
|
+
* @return a string representation of this month
|
|
142
|
+
*/
|
|
143
|
+
toString(): string;
|
|
144
|
+
private __lt;
|
|
145
|
+
private __le;
|
|
146
|
+
}
|
package/time/month.lua
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
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 cache = setmetatable({}, {__mode = "v"})
|
|
6
|
+
--- A month-of-year, such as 'July'.
|
|
7
|
+
-- <p>
|
|
8
|
+
-- {@code Month} is a class representing the 12 months of the year -
|
|
9
|
+
-- January, February, March, April, May, June, July, August, September, October,
|
|
10
|
+
-- November and December.
|
|
11
|
+
-- <p>
|
|
12
|
+
-- This class represents a common concept that is found in many calendar systems.
|
|
13
|
+
-- As such, this class may be used by any calendar system that has the month-of-year
|
|
14
|
+
-- concept defined exactly equivalent to the ISO-8601 calendar system.
|
|
15
|
+
____exports.Month = __TS__Class()
|
|
16
|
+
local Month = ____exports.Month
|
|
17
|
+
Month.name = "Month"
|
|
18
|
+
function Month.prototype.____constructor(self, value)
|
|
19
|
+
self.value = value
|
|
20
|
+
assert(math.type(value) == "integer" and value >= 1 and value <= 12)
|
|
21
|
+
cache[value] = self
|
|
22
|
+
end
|
|
23
|
+
function Month.of(self, month)
|
|
24
|
+
return cache[month] or __TS__New(____exports.Month, month)
|
|
25
|
+
end
|
|
26
|
+
function Month.deserialize(self, reader)
|
|
27
|
+
return ____exports.Month:of(reader:readUInt8())
|
|
28
|
+
end
|
|
29
|
+
function Month.prototype.serialize(self, writer)
|
|
30
|
+
writer:writeUInt8(self.value)
|
|
31
|
+
end
|
|
32
|
+
function Month.prototype.plus(self, months)
|
|
33
|
+
return ____exports.Month:of((self.value - 1 + (months % 12 + 12)) % 12 + 1)
|
|
34
|
+
end
|
|
35
|
+
function Month.prototype.minus(self, months)
|
|
36
|
+
return self:plus(-(months % 12))
|
|
37
|
+
end
|
|
38
|
+
function Month.prototype.getLength(self, leapYear)
|
|
39
|
+
repeat
|
|
40
|
+
local ____switch9 = self
|
|
41
|
+
local ____cond9 = ____switch9 == ____exports.Month.FEBRUARY
|
|
42
|
+
if ____cond9 then
|
|
43
|
+
return leapYear and 29 or 28
|
|
44
|
+
end
|
|
45
|
+
____cond9 = ____cond9 or (____switch9 == ____exports.Month.APRIL or ____switch9 == ____exports.Month.JUNE or ____switch9 == ____exports.Month.SEPTEMBER or ____switch9 == ____exports.Month.NOVEMBER)
|
|
46
|
+
if ____cond9 then
|
|
47
|
+
return 30
|
|
48
|
+
end
|
|
49
|
+
do
|
|
50
|
+
return 31
|
|
51
|
+
end
|
|
52
|
+
until true
|
|
53
|
+
end
|
|
54
|
+
function Month.prototype.getFirstDayOfYear(self, leapYear)
|
|
55
|
+
local leap = leapYear and 1 or 0
|
|
56
|
+
repeat
|
|
57
|
+
local ____switch11 = self
|
|
58
|
+
local ____cond11 = ____switch11 == ____exports.Month.JANUARY
|
|
59
|
+
if ____cond11 then
|
|
60
|
+
return 1
|
|
61
|
+
end
|
|
62
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.FEBRUARY
|
|
63
|
+
if ____cond11 then
|
|
64
|
+
return 32
|
|
65
|
+
end
|
|
66
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.MARCH
|
|
67
|
+
if ____cond11 then
|
|
68
|
+
return 60 + leap
|
|
69
|
+
end
|
|
70
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.APRIL
|
|
71
|
+
if ____cond11 then
|
|
72
|
+
return 91 + leap
|
|
73
|
+
end
|
|
74
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.MAY
|
|
75
|
+
if ____cond11 then
|
|
76
|
+
return 121 + leap
|
|
77
|
+
end
|
|
78
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.JUNE
|
|
79
|
+
if ____cond11 then
|
|
80
|
+
return 152 + leap
|
|
81
|
+
end
|
|
82
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.JULY
|
|
83
|
+
if ____cond11 then
|
|
84
|
+
return 182 + leap
|
|
85
|
+
end
|
|
86
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.AUGUST
|
|
87
|
+
if ____cond11 then
|
|
88
|
+
return 213 + leap
|
|
89
|
+
end
|
|
90
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.SEPTEMBER
|
|
91
|
+
if ____cond11 then
|
|
92
|
+
return 244 + leap
|
|
93
|
+
end
|
|
94
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.OCTOBER
|
|
95
|
+
if ____cond11 then
|
|
96
|
+
return 274 + leap
|
|
97
|
+
end
|
|
98
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.NOVEMBER
|
|
99
|
+
if ____cond11 then
|
|
100
|
+
return 305 + leap
|
|
101
|
+
end
|
|
102
|
+
____cond11 = ____cond11 or ____switch11 == ____exports.Month.DECEMBER
|
|
103
|
+
do
|
|
104
|
+
return 335 + leap
|
|
105
|
+
end
|
|
106
|
+
until true
|
|
107
|
+
end
|
|
108
|
+
function Month.prototype.__tostring(self)
|
|
109
|
+
return tostring(self.value)
|
|
110
|
+
end
|
|
111
|
+
function Month.prototype.__lt(self, other)
|
|
112
|
+
return self.value < other.value
|
|
113
|
+
end
|
|
114
|
+
function Month.prototype.__le(self, other)
|
|
115
|
+
return self.value <= other.value
|
|
116
|
+
end
|
|
117
|
+
Month.JANUARY = ____exports.Month:of(1)
|
|
118
|
+
Month.FEBRUARY = ____exports.Month:of(2)
|
|
119
|
+
Month.MARCH = ____exports.Month:of(3)
|
|
120
|
+
Month.APRIL = ____exports.Month:of(4)
|
|
121
|
+
Month.MAY = ____exports.Month:of(5)
|
|
122
|
+
Month.JUNE = ____exports.Month:of(6)
|
|
123
|
+
Month.JULY = ____exports.Month:of(7)
|
|
124
|
+
Month.AUGUST = ____exports.Month:of(8)
|
|
125
|
+
Month.SEPTEMBER = ____exports.Month:of(9)
|
|
126
|
+
Month.OCTOBER = ____exports.Month:of(10)
|
|
127
|
+
Month.NOVEMBER = ____exports.Month:of(11)
|
|
128
|
+
Month.DECEMBER = ____exports.Month:of(12)
|
|
129
|
+
return ____exports
|