├── .clang-format ├── .clang-tidy ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.txt ├── LICENSE_ASSETS.md ├── README.md ├── appveyor.yml ├── cmake └── Modules │ ├── ClangFormat.cmake │ ├── FilterOutList.cmake │ ├── FindGo.cmake │ ├── GoogleTest.cmake │ └── GoogleTestDownload.cmake ├── documentation ├── CODESTYLE.md ├── Protocol description v2.md └── Roadmap.md ├── exec ├── assets │ ├── AmmunitionBox.json │ ├── AntitoxinBottle.json │ ├── Armor.json │ ├── AtmosTool.json │ ├── BarmanUniform.json │ ├── Bed.json │ ├── Beer.json │ ├── BlackBoots.json │ ├── Breakable.json │ ├── BruisePack.json │ ├── Bullet.json │ ├── BulletCasing.json │ ├── Chair.json │ ├── Closet.json │ ├── Cloth.json │ ├── ClownBoots.json │ ├── ClownUniform.json │ ├── Computer.json │ ├── Connector.json │ ├── Crowbar.json │ ├── Door.json │ ├── Drinks.json │ ├── EngineUniform.json │ ├── ExternalDoor.json │ ├── FlatGlass.json │ ├── Floor.json │ ├── FloorBar.json │ ├── FloorCafeteria.json │ ├── FloorFreezer.json │ ├── FloorTile.json │ ├── FloorWhite.json │ ├── FuelTank.json │ ├── GasMask.json │ ├── GasTank.json │ ├── Ghost.json │ ├── Girder.json │ ├── GlassDoor.json │ ├── Grille.json │ ├── Gun.json │ ├── Hand.json │ ├── HandGasTank.json │ ├── HealthAnalyzer.json │ ├── Helmet.json │ ├── Human.json │ ├── Item.json │ ├── JanitorUniform.json │ ├── Laser.json │ ├── LaserGun.json │ ├── Lattice.json │ ├── Limb.json │ ├── LoginMob.json │ ├── MagicGasTank.json │ ├── MaintenanceDoor.json │ ├── Manifold.json │ ├── Mask.json │ ├── MaterialObject.json │ ├── MedicalUniform.json │ ├── Medicine.json │ ├── Metal.json │ ├── MetalTable.json │ ├── MetalWall.json │ ├── Mob.json │ ├── Movable.json │ ├── NontransparentDoor.json │ ├── Ointment.json │ ├── OrangeBoots.json │ ├── Pipe.json │ ├── PipeBase.json │ ├── PipePump.json │ ├── PlasmaGasTank.json │ ├── Plating.json │ ├── PressureIndicator.json │ ├── Projectile.json │ ├── RedUniform.json │ ├── ReinforcedFlatGlass.json │ ├── ReinforcedWall.json │ ├── RemoteAtmosTool.json │ ├── RemoteDoorOpener.json │ ├── Revolver.json │ ├── Rod.json │ ├── Screwdriver.json │ ├── SecurityDoor.json │ ├── SecurityLocker.json │ ├── Shard.json │ ├── Space.json │ ├── SpawnPoint.json │ ├── Stool.json │ ├── Structure.json │ ├── Table.json │ ├── Tank.json │ ├── Tea.json │ ├── Tophat.json │ ├── Turf.json │ ├── Valve.json │ ├── Vent.json │ ├── Vodka.json │ ├── WallSign.json │ ├── WaterTank.json │ ├── Weldingtool.json │ ├── WhiteShoes.json │ ├── Wirecutters.json │ └── Wrench.json ├── icons │ ├── 288x288.dmi │ ├── 288x288.dmi.json │ ├── Doorcom.dmi │ ├── Doorcom.dmi.json │ ├── Dooreng.dmi │ ├── Dooreng.dmi.json │ ├── Doorext.dmi │ ├── Doorext.dmi.json │ ├── Doorfire.dmi │ ├── Doorfire.dmi.json │ ├── Doorglass.dmi │ ├── Doorglass.dmi.json │ ├── Doormaint.dmi │ ├── Doormaint.dmi.json │ ├── Doorsec.dmi │ ├── Doorsec.dmi.json │ ├── Doorsecglass.dmi │ ├── Doorsecglass.dmi.json │ ├── ammo.dmi │ ├── ammo.dmi.json │ ├── atmos.dmi │ ├── atmos.dmi.json │ ├── back.dmi │ ├── back.dmi.json │ ├── blood.dmi │ ├── blood.dmi.json │ ├── chemical.dmi │ ├── chemical.dmi.json │ ├── closet.dmi │ ├── closet.dmi.json │ ├── computer.dmi │ ├── computer.dmi.json │ ├── dam_human.dmi │ ├── dam_human.dmi.json │ ├── decals.dmi │ ├── decals.dmi.json │ ├── device.dmi │ ├── device.dmi.json │ ├── digital_valve.dmi │ ├── digital_valve.dmi.json │ ├── doormed.dmi │ ├── doormed.dmi.json │ ├── drinks.dmi │ ├── drinks.dmi.json │ ├── feet.dmi │ ├── feet.dmi.json │ ├── fire.dmi │ ├── fire.dmi.json │ ├── fire_mine.png │ ├── floors.dmi │ ├── floors.dmi.json │ ├── food.dmi │ ├── food.dmi.json │ ├── ghost.png │ ├── guns.dmi │ ├── guns.dmi.json │ ├── hats.dmi │ ├── hats.dmi.json │ ├── head.dmi │ ├── head.dmi.json │ ├── human.dmi │ ├── human.dmi.json │ ├── items.dmi │ ├── items.dmi.json │ ├── items_lefthand.dmi │ ├── items_lefthand.dmi.json │ ├── items_righthand.dmi │ ├── items_righthand.dmi.json │ ├── login_screen.jpg │ ├── mask.dmi │ ├── mask.dmi.json │ ├── masks.dmi │ ├── masks.dmi.json │ ├── metaltables.dmi │ ├── metaltables.dmi.json │ ├── mob.dmi │ ├── mob.dmi.json │ ├── numbers.dmi │ ├── numbers.dmi.json │ ├── objects.dmi │ ├── objects.dmi.json │ ├── pipe_vent.dmi │ ├── pipe_vent.dmi.json │ ├── pipes.dmi │ ├── pipes.dmi.json │ ├── pipes2.dmi │ ├── pipes2.dmi.json │ ├── plasma.dmi │ ├── plasma.dmi.json │ ├── projectiles.dmi │ ├── projectiles.dmi.json │ ├── screen1.dmi │ ├── screen1.dmi.json │ ├── screen1_old.dmi │ ├── screen1_old.dmi.json │ ├── screen_midnight.dmi │ ├── screen_midnight.dmi.json │ ├── screen_retro.dmi │ ├── screen_retro.dmi.json │ ├── shards.dmi │ ├── shards.dmi.json │ ├── shoes.dmi │ ├── shoes.dmi.json │ ├── shoes.png │ ├── shoes.png.json │ ├── space.dmi │ ├── space.dmi.json │ ├── spear.png │ ├── structures.dmi │ ├── structures.dmi.json │ ├── suit.dmi │ ├── suit.dmi.json │ ├── suits.dmi │ ├── suits.dmi.json │ ├── tank.dmi │ ├── tank.dmi.json │ ├── uniform.dmi │ ├── uniform.dmi.json │ ├── uniforms.dmi │ ├── uniforms.dmi.json │ ├── vent_pump.dmi │ ├── vent_pump.dmi.json │ ├── walls.dmi │ ├── walls.dmi.json │ ├── walls.png │ ├── walls.png.json │ ├── windoor.dmi │ └── windoor.dmi.json ├── maps │ └── gloom.gen.json ├── music │ └── lobby.ogg ├── names │ ├── first_female.txt │ ├── first_male.txt │ └── last.txt ├── sounds │ ├── Crowbar.wav │ ├── Deconstruct.wav │ ├── Glassbr1.wav │ ├── Glassbr2.wav │ ├── Glassbr3.wav │ ├── Glasshit.wav │ ├── Gunshot.wav │ ├── Laser.wav │ ├── Ratchet.wav │ ├── Screwdriver.wav │ ├── Welder.wav │ ├── Wirecutter.wav │ ├── airlock.wav │ ├── click.wav │ ├── clownstep1.wav │ ├── clownstep2.wav │ ├── door_close.wav │ ├── door_open.wav │ ├── drink.wav │ ├── empty.wav │ ├── genhit1.wav │ ├── genhit2.wav │ ├── genhit3.wav │ ├── glass_step.wav │ ├── grillehit.wav │ ├── hit_on_shattered_glass.wav │ ├── jump.wav │ ├── laser3.wav │ ├── punch1.wav │ ├── punch2.wav │ ├── punch3.wav │ ├── punch4.wav │ ├── refill.wav │ ├── step.wav │ ├── windowdoor.wav │ ├── work_boots_jump_on_plastic_tarpaulin.wav │ └── work_boots_skid_on_leaves.wav └── test │ ├── icons │ ├── empty_file.png │ ├── hotspot.dmi │ ├── hotspot.dmi.json │ ├── invalid_metadata.png │ ├── no_metadata.png │ ├── not_png.jpg │ ├── test1.dmi │ ├── test1.dmi.json │ ├── unknown_param.dmi │ └── unknown_param.dmi.json │ ├── maps │ └── tiny_space.gen.json │ └── text │ └── cyrillic.txt ├── gopath └── src │ └── griefly-server │ ├── .gitignore │ ├── CMakeLists.txt │ ├── assetserver.go │ ├── auth.go │ ├── client.go │ ├── client_conn.go │ ├── client_conn_test.go │ ├── db │ └── auth.json │ ├── json_db.go │ ├── main.go │ ├── message.go │ ├── model.go │ ├── simple_client │ ├── .gitignore │ └── main.go │ ├── telemetry.go │ └── vendor │ ├── github.com │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── golang │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── prometheus │ │ │ │ ├── README.md │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── histogram.go │ │ │ │ ├── http.go │ │ │ │ ├── metric.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── push.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ └── vec.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── json_decode.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── ipvs.go │ │ │ ├── mdstat.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_stat.go │ │ │ └── stat.go │ └── stretchr │ │ └── testify │ │ ├── LICENSE │ │ └── assert │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ └── http_assertions.go │ ├── gopkg.in │ └── validator.v2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── builtins.go │ │ ├── doc.go │ │ └── validator.go │ └── vendor.json ├── make.sh ├── sources ├── CMakeLists.txt ├── client │ ├── CMakeLists.txt │ ├── Game.cpp │ ├── Game.h │ ├── JsonValidator.cpp │ ├── JsonValidator.h │ ├── Log.cpp │ ├── Log.h │ ├── MapEditor.cpp │ ├── MapEditor.h │ ├── Params.cpp │ ├── Params.h │ ├── main.cpp │ ├── net │ │ ├── MagicStrings.h │ │ ├── Network2.cpp │ │ └── Network2.h │ ├── platform │ │ └── gl.h │ └── representation │ │ ├── GLSprite.cpp │ │ ├── GLSprite.h │ │ ├── ImageLoader.cpp │ │ ├── ImageLoader.h │ │ ├── Metadata.cpp │ │ ├── Metadata.h │ │ ├── Representation.cpp │ │ ├── Representation.h │ │ ├── Screen.cpp │ │ ├── Screen.h │ │ ├── Sound.cpp │ │ ├── Sound.h │ │ ├── SpriteHolder.cpp │ │ ├── SpriteHolder.h │ │ ├── View2.cpp │ │ ├── View2.h │ │ └── qt │ │ ├── gaminglineedit.cpp │ │ ├── gaminglineedit.h │ │ ├── mainform.cpp │ │ ├── mainform.h │ │ ├── mainform.ui │ │ ├── mapeditorform.cpp │ │ ├── mapeditorform.h │ │ ├── mapeditorform.ui │ │ ├── qtopengl.cpp │ │ └── qtopengl.h ├── core │ ├── Asset.cpp │ ├── AutogenMetadata.h │ ├── BasicTypesNames.h │ ├── CMakeLists.txt │ ├── ChatFrameInfo.cpp │ ├── ChatFrameInfo.h │ ├── CoreImplementation.cpp │ ├── CoreImplementation.h │ ├── FastIsType.cpp │ ├── FastIsType.h │ ├── FastSerializer.h │ ├── Hashes.h │ ├── Hearer.h │ ├── Idptr.h │ ├── Interfaces.h │ ├── ItemsCreators.cpp │ ├── KvAbort.h │ ├── KvGlobals.h │ ├── KvMacros.h │ ├── LosCalculator.cpp │ ├── LosCalculator.h │ ├── Map.cpp │ ├── Map.h │ ├── Names.cpp │ ├── Names.h │ ├── ObjectFactory.cpp │ ├── ObjectFactory.h │ ├── SaveableOperators.h │ ├── SynchronizedRandom.cpp │ ├── SynchronizedRandom.h │ ├── Version.h │ ├── ViewInfo.cpp │ ├── ViewInfo.h │ ├── VisibleLevels.h │ ├── WorldLoaderSaver.cpp │ ├── WorldLoaderSaver.h │ ├── atmos │ │ ├── Atmos.cpp │ │ ├── Atmos.h │ │ ├── AtmosConstants.h │ │ ├── AtmosGrid.cpp │ │ ├── AtmosGrid.h │ │ ├── AtmosHolder.cpp │ │ └── AtmosHolder.h │ ├── objects │ │ ├── Computers.cpp │ │ ├── Computers.h │ │ ├── Door.cpp │ │ ├── Door.h │ │ ├── GlobalObjectsHolder.cpp │ │ ├── GlobalObjectsHolder.h │ │ ├── Lobby.cpp │ │ ├── Lobby.h │ │ ├── MapObject.cpp │ │ ├── MapObject.h │ │ ├── MaterialObject.cpp │ │ ├── MaterialObject.h │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── ObjectProcessor.cpp │ │ ├── ObjectProcessor.h │ │ ├── PhysicsEngine.cpp │ │ ├── PhysicsEngine.h │ │ ├── Professions.cpp │ │ ├── Professions.h │ │ ├── Sign.cpp │ │ ├── Sign.h │ │ ├── SpawnPoints.cpp │ │ ├── SpawnPoints.h │ │ ├── Tile.cpp │ │ ├── Tile.h │ │ ├── mobs │ │ │ ├── Ghost.cpp │ │ │ ├── Ghost.h │ │ │ ├── Human.cpp │ │ │ ├── Human.h │ │ │ ├── HumanInterface.cpp │ │ │ ├── HumanInterface.h │ │ │ ├── LoginMob.cpp │ │ │ ├── LoginMob.h │ │ │ ├── Mob.cpp │ │ │ ├── Mob.h │ │ │ └── Slot.h │ │ ├── movable │ │ │ ├── Closet.cpp │ │ │ ├── Closet.h │ │ │ ├── Furniture.cpp │ │ │ ├── Furniture.h │ │ │ ├── GasTank.cpp │ │ │ ├── GasTank.h │ │ │ ├── Movable.cpp │ │ │ ├── Movable.h │ │ │ ├── Pipes.cpp │ │ │ ├── Pipes.h │ │ │ ├── ProjectileTypes.cpp │ │ │ ├── ProjectileTypes.h │ │ │ ├── Projectiles.cpp │ │ │ ├── Projectiles.h │ │ │ ├── Tables.cpp │ │ │ ├── Tables.h │ │ │ ├── Tanks.cpp │ │ │ ├── Tanks.h │ │ │ ├── items │ │ │ │ ├── AmmunitionBoxes.cpp │ │ │ │ ├── AmmunitionBoxes.h │ │ │ │ ├── Clothes.cpp │ │ │ │ ├── Clothes.h │ │ │ │ ├── Drinks.cpp │ │ │ │ ├── Drinks.h │ │ │ │ ├── ElectricTools.cpp │ │ │ │ ├── ElectricTools.h │ │ │ │ ├── FloorTile.cpp │ │ │ │ ├── FloorTile.h │ │ │ │ ├── Gun.cpp │ │ │ │ ├── Gun.h │ │ │ │ ├── HandGasTank.cpp │ │ │ │ ├── HandGasTank.h │ │ │ │ ├── Item.cpp │ │ │ │ ├── Item.h │ │ │ │ ├── Limbs.cpp │ │ │ │ ├── Limbs.h │ │ │ │ ├── Masks.cpp │ │ │ │ ├── Masks.h │ │ │ │ ├── Materials.cpp │ │ │ │ ├── Materials.h │ │ │ │ ├── MedbayTools.cpp │ │ │ │ ├── MedbayTools.h │ │ │ │ ├── Shard.cpp │ │ │ │ ├── Shard.h │ │ │ │ ├── Weapons.cpp │ │ │ │ ├── Weapons.h │ │ │ │ ├── Weldingtool.cpp │ │ │ │ └── Weldingtool.h │ │ │ └── structures │ │ │ │ ├── Breakable.cpp │ │ │ │ ├── Breakable.h │ │ │ │ ├── Girder.cpp │ │ │ │ ├── Girder.h │ │ │ │ ├── Glass.cpp │ │ │ │ ├── Glass.h │ │ │ │ ├── Grille.cpp │ │ │ │ ├── Grille.h │ │ │ │ ├── Lattice.cpp │ │ │ │ ├── Lattice.h │ │ │ │ ├── Structure.cpp │ │ │ │ └── Structure.h │ │ ├── test │ │ │ ├── PressureIndicator.cpp │ │ │ ├── PressureIndicator.h │ │ │ ├── RemoteDoorOpener.cpp │ │ │ ├── RemoteDoorOpener.h │ │ │ ├── TestObject.cpp │ │ │ ├── TestObject.h │ │ │ ├── UnsyncGenerator.cpp │ │ │ └── UnsyncGenerator.h │ │ └── turfs │ │ │ ├── Floor.cpp │ │ │ ├── Floor.h │ │ │ ├── MetalWall.cpp │ │ │ ├── MetalWall.h │ │ │ ├── Space.cpp │ │ │ ├── Space.h │ │ │ ├── Turf.cpp │ │ │ └── Turf.h │ └── tests │ │ ├── asset_tests.cpp │ │ ├── atmos_tests.cpp │ │ ├── basic_types_names_tests.cpp │ │ ├── chat_frame_info_tests.cpp │ │ ├── core_interface_tests.cpp │ │ ├── fast_is_type_tests.cpp │ │ ├── fast_serializer_tests.cpp │ │ ├── hashes_tests.cpp │ │ ├── human_interface_tests.cpp │ │ ├── id_ptr_tests.cpp │ │ ├── interfaces_mocks.h │ │ ├── json_validator_tests.cpp │ │ ├── kv_abort_tests.cpp │ │ ├── main_object_tests.cpp │ │ ├── map_tests.cpp │ │ ├── metadata_tests.cpp │ │ ├── name_tests.cpp │ │ ├── object_factory_tests.cpp │ │ ├── object_processor_tests.cpp │ │ ├── params_tests.cpp │ │ ├── physics_engine_tests.cpp │ │ ├── raw_view_info_tests.cpp │ │ ├── saveable_operators_tests.cpp │ │ ├── slot_tests.cpp │ │ ├── sync_random_tests.cpp │ │ ├── vector_and_point_tests.cpp │ │ ├── version_tests.cpp │ │ ├── view_info_tests.cpp │ │ ├── world_implementation_tests.cpp │ │ └── world_loader_saver_tests.cpp └── core_headers │ ├── Asset.h │ ├── CoreInterface.h │ ├── Dir.h │ ├── Mapgen.h │ ├── Messages.h │ ├── NetworkMessages.h │ └── RawViewInfo.h └── utils ├── autogen.py ├── basic_assets_generator ├── CMakeLists.txt └── main.cpp ├── extract_dmi_metadata.py ├── fix_mapgen.py ├── imitate_many_clients.py ├── launcher ├── CMakeLists.txt ├── launcherform.cpp ├── launcherform.h ├── launcherform.ui └── main.cpp ├── map_editor ├── CMakeLists.txt └── main.cpp ├── metadata_generator.py ├── qzip_unpacker ├── CMakeLists.txt └── main.cpp └── version.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_ASSETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/LICENSE_ASSETS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/Modules/ClangFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/cmake/Modules/ClangFormat.cmake -------------------------------------------------------------------------------- /cmake/Modules/FilterOutList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/cmake/Modules/FilterOutList.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindGo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/cmake/Modules/FindGo.cmake -------------------------------------------------------------------------------- /cmake/Modules/GoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/cmake/Modules/GoogleTest.cmake -------------------------------------------------------------------------------- /cmake/Modules/GoogleTestDownload.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/cmake/Modules/GoogleTestDownload.cmake -------------------------------------------------------------------------------- /documentation/CODESTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/documentation/CODESTYLE.md -------------------------------------------------------------------------------- /documentation/Protocol description v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/documentation/Protocol description v2.md -------------------------------------------------------------------------------- /documentation/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/documentation/Roadmap.md -------------------------------------------------------------------------------- /exec/assets/AmmunitionBox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/AmmunitionBox.json -------------------------------------------------------------------------------- /exec/assets/AntitoxinBottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/AntitoxinBottle.json -------------------------------------------------------------------------------- /exec/assets/Armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Armor.json -------------------------------------------------------------------------------- /exec/assets/AtmosTool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/AtmosTool.json -------------------------------------------------------------------------------- /exec/assets/BarmanUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/BarmanUniform.json -------------------------------------------------------------------------------- /exec/assets/Bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Bed.json -------------------------------------------------------------------------------- /exec/assets/Beer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Beer.json -------------------------------------------------------------------------------- /exec/assets/BlackBoots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/BlackBoots.json -------------------------------------------------------------------------------- /exec/assets/Breakable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Breakable.json -------------------------------------------------------------------------------- /exec/assets/BruisePack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/BruisePack.json -------------------------------------------------------------------------------- /exec/assets/Bullet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Bullet.json -------------------------------------------------------------------------------- /exec/assets/BulletCasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/BulletCasing.json -------------------------------------------------------------------------------- /exec/assets/Chair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Chair.json -------------------------------------------------------------------------------- /exec/assets/Closet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Closet.json -------------------------------------------------------------------------------- /exec/assets/Cloth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Cloth.json -------------------------------------------------------------------------------- /exec/assets/ClownBoots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/ClownBoots.json -------------------------------------------------------------------------------- /exec/assets/ClownUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/ClownUniform.json -------------------------------------------------------------------------------- /exec/assets/Computer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Computer.json -------------------------------------------------------------------------------- /exec/assets/Connector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Connector.json -------------------------------------------------------------------------------- /exec/assets/Crowbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Crowbar.json -------------------------------------------------------------------------------- /exec/assets/Door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Door.json -------------------------------------------------------------------------------- /exec/assets/Drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Drinks.json -------------------------------------------------------------------------------- /exec/assets/EngineUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/EngineUniform.json -------------------------------------------------------------------------------- /exec/assets/ExternalDoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/ExternalDoor.json -------------------------------------------------------------------------------- /exec/assets/FlatGlass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FlatGlass.json -------------------------------------------------------------------------------- /exec/assets/Floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Floor.json -------------------------------------------------------------------------------- /exec/assets/FloorBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FloorBar.json -------------------------------------------------------------------------------- /exec/assets/FloorCafeteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FloorCafeteria.json -------------------------------------------------------------------------------- /exec/assets/FloorFreezer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FloorFreezer.json -------------------------------------------------------------------------------- /exec/assets/FloorTile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FloorTile.json -------------------------------------------------------------------------------- /exec/assets/FloorWhite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FloorWhite.json -------------------------------------------------------------------------------- /exec/assets/FuelTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/FuelTank.json -------------------------------------------------------------------------------- /exec/assets/GasMask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/GasMask.json -------------------------------------------------------------------------------- /exec/assets/GasTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/GasTank.json -------------------------------------------------------------------------------- /exec/assets/Ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Ghost.json -------------------------------------------------------------------------------- /exec/assets/Girder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Girder.json -------------------------------------------------------------------------------- /exec/assets/GlassDoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/GlassDoor.json -------------------------------------------------------------------------------- /exec/assets/Grille.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Grille.json -------------------------------------------------------------------------------- /exec/assets/Gun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Gun.json -------------------------------------------------------------------------------- /exec/assets/Hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Hand.json -------------------------------------------------------------------------------- /exec/assets/HandGasTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/HandGasTank.json -------------------------------------------------------------------------------- /exec/assets/HealthAnalyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/HealthAnalyzer.json -------------------------------------------------------------------------------- /exec/assets/Helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Helmet.json -------------------------------------------------------------------------------- /exec/assets/Human.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Human.json -------------------------------------------------------------------------------- /exec/assets/Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Item.json -------------------------------------------------------------------------------- /exec/assets/JanitorUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/JanitorUniform.json -------------------------------------------------------------------------------- /exec/assets/Laser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Laser.json -------------------------------------------------------------------------------- /exec/assets/LaserGun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/LaserGun.json -------------------------------------------------------------------------------- /exec/assets/Lattice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Lattice.json -------------------------------------------------------------------------------- /exec/assets/Limb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Limb.json -------------------------------------------------------------------------------- /exec/assets/LoginMob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/LoginMob.json -------------------------------------------------------------------------------- /exec/assets/MagicGasTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MagicGasTank.json -------------------------------------------------------------------------------- /exec/assets/MaintenanceDoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MaintenanceDoor.json -------------------------------------------------------------------------------- /exec/assets/Manifold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Manifold.json -------------------------------------------------------------------------------- /exec/assets/Mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Mask.json -------------------------------------------------------------------------------- /exec/assets/MaterialObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MaterialObject.json -------------------------------------------------------------------------------- /exec/assets/MedicalUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MedicalUniform.json -------------------------------------------------------------------------------- /exec/assets/Medicine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Medicine.json -------------------------------------------------------------------------------- /exec/assets/Metal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Metal.json -------------------------------------------------------------------------------- /exec/assets/MetalTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MetalTable.json -------------------------------------------------------------------------------- /exec/assets/MetalWall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/MetalWall.json -------------------------------------------------------------------------------- /exec/assets/Mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Mob.json -------------------------------------------------------------------------------- /exec/assets/Movable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Movable.json -------------------------------------------------------------------------------- /exec/assets/NontransparentDoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/NontransparentDoor.json -------------------------------------------------------------------------------- /exec/assets/Ointment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Ointment.json -------------------------------------------------------------------------------- /exec/assets/OrangeBoots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/OrangeBoots.json -------------------------------------------------------------------------------- /exec/assets/Pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Pipe.json -------------------------------------------------------------------------------- /exec/assets/PipeBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/PipeBase.json -------------------------------------------------------------------------------- /exec/assets/PipePump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/PipePump.json -------------------------------------------------------------------------------- /exec/assets/PlasmaGasTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/PlasmaGasTank.json -------------------------------------------------------------------------------- /exec/assets/Plating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Plating.json -------------------------------------------------------------------------------- /exec/assets/PressureIndicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/PressureIndicator.json -------------------------------------------------------------------------------- /exec/assets/Projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Projectile.json -------------------------------------------------------------------------------- /exec/assets/RedUniform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/RedUniform.json -------------------------------------------------------------------------------- /exec/assets/ReinforcedFlatGlass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/ReinforcedFlatGlass.json -------------------------------------------------------------------------------- /exec/assets/ReinforcedWall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/ReinforcedWall.json -------------------------------------------------------------------------------- /exec/assets/RemoteAtmosTool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/RemoteAtmosTool.json -------------------------------------------------------------------------------- /exec/assets/RemoteDoorOpener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/RemoteDoorOpener.json -------------------------------------------------------------------------------- /exec/assets/Revolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Revolver.json -------------------------------------------------------------------------------- /exec/assets/Rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Rod.json -------------------------------------------------------------------------------- /exec/assets/Screwdriver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Screwdriver.json -------------------------------------------------------------------------------- /exec/assets/SecurityDoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/SecurityDoor.json -------------------------------------------------------------------------------- /exec/assets/SecurityLocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/SecurityLocker.json -------------------------------------------------------------------------------- /exec/assets/Shard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Shard.json -------------------------------------------------------------------------------- /exec/assets/Space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Space.json -------------------------------------------------------------------------------- /exec/assets/SpawnPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/SpawnPoint.json -------------------------------------------------------------------------------- /exec/assets/Stool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Stool.json -------------------------------------------------------------------------------- /exec/assets/Structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Structure.json -------------------------------------------------------------------------------- /exec/assets/Table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Table.json -------------------------------------------------------------------------------- /exec/assets/Tank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Tank.json -------------------------------------------------------------------------------- /exec/assets/Tea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Tea.json -------------------------------------------------------------------------------- /exec/assets/Tophat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Tophat.json -------------------------------------------------------------------------------- /exec/assets/Turf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Turf.json -------------------------------------------------------------------------------- /exec/assets/Valve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Valve.json -------------------------------------------------------------------------------- /exec/assets/Vent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Vent.json -------------------------------------------------------------------------------- /exec/assets/Vodka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Vodka.json -------------------------------------------------------------------------------- /exec/assets/WallSign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/WallSign.json -------------------------------------------------------------------------------- /exec/assets/WaterTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/WaterTank.json -------------------------------------------------------------------------------- /exec/assets/Weldingtool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Weldingtool.json -------------------------------------------------------------------------------- /exec/assets/WhiteShoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/WhiteShoes.json -------------------------------------------------------------------------------- /exec/assets/Wirecutters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Wirecutters.json -------------------------------------------------------------------------------- /exec/assets/Wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/assets/Wrench.json -------------------------------------------------------------------------------- /exec/icons/288x288.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/288x288.dmi -------------------------------------------------------------------------------- /exec/icons/288x288.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/288x288.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorcom.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorcom.dmi -------------------------------------------------------------------------------- /exec/icons/Doorcom.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorcom.dmi.json -------------------------------------------------------------------------------- /exec/icons/Dooreng.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Dooreng.dmi -------------------------------------------------------------------------------- /exec/icons/Dooreng.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Dooreng.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorext.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorext.dmi -------------------------------------------------------------------------------- /exec/icons/Doorext.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorext.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorfire.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorfire.dmi -------------------------------------------------------------------------------- /exec/icons/Doorfire.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorfire.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorglass.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorglass.dmi -------------------------------------------------------------------------------- /exec/icons/Doorglass.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorglass.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doormaint.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doormaint.dmi -------------------------------------------------------------------------------- /exec/icons/Doormaint.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doormaint.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorsec.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorsec.dmi -------------------------------------------------------------------------------- /exec/icons/Doorsec.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorsec.dmi.json -------------------------------------------------------------------------------- /exec/icons/Doorsecglass.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorsecglass.dmi -------------------------------------------------------------------------------- /exec/icons/Doorsecglass.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/Doorsecglass.dmi.json -------------------------------------------------------------------------------- /exec/icons/ammo.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/ammo.dmi -------------------------------------------------------------------------------- /exec/icons/ammo.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/ammo.dmi.json -------------------------------------------------------------------------------- /exec/icons/atmos.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/atmos.dmi -------------------------------------------------------------------------------- /exec/icons/atmos.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/atmos.dmi.json -------------------------------------------------------------------------------- /exec/icons/back.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/back.dmi -------------------------------------------------------------------------------- /exec/icons/back.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/back.dmi.json -------------------------------------------------------------------------------- /exec/icons/blood.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/blood.dmi -------------------------------------------------------------------------------- /exec/icons/blood.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/blood.dmi.json -------------------------------------------------------------------------------- /exec/icons/chemical.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/chemical.dmi -------------------------------------------------------------------------------- /exec/icons/chemical.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/chemical.dmi.json -------------------------------------------------------------------------------- /exec/icons/closet.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/closet.dmi -------------------------------------------------------------------------------- /exec/icons/closet.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/closet.dmi.json -------------------------------------------------------------------------------- /exec/icons/computer.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/computer.dmi -------------------------------------------------------------------------------- /exec/icons/computer.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/computer.dmi.json -------------------------------------------------------------------------------- /exec/icons/dam_human.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/dam_human.dmi -------------------------------------------------------------------------------- /exec/icons/dam_human.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/dam_human.dmi.json -------------------------------------------------------------------------------- /exec/icons/decals.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/decals.dmi -------------------------------------------------------------------------------- /exec/icons/decals.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/decals.dmi.json -------------------------------------------------------------------------------- /exec/icons/device.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/device.dmi -------------------------------------------------------------------------------- /exec/icons/device.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/device.dmi.json -------------------------------------------------------------------------------- /exec/icons/digital_valve.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/digital_valve.dmi -------------------------------------------------------------------------------- /exec/icons/digital_valve.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/digital_valve.dmi.json -------------------------------------------------------------------------------- /exec/icons/doormed.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/doormed.dmi -------------------------------------------------------------------------------- /exec/icons/doormed.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/doormed.dmi.json -------------------------------------------------------------------------------- /exec/icons/drinks.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/drinks.dmi -------------------------------------------------------------------------------- /exec/icons/drinks.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/drinks.dmi.json -------------------------------------------------------------------------------- /exec/icons/feet.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/feet.dmi -------------------------------------------------------------------------------- /exec/icons/feet.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/feet.dmi.json -------------------------------------------------------------------------------- /exec/icons/fire.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/fire.dmi -------------------------------------------------------------------------------- /exec/icons/fire.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/fire.dmi.json -------------------------------------------------------------------------------- /exec/icons/fire_mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/fire_mine.png -------------------------------------------------------------------------------- /exec/icons/floors.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/floors.dmi -------------------------------------------------------------------------------- /exec/icons/floors.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/floors.dmi.json -------------------------------------------------------------------------------- /exec/icons/food.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/food.dmi -------------------------------------------------------------------------------- /exec/icons/food.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/food.dmi.json -------------------------------------------------------------------------------- /exec/icons/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/ghost.png -------------------------------------------------------------------------------- /exec/icons/guns.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/guns.dmi -------------------------------------------------------------------------------- /exec/icons/guns.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/guns.dmi.json -------------------------------------------------------------------------------- /exec/icons/hats.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/hats.dmi -------------------------------------------------------------------------------- /exec/icons/hats.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/hats.dmi.json -------------------------------------------------------------------------------- /exec/icons/head.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/head.dmi -------------------------------------------------------------------------------- /exec/icons/head.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/head.dmi.json -------------------------------------------------------------------------------- /exec/icons/human.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/human.dmi -------------------------------------------------------------------------------- /exec/icons/human.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/human.dmi.json -------------------------------------------------------------------------------- /exec/icons/items.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items.dmi -------------------------------------------------------------------------------- /exec/icons/items.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items.dmi.json -------------------------------------------------------------------------------- /exec/icons/items_lefthand.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items_lefthand.dmi -------------------------------------------------------------------------------- /exec/icons/items_lefthand.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items_lefthand.dmi.json -------------------------------------------------------------------------------- /exec/icons/items_righthand.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items_righthand.dmi -------------------------------------------------------------------------------- /exec/icons/items_righthand.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/items_righthand.dmi.json -------------------------------------------------------------------------------- /exec/icons/login_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/login_screen.jpg -------------------------------------------------------------------------------- /exec/icons/mask.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/mask.dmi -------------------------------------------------------------------------------- /exec/icons/mask.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/mask.dmi.json -------------------------------------------------------------------------------- /exec/icons/masks.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/masks.dmi -------------------------------------------------------------------------------- /exec/icons/masks.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/masks.dmi.json -------------------------------------------------------------------------------- /exec/icons/metaltables.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/metaltables.dmi -------------------------------------------------------------------------------- /exec/icons/metaltables.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/metaltables.dmi.json -------------------------------------------------------------------------------- /exec/icons/mob.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/mob.dmi -------------------------------------------------------------------------------- /exec/icons/mob.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/mob.dmi.json -------------------------------------------------------------------------------- /exec/icons/numbers.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/numbers.dmi -------------------------------------------------------------------------------- /exec/icons/numbers.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/numbers.dmi.json -------------------------------------------------------------------------------- /exec/icons/objects.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/objects.dmi -------------------------------------------------------------------------------- /exec/icons/objects.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/objects.dmi.json -------------------------------------------------------------------------------- /exec/icons/pipe_vent.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipe_vent.dmi -------------------------------------------------------------------------------- /exec/icons/pipe_vent.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipe_vent.dmi.json -------------------------------------------------------------------------------- /exec/icons/pipes.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipes.dmi -------------------------------------------------------------------------------- /exec/icons/pipes.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipes.dmi.json -------------------------------------------------------------------------------- /exec/icons/pipes2.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipes2.dmi -------------------------------------------------------------------------------- /exec/icons/pipes2.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/pipes2.dmi.json -------------------------------------------------------------------------------- /exec/icons/plasma.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/plasma.dmi -------------------------------------------------------------------------------- /exec/icons/plasma.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/plasma.dmi.json -------------------------------------------------------------------------------- /exec/icons/projectiles.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/projectiles.dmi -------------------------------------------------------------------------------- /exec/icons/projectiles.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/projectiles.dmi.json -------------------------------------------------------------------------------- /exec/icons/screen1.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen1.dmi -------------------------------------------------------------------------------- /exec/icons/screen1.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen1.dmi.json -------------------------------------------------------------------------------- /exec/icons/screen1_old.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen1_old.dmi -------------------------------------------------------------------------------- /exec/icons/screen1_old.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen1_old.dmi.json -------------------------------------------------------------------------------- /exec/icons/screen_midnight.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen_midnight.dmi -------------------------------------------------------------------------------- /exec/icons/screen_midnight.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen_midnight.dmi.json -------------------------------------------------------------------------------- /exec/icons/screen_retro.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen_retro.dmi -------------------------------------------------------------------------------- /exec/icons/screen_retro.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/screen_retro.dmi.json -------------------------------------------------------------------------------- /exec/icons/shards.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shards.dmi -------------------------------------------------------------------------------- /exec/icons/shards.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shards.dmi.json -------------------------------------------------------------------------------- /exec/icons/shoes.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shoes.dmi -------------------------------------------------------------------------------- /exec/icons/shoes.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shoes.dmi.json -------------------------------------------------------------------------------- /exec/icons/shoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shoes.png -------------------------------------------------------------------------------- /exec/icons/shoes.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/shoes.png.json -------------------------------------------------------------------------------- /exec/icons/space.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/space.dmi -------------------------------------------------------------------------------- /exec/icons/space.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/space.dmi.json -------------------------------------------------------------------------------- /exec/icons/spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/spear.png -------------------------------------------------------------------------------- /exec/icons/structures.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/structures.dmi -------------------------------------------------------------------------------- /exec/icons/structures.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/structures.dmi.json -------------------------------------------------------------------------------- /exec/icons/suit.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/suit.dmi -------------------------------------------------------------------------------- /exec/icons/suit.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/suit.dmi.json -------------------------------------------------------------------------------- /exec/icons/suits.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/suits.dmi -------------------------------------------------------------------------------- /exec/icons/suits.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/suits.dmi.json -------------------------------------------------------------------------------- /exec/icons/tank.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/tank.dmi -------------------------------------------------------------------------------- /exec/icons/tank.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/tank.dmi.json -------------------------------------------------------------------------------- /exec/icons/uniform.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/uniform.dmi -------------------------------------------------------------------------------- /exec/icons/uniform.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/uniform.dmi.json -------------------------------------------------------------------------------- /exec/icons/uniforms.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/uniforms.dmi -------------------------------------------------------------------------------- /exec/icons/uniforms.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/uniforms.dmi.json -------------------------------------------------------------------------------- /exec/icons/vent_pump.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/vent_pump.dmi -------------------------------------------------------------------------------- /exec/icons/vent_pump.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/vent_pump.dmi.json -------------------------------------------------------------------------------- /exec/icons/walls.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/walls.dmi -------------------------------------------------------------------------------- /exec/icons/walls.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/walls.dmi.json -------------------------------------------------------------------------------- /exec/icons/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/walls.png -------------------------------------------------------------------------------- /exec/icons/walls.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/walls.png.json -------------------------------------------------------------------------------- /exec/icons/windoor.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/windoor.dmi -------------------------------------------------------------------------------- /exec/icons/windoor.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/icons/windoor.dmi.json -------------------------------------------------------------------------------- /exec/maps/gloom.gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/maps/gloom.gen.json -------------------------------------------------------------------------------- /exec/music/lobby.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/music/lobby.ogg -------------------------------------------------------------------------------- /exec/names/first_female.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/names/first_female.txt -------------------------------------------------------------------------------- /exec/names/first_male.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/names/first_male.txt -------------------------------------------------------------------------------- /exec/names/last.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/names/last.txt -------------------------------------------------------------------------------- /exec/sounds/Crowbar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Crowbar.wav -------------------------------------------------------------------------------- /exec/sounds/Deconstruct.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Deconstruct.wav -------------------------------------------------------------------------------- /exec/sounds/Glassbr1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Glassbr1.wav -------------------------------------------------------------------------------- /exec/sounds/Glassbr2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Glassbr2.wav -------------------------------------------------------------------------------- /exec/sounds/Glassbr3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Glassbr3.wav -------------------------------------------------------------------------------- /exec/sounds/Glasshit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Glasshit.wav -------------------------------------------------------------------------------- /exec/sounds/Gunshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Gunshot.wav -------------------------------------------------------------------------------- /exec/sounds/Laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Laser.wav -------------------------------------------------------------------------------- /exec/sounds/Ratchet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Ratchet.wav -------------------------------------------------------------------------------- /exec/sounds/Screwdriver.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Screwdriver.wav -------------------------------------------------------------------------------- /exec/sounds/Welder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Welder.wav -------------------------------------------------------------------------------- /exec/sounds/Wirecutter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/Wirecutter.wav -------------------------------------------------------------------------------- /exec/sounds/airlock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/airlock.wav -------------------------------------------------------------------------------- /exec/sounds/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/click.wav -------------------------------------------------------------------------------- /exec/sounds/clownstep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/clownstep1.wav -------------------------------------------------------------------------------- /exec/sounds/clownstep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/clownstep2.wav -------------------------------------------------------------------------------- /exec/sounds/door_close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/door_close.wav -------------------------------------------------------------------------------- /exec/sounds/door_open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/door_open.wav -------------------------------------------------------------------------------- /exec/sounds/drink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/drink.wav -------------------------------------------------------------------------------- /exec/sounds/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/empty.wav -------------------------------------------------------------------------------- /exec/sounds/genhit1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/genhit1.wav -------------------------------------------------------------------------------- /exec/sounds/genhit2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/genhit2.wav -------------------------------------------------------------------------------- /exec/sounds/genhit3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/genhit3.wav -------------------------------------------------------------------------------- /exec/sounds/glass_step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/glass_step.wav -------------------------------------------------------------------------------- /exec/sounds/grillehit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/grillehit.wav -------------------------------------------------------------------------------- /exec/sounds/hit_on_shattered_glass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/hit_on_shattered_glass.wav -------------------------------------------------------------------------------- /exec/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/jump.wav -------------------------------------------------------------------------------- /exec/sounds/laser3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/laser3.wav -------------------------------------------------------------------------------- /exec/sounds/punch1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/punch1.wav -------------------------------------------------------------------------------- /exec/sounds/punch2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/punch2.wav -------------------------------------------------------------------------------- /exec/sounds/punch3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/punch3.wav -------------------------------------------------------------------------------- /exec/sounds/punch4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/punch4.wav -------------------------------------------------------------------------------- /exec/sounds/refill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/refill.wav -------------------------------------------------------------------------------- /exec/sounds/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/step.wav -------------------------------------------------------------------------------- /exec/sounds/windowdoor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/windowdoor.wav -------------------------------------------------------------------------------- /exec/sounds/work_boots_jump_on_plastic_tarpaulin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/work_boots_jump_on_plastic_tarpaulin.wav -------------------------------------------------------------------------------- /exec/sounds/work_boots_skid_on_leaves.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/sounds/work_boots_skid_on_leaves.wav -------------------------------------------------------------------------------- /exec/test/icons/empty_file.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exec/test/icons/hotspot.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/hotspot.dmi -------------------------------------------------------------------------------- /exec/test/icons/hotspot.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/hotspot.dmi.json -------------------------------------------------------------------------------- /exec/test/icons/invalid_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/invalid_metadata.png -------------------------------------------------------------------------------- /exec/test/icons/no_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/no_metadata.png -------------------------------------------------------------------------------- /exec/test/icons/not_png.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/not_png.jpg -------------------------------------------------------------------------------- /exec/test/icons/test1.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/test1.dmi -------------------------------------------------------------------------------- /exec/test/icons/test1.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/test1.dmi.json -------------------------------------------------------------------------------- /exec/test/icons/unknown_param.dmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/unknown_param.dmi -------------------------------------------------------------------------------- /exec/test/icons/unknown_param.dmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/icons/unknown_param.dmi.json -------------------------------------------------------------------------------- /exec/test/maps/tiny_space.gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/exec/test/maps/tiny_space.gen.json -------------------------------------------------------------------------------- /exec/test/text/cyrillic.txt: -------------------------------------------------------------------------------- 1 | Привет, мир! -------------------------------------------------------------------------------- /gopath/src/griefly-server/.gitignore: -------------------------------------------------------------------------------- 1 | /griefly-server 2 | -------------------------------------------------------------------------------- /gopath/src/griefly-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/CMakeLists.txt -------------------------------------------------------------------------------- /gopath/src/griefly-server/assetserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/assetserver.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/auth.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/client.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/client_conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/client_conn.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/client_conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/client_conn_test.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/db/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/db/auth.json -------------------------------------------------------------------------------- /gopath/src/griefly-server/json_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/json_db.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/main.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/message.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/model.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/simple_client/.gitignore: -------------------------------------------------------------------------------- 1 | /simple_client 2 | -------------------------------------------------------------------------------- /gopath/src/griefly-server/simple_client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/simple_client/main.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/telemetry.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/beorn7/perks/quantile/exampledata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/beorn7/perks/quantile/exampledata.txt -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/beorn7/perks/quantile/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/beorn7/perks/quantile/stream.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/NOTICE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/Makefile -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/decode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/encode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/NOTICE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/README.md -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/collector.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/counter.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/desc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/expvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/expvar.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/fnv.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/gauge.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/histogram.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/http.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/metric.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/push.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/registry.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/summary.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/untyped.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/untyped.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/value.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/vec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_golang/prometheus/vec.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_model/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_model/NOTICE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/client_model/go/metrics.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/client_model/go/metrics.pb.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/decode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/encode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/expfmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/expfmt.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/fuzz.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/json_decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/json_decode.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/text_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/text_create.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/text_parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/expfmt/text_parse.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/README.txt -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg/autoneg.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/alert.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/fingerprinting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/fingerprinting.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/fnv.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/labels.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/labelset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/labelset.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/metric.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/model.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/signature.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/silence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/silence.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/time.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/common/model/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/common/model/value.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/AUTHORS.md -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/CONTRIBUTING.md -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_io.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_limits.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/proc_stat.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/gopkg.in/validator.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/gopkg.in/validator.v2/LICENSE -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/gopkg.in/validator.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/gopkg.in/validator.v2/README.md -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/gopkg.in/validator.v2/builtins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/gopkg.in/validator.v2/builtins.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/gopkg.in/validator.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/gopkg.in/validator.v2/doc.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/gopkg.in/validator.v2/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/gopkg.in/validator.v2/validator.go -------------------------------------------------------------------------------- /gopath/src/griefly-server/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/gopath/src/griefly-server/vendor/vendor.json -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/make.sh -------------------------------------------------------------------------------- /sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/CMakeLists.txt -------------------------------------------------------------------------------- /sources/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/CMakeLists.txt -------------------------------------------------------------------------------- /sources/client/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/Game.cpp -------------------------------------------------------------------------------- /sources/client/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/Game.h -------------------------------------------------------------------------------- /sources/client/JsonValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/JsonValidator.cpp -------------------------------------------------------------------------------- /sources/client/JsonValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/JsonValidator.h -------------------------------------------------------------------------------- /sources/client/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/Log.cpp -------------------------------------------------------------------------------- /sources/client/Log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace kv 4 | { 5 | 6 | void InitializeLog(); 7 | 8 | } 9 | -------------------------------------------------------------------------------- /sources/client/MapEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/MapEditor.cpp -------------------------------------------------------------------------------- /sources/client/MapEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/MapEditor.h -------------------------------------------------------------------------------- /sources/client/Params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/Params.cpp -------------------------------------------------------------------------------- /sources/client/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/Params.h -------------------------------------------------------------------------------- /sources/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/main.cpp -------------------------------------------------------------------------------- /sources/client/net/MagicStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/net/MagicStrings.h -------------------------------------------------------------------------------- /sources/client/net/Network2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/net/Network2.cpp -------------------------------------------------------------------------------- /sources/client/net/Network2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/net/Network2.h -------------------------------------------------------------------------------- /sources/client/platform/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/platform/gl.h -------------------------------------------------------------------------------- /sources/client/representation/GLSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/GLSprite.cpp -------------------------------------------------------------------------------- /sources/client/representation/GLSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/GLSprite.h -------------------------------------------------------------------------------- /sources/client/representation/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/ImageLoader.cpp -------------------------------------------------------------------------------- /sources/client/representation/ImageLoader.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void LoadImages(); -------------------------------------------------------------------------------- /sources/client/representation/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Metadata.cpp -------------------------------------------------------------------------------- /sources/client/representation/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Metadata.h -------------------------------------------------------------------------------- /sources/client/representation/Representation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Representation.cpp -------------------------------------------------------------------------------- /sources/client/representation/Representation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Representation.h -------------------------------------------------------------------------------- /sources/client/representation/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Screen.cpp -------------------------------------------------------------------------------- /sources/client/representation/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Screen.h -------------------------------------------------------------------------------- /sources/client/representation/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Sound.cpp -------------------------------------------------------------------------------- /sources/client/representation/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/Sound.h -------------------------------------------------------------------------------- /sources/client/representation/SpriteHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/SpriteHolder.cpp -------------------------------------------------------------------------------- /sources/client/representation/SpriteHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/SpriteHolder.h -------------------------------------------------------------------------------- /sources/client/representation/View2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/View2.cpp -------------------------------------------------------------------------------- /sources/client/representation/View2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/View2.h -------------------------------------------------------------------------------- /sources/client/representation/qt/gaminglineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/gaminglineedit.cpp -------------------------------------------------------------------------------- /sources/client/representation/qt/gaminglineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/gaminglineedit.h -------------------------------------------------------------------------------- /sources/client/representation/qt/mainform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mainform.cpp -------------------------------------------------------------------------------- /sources/client/representation/qt/mainform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mainform.h -------------------------------------------------------------------------------- /sources/client/representation/qt/mainform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mainform.ui -------------------------------------------------------------------------------- /sources/client/representation/qt/mapeditorform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mapeditorform.cpp -------------------------------------------------------------------------------- /sources/client/representation/qt/mapeditorform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mapeditorform.h -------------------------------------------------------------------------------- /sources/client/representation/qt/mapeditorform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/mapeditorform.ui -------------------------------------------------------------------------------- /sources/client/representation/qt/qtopengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/qtopengl.cpp -------------------------------------------------------------------------------- /sources/client/representation/qt/qtopengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/client/representation/qt/qtopengl.h -------------------------------------------------------------------------------- /sources/core/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Asset.cpp -------------------------------------------------------------------------------- /sources/core/AutogenMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/AutogenMetadata.h -------------------------------------------------------------------------------- /sources/core/BasicTypesNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/BasicTypesNames.h -------------------------------------------------------------------------------- /sources/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/CMakeLists.txt -------------------------------------------------------------------------------- /sources/core/ChatFrameInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ChatFrameInfo.cpp -------------------------------------------------------------------------------- /sources/core/ChatFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ChatFrameInfo.h -------------------------------------------------------------------------------- /sources/core/CoreImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/CoreImplementation.cpp -------------------------------------------------------------------------------- /sources/core/CoreImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/CoreImplementation.h -------------------------------------------------------------------------------- /sources/core/FastIsType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/FastIsType.cpp -------------------------------------------------------------------------------- /sources/core/FastIsType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/FastIsType.h -------------------------------------------------------------------------------- /sources/core/FastSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/FastSerializer.h -------------------------------------------------------------------------------- /sources/core/Hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Hashes.h -------------------------------------------------------------------------------- /sources/core/Hearer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Hearer.h -------------------------------------------------------------------------------- /sources/core/Idptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Idptr.h -------------------------------------------------------------------------------- /sources/core/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Interfaces.h -------------------------------------------------------------------------------- /sources/core/ItemsCreators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ItemsCreators.cpp -------------------------------------------------------------------------------- /sources/core/KvAbort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/KvAbort.h -------------------------------------------------------------------------------- /sources/core/KvGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/KvGlobals.h -------------------------------------------------------------------------------- /sources/core/KvMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/KvMacros.h -------------------------------------------------------------------------------- /sources/core/LosCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/LosCalculator.cpp -------------------------------------------------------------------------------- /sources/core/LosCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/LosCalculator.h -------------------------------------------------------------------------------- /sources/core/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Map.cpp -------------------------------------------------------------------------------- /sources/core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Map.h -------------------------------------------------------------------------------- /sources/core/Names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Names.cpp -------------------------------------------------------------------------------- /sources/core/Names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Names.h -------------------------------------------------------------------------------- /sources/core/ObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ObjectFactory.cpp -------------------------------------------------------------------------------- /sources/core/ObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ObjectFactory.h -------------------------------------------------------------------------------- /sources/core/SaveableOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/SaveableOperators.h -------------------------------------------------------------------------------- /sources/core/SynchronizedRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/SynchronizedRandom.cpp -------------------------------------------------------------------------------- /sources/core/SynchronizedRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/SynchronizedRandom.h -------------------------------------------------------------------------------- /sources/core/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/Version.h -------------------------------------------------------------------------------- /sources/core/ViewInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ViewInfo.cpp -------------------------------------------------------------------------------- /sources/core/ViewInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/ViewInfo.h -------------------------------------------------------------------------------- /sources/core/VisibleLevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/VisibleLevels.h -------------------------------------------------------------------------------- /sources/core/WorldLoaderSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/WorldLoaderSaver.cpp -------------------------------------------------------------------------------- /sources/core/WorldLoaderSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/WorldLoaderSaver.h -------------------------------------------------------------------------------- /sources/core/atmos/Atmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/Atmos.cpp -------------------------------------------------------------------------------- /sources/core/atmos/Atmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/Atmos.h -------------------------------------------------------------------------------- /sources/core/atmos/AtmosConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/AtmosConstants.h -------------------------------------------------------------------------------- /sources/core/atmos/AtmosGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/AtmosGrid.cpp -------------------------------------------------------------------------------- /sources/core/atmos/AtmosGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/AtmosGrid.h -------------------------------------------------------------------------------- /sources/core/atmos/AtmosHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/AtmosHolder.cpp -------------------------------------------------------------------------------- /sources/core/atmos/AtmosHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/atmos/AtmosHolder.h -------------------------------------------------------------------------------- /sources/core/objects/Computers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Computers.cpp -------------------------------------------------------------------------------- /sources/core/objects/Computers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Computers.h -------------------------------------------------------------------------------- /sources/core/objects/Door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Door.cpp -------------------------------------------------------------------------------- /sources/core/objects/Door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Door.h -------------------------------------------------------------------------------- /sources/core/objects/GlobalObjectsHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/GlobalObjectsHolder.cpp -------------------------------------------------------------------------------- /sources/core/objects/GlobalObjectsHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/GlobalObjectsHolder.h -------------------------------------------------------------------------------- /sources/core/objects/Lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Lobby.cpp -------------------------------------------------------------------------------- /sources/core/objects/Lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Lobby.h -------------------------------------------------------------------------------- /sources/core/objects/MapObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/MapObject.cpp -------------------------------------------------------------------------------- /sources/core/objects/MapObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/MapObject.h -------------------------------------------------------------------------------- /sources/core/objects/MaterialObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/MaterialObject.cpp -------------------------------------------------------------------------------- /sources/core/objects/MaterialObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/MaterialObject.h -------------------------------------------------------------------------------- /sources/core/objects/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Object.cpp -------------------------------------------------------------------------------- /sources/core/objects/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Object.h -------------------------------------------------------------------------------- /sources/core/objects/ObjectProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/ObjectProcessor.cpp -------------------------------------------------------------------------------- /sources/core/objects/ObjectProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/ObjectProcessor.h -------------------------------------------------------------------------------- /sources/core/objects/PhysicsEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/PhysicsEngine.cpp -------------------------------------------------------------------------------- /sources/core/objects/PhysicsEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/PhysicsEngine.h -------------------------------------------------------------------------------- /sources/core/objects/Professions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Professions.cpp -------------------------------------------------------------------------------- /sources/core/objects/Professions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Professions.h -------------------------------------------------------------------------------- /sources/core/objects/Sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Sign.cpp -------------------------------------------------------------------------------- /sources/core/objects/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Sign.h -------------------------------------------------------------------------------- /sources/core/objects/SpawnPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/SpawnPoints.cpp -------------------------------------------------------------------------------- /sources/core/objects/SpawnPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/SpawnPoints.h -------------------------------------------------------------------------------- /sources/core/objects/Tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Tile.cpp -------------------------------------------------------------------------------- /sources/core/objects/Tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/Tile.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/Ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Ghost.cpp -------------------------------------------------------------------------------- /sources/core/objects/mobs/Ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Ghost.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/Human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Human.cpp -------------------------------------------------------------------------------- /sources/core/objects/mobs/Human.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Human.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/HumanInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/HumanInterface.cpp -------------------------------------------------------------------------------- /sources/core/objects/mobs/HumanInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/HumanInterface.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/LoginMob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/LoginMob.cpp -------------------------------------------------------------------------------- /sources/core/objects/mobs/LoginMob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/LoginMob.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/Mob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Mob.cpp -------------------------------------------------------------------------------- /sources/core/objects/mobs/Mob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Mob.h -------------------------------------------------------------------------------- /sources/core/objects/mobs/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/mobs/Slot.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Closet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Closet.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Closet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Closet.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Furniture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Furniture.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Furniture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Furniture.h -------------------------------------------------------------------------------- /sources/core/objects/movable/GasTank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/GasTank.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/GasTank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/GasTank.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Movable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Movable.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Movable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Movable.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Pipes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Pipes.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Pipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Pipes.h -------------------------------------------------------------------------------- /sources/core/objects/movable/ProjectileTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/ProjectileTypes.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/ProjectileTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/ProjectileTypes.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Projectiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Projectiles.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Projectiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Projectiles.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Tables.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Tables.h -------------------------------------------------------------------------------- /sources/core/objects/movable/Tanks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Tanks.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/Tanks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/Tanks.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/AmmunitionBoxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/AmmunitionBoxes.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/AmmunitionBoxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/AmmunitionBoxes.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Clothes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Clothes.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Clothes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Clothes.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Drinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Drinks.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Drinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Drinks.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/ElectricTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/ElectricTools.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/ElectricTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/ElectricTools.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/FloorTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/FloorTile.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/FloorTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/FloorTile.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Gun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Gun.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Gun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Gun.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/HandGasTank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/HandGasTank.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/HandGasTank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/HandGasTank.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Item.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Item.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Limbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Limbs.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Limbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Limbs.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Masks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Masks.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Masks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Masks.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Materials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Materials.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Materials.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/MedbayTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/MedbayTools.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/MedbayTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/MedbayTools.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Shard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Shard.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Shard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Shard.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Weapons.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Weapons.h -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Weldingtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Weldingtool.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/items/Weldingtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/items/Weldingtool.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Breakable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Breakable.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Breakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Breakable.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Girder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Girder.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Girder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Girder.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Glass.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Glass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Glass.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Grille.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Grille.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Grille.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Grille.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Lattice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Lattice.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Lattice.h -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Structure.cpp -------------------------------------------------------------------------------- /sources/core/objects/movable/structures/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/movable/structures/Structure.h -------------------------------------------------------------------------------- /sources/core/objects/test/PressureIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/PressureIndicator.cpp -------------------------------------------------------------------------------- /sources/core/objects/test/PressureIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/PressureIndicator.h -------------------------------------------------------------------------------- /sources/core/objects/test/RemoteDoorOpener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/RemoteDoorOpener.cpp -------------------------------------------------------------------------------- /sources/core/objects/test/RemoteDoorOpener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/RemoteDoorOpener.h -------------------------------------------------------------------------------- /sources/core/objects/test/TestObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/TestObject.cpp -------------------------------------------------------------------------------- /sources/core/objects/test/TestObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/TestObject.h -------------------------------------------------------------------------------- /sources/core/objects/test/UnsyncGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/UnsyncGenerator.cpp -------------------------------------------------------------------------------- /sources/core/objects/test/UnsyncGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/test/UnsyncGenerator.h -------------------------------------------------------------------------------- /sources/core/objects/turfs/Floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Floor.cpp -------------------------------------------------------------------------------- /sources/core/objects/turfs/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Floor.h -------------------------------------------------------------------------------- /sources/core/objects/turfs/MetalWall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/MetalWall.cpp -------------------------------------------------------------------------------- /sources/core/objects/turfs/MetalWall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/MetalWall.h -------------------------------------------------------------------------------- /sources/core/objects/turfs/Space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Space.cpp -------------------------------------------------------------------------------- /sources/core/objects/turfs/Space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Space.h -------------------------------------------------------------------------------- /sources/core/objects/turfs/Turf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Turf.cpp -------------------------------------------------------------------------------- /sources/core/objects/turfs/Turf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/objects/turfs/Turf.h -------------------------------------------------------------------------------- /sources/core/tests/asset_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/asset_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/atmos_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/atmos_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/basic_types_names_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/basic_types_names_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/chat_frame_info_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/chat_frame_info_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/core_interface_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/core_interface_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/fast_is_type_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/fast_is_type_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/fast_serializer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/fast_serializer_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/hashes_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/hashes_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/human_interface_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/human_interface_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/id_ptr_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/id_ptr_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/interfaces_mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/interfaces_mocks.h -------------------------------------------------------------------------------- /sources/core/tests/json_validator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/json_validator_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/kv_abort_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/kv_abort_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/main_object_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/main_object_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/map_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/map_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/metadata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/metadata_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/name_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/name_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/object_factory_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/object_factory_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/object_processor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/object_processor_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/params_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/params_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/physics_engine_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/physics_engine_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/raw_view_info_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/raw_view_info_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/saveable_operators_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/saveable_operators_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/slot_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/slot_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/sync_random_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/sync_random_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/vector_and_point_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/vector_and_point_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/version_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/version_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/view_info_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/view_info_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/world_implementation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/world_implementation_tests.cpp -------------------------------------------------------------------------------- /sources/core/tests/world_loader_saver_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core/tests/world_loader_saver_tests.cpp -------------------------------------------------------------------------------- /sources/core_headers/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/Asset.h -------------------------------------------------------------------------------- /sources/core_headers/CoreInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/CoreInterface.h -------------------------------------------------------------------------------- /sources/core_headers/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/Dir.h -------------------------------------------------------------------------------- /sources/core_headers/Mapgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/Mapgen.h -------------------------------------------------------------------------------- /sources/core_headers/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/Messages.h -------------------------------------------------------------------------------- /sources/core_headers/NetworkMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/NetworkMessages.h -------------------------------------------------------------------------------- /sources/core_headers/RawViewInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/sources/core_headers/RawViewInfo.h -------------------------------------------------------------------------------- /utils/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/autogen.py -------------------------------------------------------------------------------- /utils/basic_assets_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/basic_assets_generator/CMakeLists.txt -------------------------------------------------------------------------------- /utils/basic_assets_generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/basic_assets_generator/main.cpp -------------------------------------------------------------------------------- /utils/extract_dmi_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/extract_dmi_metadata.py -------------------------------------------------------------------------------- /utils/fix_mapgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/fix_mapgen.py -------------------------------------------------------------------------------- /utils/imitate_many_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/imitate_many_clients.py -------------------------------------------------------------------------------- /utils/launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /utils/launcher/launcherform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/launcher/launcherform.cpp -------------------------------------------------------------------------------- /utils/launcher/launcherform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/launcher/launcherform.h -------------------------------------------------------------------------------- /utils/launcher/launcherform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/launcher/launcherform.ui -------------------------------------------------------------------------------- /utils/launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/launcher/main.cpp -------------------------------------------------------------------------------- /utils/map_editor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/map_editor/CMakeLists.txt -------------------------------------------------------------------------------- /utils/map_editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/map_editor/main.cpp -------------------------------------------------------------------------------- /utils/metadata_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/metadata_generator.py -------------------------------------------------------------------------------- /utils/qzip_unpacker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/qzip_unpacker/CMakeLists.txt -------------------------------------------------------------------------------- /utils/qzip_unpacker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/qzip_unpacker/main.cpp -------------------------------------------------------------------------------- /utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griefly/griefly/HEAD/utils/version.py --------------------------------------------------------------------------------