├── .github └── workflows │ ├── build.yml │ └── gh-pages.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pictures └── good-old-gif.gif ├── resourcesRoot └── pheroes │ └── bin │ ├── GameMaps │ ├── Ancient_Lands.hmm │ ├── Arena.hmm │ ├── Armageddons_Blade.hmm │ ├── Around_The_Bay.hmm │ ├── Barbarians_Revenge.hmm │ ├── Bloody_Sands.hmm │ ├── Confrontation.hmm │ ├── Consolidation.hmm │ ├── Crossroads.hmm │ ├── Delta.hmm │ ├── Disagreements.hmm │ ├── Fire-eater.hmm │ ├── Gods_War.hmm │ ├── H2O.hmm │ ├── Harlem_War.hmm │ ├── Henry.hmm │ ├── Hostile_Neighbors.hmm │ ├── Ice_Age.hmm │ ├── Island.hmm │ ├── King_Of_The_Hill.hmm │ ├── KneeDeepInTheDead.hmm │ ├── Land_Bridge.hmm │ ├── Loose_Borders.hmm │ ├── Magic_Forests.hmm │ ├── Might_And_Magic.hmm │ ├── Quest_for_Glory.hmm │ ├── Swampy.hmm │ ├── TerritorialDivide.hmm │ ├── ThePyramid.hmm │ ├── The_Great_Nile.hmm │ ├── The_Labyrynth.hmm │ ├── The_Mystic_Valley.hmm │ ├── Tutorial.hmm │ ├── Two_by_the_river.hmm │ ├── WarLords.hmm │ ├── Winter_Assault.hmm │ ├── Winter_Wars.hmm │ └── heroes.hmm │ ├── Resources │ └── hmm │ │ ├── GFX │ │ ├── Common │ │ │ ├── CreatPerks.png │ │ │ ├── GridHex.png │ │ │ ├── ShootCursor.png │ │ │ ├── SurfTiles.png │ │ │ └── WaterSandTransTiles.png │ │ ├── Creatures │ │ │ ├── minimon.png │ │ │ ├── minimonf.png │ │ │ ├── rminimon.png │ │ │ └── rminimonf.png │ │ ├── Decorations │ │ │ ├── Battle │ │ │ │ └── moat.png │ │ │ └── Castles │ │ │ │ └── icons32x20.png │ │ ├── GUI │ │ │ ├── BackTile.png │ │ │ ├── BackTile2.png │ │ │ ├── CtrlsTile.png │ │ │ ├── DifLvl.png │ │ │ ├── DlgBtn.png │ │ │ ├── ScrBarBtns.png │ │ │ ├── btnAttack.png │ │ │ ├── btnAutoBattle.png │ │ │ ├── btnDefend.png │ │ │ ├── btnEndTurn.png │ │ │ ├── btnInfo.png │ │ │ ├── btnMainMenu.png │ │ │ ├── btnMapSize.png │ │ │ ├── btnPlayersCount.png │ │ │ ├── btnShoot.png │ │ │ ├── dlgCorners_Small.png │ │ │ ├── dlgCorners_new.png │ │ │ ├── dlgHTiles_New.png │ │ │ ├── dlgVTiles_New.png │ │ │ ├── plt_ai.png │ │ │ ├── plt_human.png │ │ │ ├── tabQuestLog.png │ │ │ └── tabSpellBook.png │ │ ├── Pix │ │ │ ├── MenuBack.png │ │ │ ├── title_hmm.png │ │ │ └── title_hmm_ny.png │ │ └── spriteset.xml │ │ └── LNG │ │ ├── french.txt │ │ ├── german.txt │ │ ├── italian.txt │ │ ├── polish.txt │ │ ├── russian.txt │ │ └── slovak.txt │ ├── fnt_big.png │ ├── fnt_med.png │ └── fnt_sml.png ├── settings.gradle.kts └── src ├── commonMain └── kotlin │ ├── com │ └── github │ │ └── servb │ │ └── pph │ │ ├── gxlib │ │ ├── Clipper.kt │ │ ├── Randomizer.kt │ │ ├── View.kt │ │ ├── application.kt │ │ ├── dialog.kt │ │ ├── dib.kt │ │ ├── dibfont.kt │ │ ├── display.kt │ │ ├── file.kt │ │ ├── iRandTable.kt │ │ ├── inc.kt │ │ ├── input.kt │ │ ├── math.kt │ │ ├── popupview.kt │ │ ├── stdctrl.kt │ │ ├── timer.kt │ │ ├── topmostview.kt │ │ ├── viewmgr.kt │ │ └── window.kt │ │ ├── iolib │ │ └── xe │ │ │ └── dib.kt │ │ ├── pheroes │ │ ├── common │ │ │ ├── IsoMetric.kt │ │ │ ├── Serialize.kt │ │ │ ├── SortArray.kt │ │ │ ├── army │ │ │ │ ├── Army.kt │ │ │ │ └── CreatGroup.kt │ │ │ ├── castle │ │ │ │ └── CastleType.kt │ │ │ ├── cnst_gfx.kt │ │ │ ├── cnst_text.kt │ │ │ ├── common │ │ │ │ ├── Common.kt │ │ │ │ ├── DifficultyLevel.kt │ │ │ │ ├── FractionCoeff.kt │ │ │ │ ├── HeroType.kt │ │ │ │ ├── IdeologyType.kt │ │ │ │ ├── MapSize.kt │ │ │ │ ├── MineralSet.kt │ │ │ │ ├── MineralType.kt │ │ │ │ ├── NationType.kt │ │ │ │ ├── PlayerId.kt │ │ │ │ ├── PlayerType.kt │ │ │ │ ├── PlayerTypeMask.kt │ │ │ │ ├── SpecialHeroFlag.kt │ │ │ │ ├── SurfaceType.kt │ │ │ │ ├── artifact │ │ │ │ │ └── ArtifactType.kt │ │ │ │ └── skill │ │ │ │ │ ├── FurtherSkill.kt │ │ │ │ │ ├── FurtherSkills.kt │ │ │ │ │ ├── PrimarySkillType.kt │ │ │ │ │ ├── PrimarySkills.kt │ │ │ │ │ └── SecondarySkillType.kt │ │ │ ├── creature │ │ │ │ ├── CreatureDescriptor.kt │ │ │ │ ├── CreatureType.kt │ │ │ │ ├── Perk.kt │ │ │ │ └── TransportationType.kt │ │ │ └── magic │ │ │ │ ├── MagicSchool.kt │ │ │ │ ├── SpellDisposition.kt │ │ │ │ ├── SpellFilter.kt │ │ │ │ ├── SpellLevel.kt │ │ │ │ └── SpellType.kt │ │ ├── game │ │ │ ├── BattleEngine.kt │ │ │ ├── BattleInfo.kt │ │ │ ├── BattleUnit.kt │ │ │ ├── BattleView.kt │ │ │ ├── CommonControls.kt │ │ │ ├── CommonDialogs.kt │ │ │ ├── Credits.kt │ │ │ ├── Dlg_HallOfFame.kt │ │ │ ├── Dlg_Save.kt │ │ │ ├── Dlg_ScenList.kt │ │ │ ├── Dlg_ScenProps.kt │ │ │ ├── Game.kt │ │ │ ├── GfxHlp.kt │ │ │ ├── GfxManager.kt │ │ │ ├── InteractBattle.kt │ │ │ ├── ItemMgr.kt │ │ │ ├── LangView.kt │ │ │ ├── Map.kt │ │ │ ├── MenuView.kt │ │ │ ├── Settings.kt │ │ │ ├── TextComposer.kt │ │ │ ├── TextManager.kt │ │ │ ├── helpers.kt │ │ │ ├── hero.kt │ │ │ ├── hmm.kt │ │ │ ├── player.kt │ │ │ └── sprite2.kt │ │ └── mapEditor │ │ │ ├── ExportDlg.kt │ │ │ └── SpriteMgr.kt │ │ └── util │ │ ├── future.kt │ │ ├── helpertype │ │ └── EnumTestingInterfaces.kt │ │ └── pointers.kt │ └── main.kt ├── jvmTest └── kotlin │ └── com │ └── github │ └── servb │ └── pph │ ├── gxlib │ └── dibTest.kt │ ├── pheroes │ └── game │ │ └── DateTest.kt │ └── util │ └── helpertype │ └── EnumTestingInterfacesTest.kt ├── main └── kotlin │ └── com │ └── github │ └── servb │ └── pph │ ├── Pph.kt │ ├── gxlib │ ├── gxlcommontpl │ │ └── Static.kt │ ├── gxlmetrics │ │ ├── Point.kt │ │ ├── Rect.kt │ │ └── Size.kt │ ├── iCircBuff.kt │ ├── memory │ │ ├── Buff.kt │ │ └── DynamicBuffer.kt │ └── string.kt │ ├── pheroes │ └── common │ │ ├── SortArray.kt │ │ ├── SpannedMap.kt │ │ ├── TreasuryVariantsContainer.kt │ │ ├── castle │ │ ├── Castle.kt │ │ ├── CastleConstruction.kt │ │ ├── CastleConstructionType.kt │ │ ├── CastleOrientation.kt │ │ ├── CastleSize.kt │ │ ├── CastleSizeMask.kt │ │ └── CastleTypeMask.kt │ │ ├── common │ │ ├── GameLanguage.kt │ │ ├── GameType.kt │ │ ├── GuardDisposition.kt │ │ ├── HeroTypeMask.kt │ │ ├── MapItemType.kt │ │ ├── ObjectType.kt │ │ ├── PathElementType.kt │ │ ├── PlayerIdMask.kt │ │ ├── RewardItem.kt │ │ ├── RewardItemType.kt │ │ ├── RewardsCtr.kt │ │ ├── SpriteLevel.kt │ │ ├── VisionLevel.kt │ │ ├── artifact │ │ │ ├── ArtifactAssign.kt │ │ │ ├── ArtifactLevel.kt │ │ │ ├── ArtifactList.kt │ │ │ ├── HeroArtifactCell.kt │ │ │ └── RandomArtifact.kt │ │ └── skill │ │ │ ├── SecondarySkillEntry.kt │ │ │ ├── SecondarySkillLevel.kt │ │ │ └── SecondarySkills.kt │ │ ├── constantsSfx.kt │ │ ├── construction │ │ ├── OwnerableConstructionType.kt │ │ └── VisitableConstructionType.kt │ │ ├── creature │ │ └── Speed.kt │ │ ├── event │ │ ├── iTimeEvent.kt │ │ └── iTimeEventMgr.kt │ │ ├── lzo.kt │ │ └── magic │ │ ├── MagicSchoolLevel.kt │ │ ├── MagicSpell.kt │ │ ├── SpellClass.kt │ │ ├── SpellDescriptor.kt │ │ ├── SpellLabel.kt │ │ ├── SpellTargetMode.kt │ │ └── SpellTargetTypeMask.kt │ └── util │ └── helpertype │ ├── Aliases.kt │ ├── Defines.kt │ ├── EnumC.kt │ └── File.kt └── test └── kotlin └── com └── github └── servb └── pph ├── gxlib ├── gxlcommondef │ └── GxlCommonDefTest.kt ├── gxlcommontpl │ └── GxlCommonTplTest.kt ├── gxlmath │ └── GxlMathTest.kt └── gxlmetrics │ ├── PointTest.kt │ ├── RectTest.kt │ └── SizeTest.kt └── pheroes └── common └── SerializeTest.kt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/gradlew.bat -------------------------------------------------------------------------------- /pictures/good-old-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/pictures/good-old-gif.gif -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Ancient_Lands.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Ancient_Lands.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Arena.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Arena.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Armageddons_Blade.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Armageddons_Blade.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Around_The_Bay.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Around_The_Bay.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Barbarians_Revenge.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Barbarians_Revenge.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Bloody_Sands.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Bloody_Sands.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Confrontation.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Confrontation.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Consolidation.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Consolidation.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Crossroads.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Crossroads.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Delta.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Delta.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Disagreements.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Disagreements.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Fire-eater.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Fire-eater.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Gods_War.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Gods_War.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/H2O.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/H2O.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Harlem_War.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Harlem_War.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Henry.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Henry.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Hostile_Neighbors.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Hostile_Neighbors.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Ice_Age.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Ice_Age.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Island.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Island.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/King_Of_The_Hill.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/King_Of_The_Hill.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/KneeDeepInTheDead.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/KneeDeepInTheDead.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Land_Bridge.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Land_Bridge.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Loose_Borders.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Loose_Borders.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Magic_Forests.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Magic_Forests.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Might_And_Magic.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Might_And_Magic.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Quest_for_Glory.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Quest_for_Glory.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Swampy.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Swampy.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/TerritorialDivide.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/TerritorialDivide.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/ThePyramid.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/ThePyramid.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/The_Great_Nile.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/The_Great_Nile.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/The_Labyrynth.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/The_Labyrynth.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/The_Mystic_Valley.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/The_Mystic_Valley.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Tutorial.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Tutorial.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Two_by_the_river.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Two_by_the_river.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/WarLords.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/WarLords.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Winter_Assault.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Winter_Assault.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/Winter_Wars.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/Winter_Wars.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/GameMaps/heroes.hmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/GameMaps/heroes.hmm -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/CreatPerks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/CreatPerks.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/GridHex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/GridHex.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/ShootCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/ShootCursor.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/SurfTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/SurfTiles.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/WaterSandTransTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Common/WaterSandTransTiles.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/minimon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/minimon.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/minimonf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/minimonf.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/rminimon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/rminimon.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/rminimonf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Creatures/rminimonf.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Decorations/Battle/moat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Decorations/Battle/moat.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Decorations/Castles/icons32x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Decorations/Castles/icons32x20.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/BackTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/BackTile.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/BackTile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/BackTile2.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/CtrlsTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/CtrlsTile.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/DifLvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/DifLvl.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/DlgBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/DlgBtn.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/ScrBarBtns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/ScrBarBtns.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnAttack.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnAutoBattle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnAutoBattle.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnDefend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnDefend.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnEndTurn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnEndTurn.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnInfo.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnMainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnMainMenu.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnMapSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnMapSize.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnPlayersCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnPlayersCount.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnShoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/btnShoot.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgCorners_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgCorners_Small.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgCorners_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgCorners_new.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgHTiles_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgHTiles_New.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgVTiles_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/dlgVTiles_New.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/plt_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/plt_ai.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/plt_human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/plt_human.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/tabQuestLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/tabQuestLog.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/tabSpellBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/GUI/tabSpellBook.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/MenuBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/MenuBack.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/title_hmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/title_hmm.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/title_hmm_ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/Pix/title_hmm_ny.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/GFX/spriteset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/GFX/spriteset.xml -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/french.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/german.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/italian.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/polish.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/russian.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/Resources/hmm/LNG/slovak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/Resources/hmm/LNG/slovak.txt -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/fnt_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/fnt_big.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/fnt_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/fnt_med.png -------------------------------------------------------------------------------- /resourcesRoot/pheroes/bin/fnt_sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/resourcesRoot/pheroes/bin/fnt_sml.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/Clipper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/Clipper.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/Randomizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/Randomizer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/View.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/View.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/application.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/dialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/dialog.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/dib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/dib.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/dibfont.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/dibfont.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/display.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/display.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/file.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/file.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/iRandTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/iRandTable.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/inc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/inc.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/input.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/math.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/popupview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/popupview.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/stdctrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/stdctrl.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/timer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/timer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/topmostview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/topmostview.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/viewmgr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/viewmgr.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/gxlib/window.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/gxlib/window.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/iolib/xe/dib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/iolib/xe/dib.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/IsoMetric.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/IsoMetric.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/Serialize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/Serialize.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/SortArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/SortArray.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/army/Army.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/army/Army.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/army/CreatGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/army/CreatGroup.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/castle/CastleType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/castle/CastleType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/cnst_gfx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/cnst_gfx.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/cnst_text.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/cnst_text.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/Common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/Common.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/DifficultyLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/DifficultyLevel.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/FractionCoeff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/FractionCoeff.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/HeroType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/HeroType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/IdeologyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/IdeologyType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MapSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MapSize.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MineralSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MineralSet.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MineralType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/MineralType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/NationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/NationType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerId.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerTypeMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/PlayerTypeMask.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/SpecialHeroFlag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/SpecialHeroFlag.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/SurfaceType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/SurfaceType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/FurtherSkill.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/FurtherSkill.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/FurtherSkills.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/FurtherSkills.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/PrimarySkillType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/PrimarySkillType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/PrimarySkills.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/PrimarySkills.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/CreatureDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/CreatureDescriptor.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/CreatureType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/CreatureType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/Perk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/Perk.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/TransportationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/creature/TransportationType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSchool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSchool.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellDisposition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellDisposition.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellFilter.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellLevel.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/common/magic/SpellType.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleEngine.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleInfo.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleUnit.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/BattleView.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/CommonControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/CommonControls.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/CommonDialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/CommonDialogs.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Credits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Credits.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_HallOfFame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_HallOfFame.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_Save.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_Save.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_ScenList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_ScenList.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_ScenProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Dlg_ScenProps.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Game.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/GfxHlp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/GfxHlp.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/GfxManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/GfxManager.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/InteractBattle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/InteractBattle.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/ItemMgr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/ItemMgr.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/LangView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/LangView.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Map.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/MenuView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/MenuView.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/Settings.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/TextComposer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/TextComposer.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/TextManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/TextManager.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/helpers.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/hero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/hero.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/hmm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/hmm.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/player.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/game/sprite2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/game/sprite2.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/mapEditor/ExportDlg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/mapEditor/ExportDlg.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/pheroes/mapEditor/SpriteMgr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/pheroes/mapEditor/SpriteMgr.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/util/future.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/util/future.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/util/helpertype/EnumTestingInterfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/com/github/servb/pph/util/helpertype/EnumTestingInterfaces.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/com/github/servb/pph/util/pointers.kt: -------------------------------------------------------------------------------- 1 | package com.github.servb.pph.util 2 | 3 | class Mutable(var element: T) 4 | -------------------------------------------------------------------------------- /src/commonMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/commonMain/kotlin/main.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/com/github/servb/pph/gxlib/dibTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/jvmTest/kotlin/com/github/servb/pph/gxlib/dibTest.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/com/github/servb/pph/pheroes/game/DateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/jvmTest/kotlin/com/github/servb/pph/pheroes/game/DateTest.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/com/github/servb/pph/util/helpertype/EnumTestingInterfacesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/jvmTest/kotlin/com/github/servb/pph/util/helpertype/EnumTestingInterfacesTest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/Pph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/Pph.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/gxlcommontpl/Static.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/gxlcommontpl/Static.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Point.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Point.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Rect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Rect.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Size.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/gxlmetrics/Size.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/iCircBuff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/iCircBuff.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/memory/Buff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/memory/Buff.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/memory/DynamicBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/memory/DynamicBuffer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/gxlib/string.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/gxlib/string.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/SortArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/SortArray.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/SpannedMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/SpannedMap.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/TreasuryVariantsContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/TreasuryVariantsContainer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/Castle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/Castle.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleConstruction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleConstruction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleConstructionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleConstructionType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleOrientation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleOrientation.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleSize.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleSizeMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleSizeMask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleTypeMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/castle/CastleTypeMask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/GameLanguage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/GameLanguage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/GameType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/GameType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/GuardDisposition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/GuardDisposition.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/HeroTypeMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/HeroTypeMask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/MapItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/MapItemType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/ObjectType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/ObjectType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/PathElementType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/PathElementType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/PlayerIdMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/PlayerIdMask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardItem.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardItemType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardItemType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardsCtr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/RewardsCtr.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/SpriteLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/SpriteLevel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/VisionLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/VisionLevel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactAssign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactAssign.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactLevel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/ArtifactList.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/HeroArtifactCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/HeroArtifactCell.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/RandomArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/artifact/RandomArtifact.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillEntry.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkillLevel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkills.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/common/skill/SecondarySkills.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/constantsSfx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/constantsSfx.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/construction/OwnerableConstructionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/construction/OwnerableConstructionType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/construction/VisitableConstructionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/construction/VisitableConstructionType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/creature/Speed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/creature/Speed.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/event/iTimeEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/event/iTimeEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/event/iTimeEventMgr.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/event/iTimeEventMgr.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/lzo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/lzo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSchoolLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSchoolLevel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSpell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/MagicSpell.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellClass.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellLabel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellLabel.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellTargetMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellTargetMode.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellTargetTypeMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/pheroes/common/magic/SpellTargetTypeMask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/util/helpertype/Aliases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/util/helpertype/Aliases.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/util/helpertype/Defines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/util/helpertype/Defines.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/util/helpertype/EnumC.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/util/helpertype/EnumC.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/servb/pph/util/helpertype/File.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/main/kotlin/com/github/servb/pph/util/helpertype/File.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlcommondef/GxlCommonDefTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlcommondef/GxlCommonDefTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlcommontpl/GxlCommonTplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlcommontpl/GxlCommonTplTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlmath/GxlMathTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlmath/GxlMathTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/PointTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/PointTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/RectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/RectTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/SizeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/gxlib/gxlmetrics/SizeTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/github/servb/pph/pheroes/common/SerializeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerVB/pph/HEAD/src/test/kotlin/com/github/servb/pph/pheroes/common/SerializeTest.kt --------------------------------------------------------------------------------