├── CHANGELOG.md ├── CONTRIBUTING.md ├── README-LOGO.svg ├── README-MAP.png ├── README.md ├── SECURITY.md ├── Vagrantfile.template ├── back ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE.txt ├── jasmine.json ├── package.json ├── server.ts ├── src │ ├── App.ts │ ├── Controller │ │ ├── BaseController.ts │ │ ├── DebugController.ts │ │ └── PrometheusController.ts │ ├── Enum │ │ └── EnvironmentVariable.ts │ ├── Messages │ │ └── .gitignore │ ├── Model │ │ ├── Admin.ts │ │ ├── GameRoom.ts │ │ ├── Group.ts │ │ ├── Movable.ts │ │ ├── PositionInterface.ts │ │ ├── PositionNotifier.ts │ │ ├── User.ts │ │ ├── Websocket │ │ │ ├── CharacterLayer.ts │ │ │ ├── Identificable.ts │ │ │ ├── ItemEventMessage.ts │ │ │ ├── MessageUserPosition.ts │ │ │ ├── PointInterface.ts │ │ │ └── ProtobufUtils.ts │ │ └── Zone.ts │ ├── RoomManager.ts │ ├── Server │ │ ├── server │ │ │ ├── app.ts │ │ │ ├── baseapp.ts │ │ │ ├── formdata.ts │ │ │ ├── sslapp.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ └── sifrr.server.ts │ └── Services │ │ ├── AdminApi.ts │ │ ├── AdminApi │ │ ├── CharacterTexture.ts │ │ ├── MapDetailsData.ts │ │ └── RoomRedirect.ts │ │ ├── ArrayHelper.ts │ │ ├── ClientEventsEmitter.ts │ │ ├── CpuTracker.ts │ │ ├── GaugeManager.ts │ │ ├── LocalUrlError.ts │ │ ├── Logger.ts │ │ ├── MapFetcher.ts │ │ ├── MessageHelpers.ts │ │ ├── RedisClient.ts │ │ ├── Repository │ │ ├── RedisVariablesRepository.ts │ │ ├── VariablesRepository.ts │ │ ├── VariablesRepositoryInterface.ts │ │ └── VoidVariablesRepository.ts │ │ ├── SocketManager.ts │ │ ├── VariableError.ts │ │ └── VariablesManager.ts ├── tests │ ├── ArrayHelperTest.ts │ ├── GameRoomTest.ts │ ├── MapFetcherTest.ts │ ├── PositionNotifierTest.ts │ └── getNearbyDescriptorsMatrixTest.ts ├── tsconfig.json └── yarn.lock ├── benchmark ├── .gitignore ├── README.md ├── benchmark_multi_core.sh ├── index.ts ├── package-lock.json ├── package.json └── yarn.lock ├── contrib └── docker │ ├── .env.prod.template │ └── docker-compose.prod.yaml ├── deeployer.libsonnet ├── docker-compose.single-domain.yaml ├── docker-compose.testcafe.yml ├── docker-compose.yml ├── docs ├── dev │ ├── README.md │ ├── contributing-to-scripting-api.md │ └── images │ │ ├── scripting_1.svg │ │ └── scripting_2.svg ├── diagrams.md └── maps │ ├── animations.md │ ├── api-chat.md │ ├── api-controls.md │ ├── api-deprecated.md │ ├── api-nav.md │ ├── api-player.md │ ├── api-reference.md │ ├── api-room.md │ ├── api-sound.md │ ├── api-start.md │ ├── api-state.md │ ├── api-ui.md │ ├── camera.md │ ├── entry-exit.md │ ├── hosting.md │ ├── images │ ├── anims │ │ ├── animation_editor.png │ │ ├── camera.png │ │ └── settings_show_animations.png │ ├── camera │ │ ├── 0_focusable_zone.png │ │ ├── 1_object_layer.png │ │ ├── 2_rectangle_zone.png │ │ ├── 3_define_new_zone.png │ │ ├── 4_add_zone_type.png │ │ ├── 5_click_add_property.png │ │ ├── 6_add_focusable_prop.png │ │ ├── 7_make_sure_checked.png │ │ ├── 8_add_zoom_margin.png │ │ ├── 9_optional_zoom_margin_defined.png │ │ ├── no_margin.png │ │ └── with_margin.png │ ├── click_space_jitsi.png │ ├── click_space_open_website.png │ ├── collides-1.png │ ├── collides-2.png │ ├── collides-3.png │ ├── collides-4.png │ ├── create_repo.png │ ├── custom-menu-iframe.png │ ├── custom-menu-navbar.png │ ├── exit_layer_map.png │ ├── github_pages.png │ ├── groupLayer.png │ ├── layer-entry-point.png │ ├── mapProperties.png │ ├── menu-command.png │ ├── nameIndexProperty.png │ ├── object_variable.png │ ├── open_website.png │ ├── open_website_allow_api.png │ ├── open_website_policy.png │ ├── screen_popup_in_game.png │ ├── screen_popup_tiled.png │ ├── script_property.png │ ├── start_kit_start_screen.png │ ├── start_layer.png │ ├── text-object.png │ ├── tile-entry-point.png │ ├── tiled_screenshot_1.png │ ├── trigger_event.png │ ├── trigger_message.png │ ├── use_this_template.png │ ├── website_address.png │ ├── website_allowapi_property.png │ ├── website_url_property.png │ └── youtube.jpg │ ├── index.md │ ├── meeting-rooms.md │ ├── menu.php │ ├── opening-a-website.md │ ├── scripting.md │ ├── special-zones.md │ ├── text.md │ ├── using-typescript.md │ ├── variables.md │ ├── wa-maps.md │ └── website-in-map.md ├── front ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE.txt ├── dist │ ├── .gitignore │ ├── .htaccess │ ├── ga.html.tmpl │ ├── iframe.html │ ├── index.tmpl.html │ ├── resources │ │ ├── characters │ │ │ └── pipoya │ │ │ │ ├── Aymen.png │ │ │ │ ├── Cat 01-1.png │ │ │ │ ├── Cat 01-2.png │ │ │ │ ├── Cat 01-3.png │ │ │ │ ├── Dog 01-1.png │ │ │ │ ├── Dog 01-2.png │ │ │ │ ├── Dog 01-3.png │ │ │ │ ├── Female 01-1.png │ │ │ │ ├── Female 01-2.png │ │ │ │ ├── Female 01-3.png │ │ │ │ ├── Female 01-4.png │ │ │ │ ├── Female 02-1.png │ │ │ │ ├── Female 02-2.png │ │ │ │ ├── Female 02-3.png │ │ │ │ ├── Female 02-4.png │ │ │ │ ├── Female 03-1.png │ │ │ │ ├── Female 03-2.png │ │ │ │ ├── Female 03-3.png │ │ │ │ ├── Female 03-4.png │ │ │ │ ├── Female 04-1.png │ │ │ │ ├── Female 04-2.png │ │ │ │ ├── Female 04-3.png │ │ │ │ ├── Female 04-4.png │ │ │ │ ├── Female 05-1.png │ │ │ │ ├── Female 05-2.png │ │ │ │ ├── Female 05-3.png │ │ │ │ ├── Female 05-4.png │ │ │ │ ├── Female 06-1.png │ │ │ │ ├── Female 06-2.png │ │ │ │ ├── Female 06-3.png │ │ │ │ ├── Female 06-4.png │ │ │ │ ├── Female 07-1.png │ │ │ │ ├── Female 07-2.png │ │ │ │ ├── Female 07-3.png │ │ │ │ ├── Female 07-4.png │ │ │ │ ├── Female 08-1.png │ │ │ │ ├── Female 08-2.png │ │ │ │ ├── Female 08-3.png │ │ │ │ ├── Female 08-4.png │ │ │ │ ├── Female 09-1.png │ │ │ │ ├── Female 09-2.png │ │ │ │ ├── Female 09-3.png │ │ │ │ ├── Female 09-4.png │ │ │ │ ├── Female 10-1.png │ │ │ │ ├── Female 10-2.png │ │ │ │ ├── Female 10-3.png │ │ │ │ ├── Female 10-4.png │ │ │ │ ├── Female 11-1.png │ │ │ │ ├── Female 11-2.png │ │ │ │ ├── Female 11-3.png │ │ │ │ ├── Female 11-4.png │ │ │ │ ├── Female 12-1.png │ │ │ │ ├── Female 12-2.png │ │ │ │ ├── Female 12-3.png │ │ │ │ ├── Female 12-4.png │ │ │ │ ├── Female 13-1.png │ │ │ │ ├── Female 13-2.png │ │ │ │ ├── Female 13-3.png │ │ │ │ ├── Female 13-4.png │ │ │ │ ├── Female 14-1.png │ │ │ │ ├── Female 14-2.png │ │ │ │ ├── Female 14-3.png │ │ │ │ ├── Female 14-4.png │ │ │ │ ├── Female 15-1.png │ │ │ │ ├── Female 15-2.png │ │ │ │ ├── Female 15-3.png │ │ │ │ ├── Female 15-4.png │ │ │ │ ├── Female 16-1.png │ │ │ │ ├── Female 16-2.png │ │ │ │ ├── Female 16-3.png │ │ │ │ ├── Female 16-4.png │ │ │ │ ├── Female 17-1.png │ │ │ │ ├── Female 17-2.png │ │ │ │ ├── Female 17-3.png │ │ │ │ ├── Female 17-4.png │ │ │ │ ├── Female 18-1.png │ │ │ │ ├── Female 18-2.png │ │ │ │ ├── Female 18-3.png │ │ │ │ ├── Female 18-4.png │ │ │ │ ├── Female 19-1.png │ │ │ │ ├── Female 19-2.png │ │ │ │ ├── Female 19-3.png │ │ │ │ ├── Female 19-4.png │ │ │ │ ├── Female 20-1.png │ │ │ │ ├── Female 20-2.png │ │ │ │ ├── Female 20-3.png │ │ │ │ ├── Female 20-4.png │ │ │ │ ├── Female 21-1.png │ │ │ │ ├── Female 21-2.png │ │ │ │ ├── Female 21-3.png │ │ │ │ ├── Female 21-4.png │ │ │ │ ├── Female 22-1.png │ │ │ │ ├── Female 22-2.png │ │ │ │ ├── Female 22-3.png │ │ │ │ ├── Female 22-4.png │ │ │ │ ├── Female 23-1.png │ │ │ │ ├── Female 24-1.png │ │ │ │ ├── Female 25-1.png │ │ │ │ ├── GDG character 2.png │ │ │ │ ├── GDG character 3.png │ │ │ │ ├── GDG character.png │ │ │ │ ├── Headmaster fmale.png │ │ │ │ ├── Headmaster male.png │ │ │ │ ├── Male 01-1.png │ │ │ │ ├── Male 01-2.png │ │ │ │ ├── Male 01-3.png │ │ │ │ ├── Male 01-4.png │ │ │ │ ├── Male 02-1.png │ │ │ │ ├── Male 02-2.png │ │ │ │ ├── Male 02-3.png │ │ │ │ ├── Male 02-4.png │ │ │ │ ├── Male 03-1.png │ │ │ │ ├── Male 03-2.png │ │ │ │ ├── Male 03-3.png │ │ │ │ ├── Male 03-4.png │ │ │ │ ├── Male 04-1.png │ │ │ │ ├── Male 04-2.png │ │ │ │ ├── Male 04-3.png │ │ │ │ ├── Male 04-4.png │ │ │ │ ├── Male 05-1.png │ │ │ │ ├── Male 05-2.png │ │ │ │ ├── Male 05-3.png │ │ │ │ ├── Male 05-4.png │ │ │ │ ├── Male 06-1.png │ │ │ │ ├── Male 06-2.png │ │ │ │ ├── Male 06-3.png │ │ │ │ ├── Male 06-4.png │ │ │ │ ├── Male 07-1.png │ │ │ │ ├── Male 07-2.png │ │ │ │ ├── Male 07-3.png │ │ │ │ ├── Male 07-4.png │ │ │ │ ├── Male 08-1.png │ │ │ │ ├── Male 08-2.png │ │ │ │ ├── Male 08-3.png │ │ │ │ ├── Male 08-4.png │ │ │ │ ├── Male 09-1.png │ │ │ │ ├── Male 09-2.png │ │ │ │ ├── Male 09-3.png │ │ │ │ ├── Male 09-4.png │ │ │ │ ├── Male 10-1.png │ │ │ │ ├── Male 10-2.png │ │ │ │ ├── Male 10-3.png │ │ │ │ ├── Male 10-4.png │ │ │ │ ├── Male 11-1.png │ │ │ │ ├── Male 11-2.png │ │ │ │ ├── Male 11-3.png │ │ │ │ ├── Male 11-4.png │ │ │ │ ├── Male 12-1.png │ │ │ │ ├── Male 12-2.png │ │ │ │ ├── Male 12-3.png │ │ │ │ ├── Male 12-4.png │ │ │ │ ├── Male 13-1.png │ │ │ │ ├── Male 13-2.png │ │ │ │ ├── Male 13-3.png │ │ │ │ ├── Male 13-4.png │ │ │ │ ├── Male 14-1.png │ │ │ │ ├── Male 14-2.png │ │ │ │ ├── Male 14-3.png │ │ │ │ ├── Male 14-4.png │ │ │ │ ├── Male 15-1.png │ │ │ │ ├── Male 15-2.png │ │ │ │ ├── Male 15-3.png │ │ │ │ ├── Male 15-4.png │ │ │ │ ├── Male 16-1.png │ │ │ │ ├── Male 16-2.png │ │ │ │ ├── Male 16-3.png │ │ │ │ ├── Male 16-4.png │ │ │ │ ├── Male 17-1.png │ │ │ │ ├── Male 17-2.png │ │ │ │ ├── Male 17-3.png │ │ │ │ ├── Male 17-4.png │ │ │ │ ├── Male 18-1.png │ │ │ │ ├── Teacher fmale 01.png │ │ │ │ ├── Teacher fmale 02.png │ │ │ │ ├── Teacher fmale 03.png │ │ │ │ ├── Teacher fmale 04.png │ │ │ │ ├── Teacher male 01.png │ │ │ │ ├── Teacher male 02.png │ │ │ │ ├── Teacher male 03.png │ │ │ │ ├── Teacher male 04.png │ │ │ │ ├── about.txt │ │ │ │ ├── su1 Student fmale 01.png │ │ │ │ ├── su1 Student fmale 02.png │ │ │ │ ├── su1 Student fmale 03.png │ │ │ │ ├── su1 Student fmale 04.png │ │ │ │ ├── su1 Student fmale 05.png │ │ │ │ ├── su1 Student fmale 06.png │ │ │ │ ├── su1 Student fmale 07.png │ │ │ │ ├── su1 Student fmale 08.png │ │ │ │ ├── su1 Student fmale 09.png │ │ │ │ ├── su1 Student fmale 10.png │ │ │ │ ├── su1 Student fmale 11.png │ │ │ │ ├── su1 Student fmale 12.png │ │ │ │ ├── su1 Student fmale 13.png │ │ │ │ ├── su1 Student fmale 14.png │ │ │ │ ├── su1 Student fmale 15.png │ │ │ │ ├── su1 Student fmale 16.png │ │ │ │ ├── su1 Student fmale 17.png │ │ │ │ ├── su1 Student fmale 18.png │ │ │ │ ├── su1 Student male 01.png │ │ │ │ ├── su1 Student male 02.png │ │ │ │ ├── su1 Student male 03.png │ │ │ │ ├── su1 Student male 04.png │ │ │ │ ├── su1 Student male 05.png │ │ │ │ ├── su1 Student male 06.png │ │ │ │ ├── su1 Student male 07.png │ │ │ │ ├── su1 Student male 08.png │ │ │ │ ├── su1 Student male 09.png │ │ │ │ ├── su1 Student male 10.png │ │ │ │ ├── su1 Student male 11.png │ │ │ │ ├── su1 Student male 12.png │ │ │ │ ├── su1 Student male 13.png │ │ │ │ ├── su2 Student fmale 01.png │ │ │ │ ├── su2 Student fmale 02.png │ │ │ │ ├── su2 Student fmale 03.png │ │ │ │ ├── su2 Student fmale 04.png │ │ │ │ ├── su2 Student fmale 05.png │ │ │ │ ├── su2 Student fmale 06.png │ │ │ │ ├── su2 Student fmale 07.png │ │ │ │ ├── su2 Student fmale 08.png │ │ │ │ ├── su2 Student fmale 09.png │ │ │ │ ├── su2 Student fmale 10.png │ │ │ │ ├── su2 Student fmale 11.png │ │ │ │ ├── su2 Student fmale 12.png │ │ │ │ ├── su2 Student fmale 13.png │ │ │ │ ├── su2 Student fmale 14.png │ │ │ │ ├── su2 Student fmale 15.png │ │ │ │ ├── su2 Student fmale 16.png │ │ │ │ ├── su2 Student fmale 17.png │ │ │ │ ├── su2 Student fmale 18.png │ │ │ │ ├── su2 Student male 01.png │ │ │ │ ├── su2 Student male 02.png │ │ │ │ ├── su2 Student male 03.png │ │ │ │ ├── su2 Student male 04.png │ │ │ │ ├── su2 Student male 05.png │ │ │ │ ├── su2 Student male 06.png │ │ │ │ ├── su2 Student male 07.png │ │ │ │ ├── su2 Student male 08.png │ │ │ │ ├── su2 Student male 09.png │ │ │ │ ├── su2 Student male 10.png │ │ │ │ ├── su2 Student male 11.png │ │ │ │ ├── su2 Student male 12.png │ │ │ │ ├── su2 Student male 13.png │ │ │ │ ├── su3 Student fmale 01.png │ │ │ │ ├── su3 Student fmale 02.png │ │ │ │ ├── su3 Student fmale 03.png │ │ │ │ ├── su3 Student fmale 04.png │ │ │ │ ├── su3 Student fmale 05.png │ │ │ │ ├── su3 Student fmale 06.png │ │ │ │ ├── su3 Student fmale 07.png │ │ │ │ ├── su3 Student fmale 08.png │ │ │ │ ├── su3 Student fmale 09.png │ │ │ │ ├── su3 Student fmale 10.png │ │ │ │ ├── su3 Student fmale 11.png │ │ │ │ ├── su3 Student fmale 12.png │ │ │ │ ├── su3 Student fmale 13.png │ │ │ │ ├── su3 Student fmale 14.png │ │ │ │ ├── su3 Student fmale 15.png │ │ │ │ ├── su3 Student fmale 16.png │ │ │ │ ├── su3 Student fmale 17.png │ │ │ │ ├── su3 Student fmale 18.png │ │ │ │ ├── su3 Student male 01.png │ │ │ │ ├── su3 Student male 02.png │ │ │ │ ├── su3 Student male 03.png │ │ │ │ ├── su3 Student male 04.png │ │ │ │ ├── su3 Student male 05.png │ │ │ │ ├── su3 Student male 06.png │ │ │ │ ├── su3 Student male 07.png │ │ │ │ ├── su3 Student male 08.png │ │ │ │ ├── su3 Student male 09.png │ │ │ │ ├── su3 Student male 10.png │ │ │ │ ├── su3 Student male 11.png │ │ │ │ ├── su3 Student male 12.png │ │ │ │ ├── su3 Student male 13.png │ │ │ │ ├── su4 Student fmale 01.png │ │ │ │ ├── su4 Student fmale 02.png │ │ │ │ ├── su4 Student fmale 03.png │ │ │ │ ├── su4 Student fmale 04.png │ │ │ │ ├── su4 Student fmale 05.png │ │ │ │ ├── su4 Student fmale 06.png │ │ │ │ ├── su4 Student fmale 07.png │ │ │ │ ├── su4 Student fmale 08.png │ │ │ │ ├── su4 Student fmale 09.png │ │ │ │ ├── su4 Student fmale 10.png │ │ │ │ ├── su4 Student fmale 11.png │ │ │ │ ├── su4 Student fmale 12.png │ │ │ │ ├── su4 Student fmale 13.png │ │ │ │ ├── su4 Student fmale 14.png │ │ │ │ ├── su4 Student fmale 15.png │ │ │ │ ├── su4 Student fmale 16.png │ │ │ │ ├── su4 Student fmale 17.png │ │ │ │ ├── su4 Student fmale 18.png │ │ │ │ ├── su4 Student male 01.png │ │ │ │ ├── su4 Student male 02.png │ │ │ │ ├── su4 Student male 03.png │ │ │ │ ├── su4 Student male 04.png │ │ │ │ ├── su4 Student male 05.png │ │ │ │ ├── su4 Student male 06.png │ │ │ │ ├── su4 Student male 07.png │ │ │ │ ├── su4 Student male 08.png │ │ │ │ ├── su4 Student male 09.png │ │ │ │ ├── su4 Student male 10.png │ │ │ │ ├── su4 Student male 11.png │ │ │ │ ├── su4 Student male 12.png │ │ │ │ └── su4 Student male 13.png │ │ ├── customisation │ │ │ ├── character_accessories │ │ │ │ ├── character_accessories1.png │ │ │ │ ├── character_accessories10.png │ │ │ │ ├── character_accessories11.png │ │ │ │ ├── character_accessories12.png │ │ │ │ ├── character_accessories13.png │ │ │ │ ├── character_accessories14.png │ │ │ │ ├── character_accessories15.png │ │ │ │ ├── character_accessories16.png │ │ │ │ ├── character_accessories17.png │ │ │ │ ├── character_accessories18.png │ │ │ │ ├── character_accessories19.png │ │ │ │ ├── character_accessories2.png │ │ │ │ ├── character_accessories20.png │ │ │ │ ├── character_accessories21.png │ │ │ │ ├── character_accessories22.png │ │ │ │ ├── character_accessories23.png │ │ │ │ ├── character_accessories24.png │ │ │ │ ├── character_accessories25.png │ │ │ │ ├── character_accessories26.png │ │ │ │ ├── character_accessories27.png │ │ │ │ ├── character_accessories28.png │ │ │ │ ├── character_accessories29.png │ │ │ │ ├── character_accessories3.png │ │ │ │ ├── character_accessories30.png │ │ │ │ ├── character_accessories31.png │ │ │ │ ├── character_accessories32.png │ │ │ │ ├── character_accessories4.png │ │ │ │ ├── character_accessories5.png │ │ │ │ ├── character_accessories6.png │ │ │ │ ├── character_accessories7.png │ │ │ │ ├── character_accessories8.png │ │ │ │ ├── character_accessories9.png │ │ │ │ ├── mask.png │ │ │ │ └── mate_bottle1.png │ │ │ ├── character_clothes │ │ │ │ ├── Devfest_Tshirt.png │ │ │ │ ├── GDG_hoodie.png │ │ │ │ ├── GDG_short.png │ │ │ │ ├── GDG_tshirt.png │ │ │ │ ├── WTM_hoodie.png │ │ │ │ ├── WTM_short.png │ │ │ │ ├── WTM_tshirt.png │ │ │ │ ├── black_hoodie.png │ │ │ │ ├── character_clothes0.png │ │ │ │ ├── character_clothes1.png │ │ │ │ ├── character_clothes10.png │ │ │ │ ├── character_clothes11.png │ │ │ │ ├── character_clothes12.png │ │ │ │ ├── character_clothes13.png │ │ │ │ ├── character_clothes14.png │ │ │ │ ├── character_clothes15.png │ │ │ │ ├── character_clothes16.png │ │ │ │ ├── character_clothes17.png │ │ │ │ ├── character_clothes18.png │ │ │ │ ├── character_clothes19.png │ │ │ │ ├── character_clothes2.png │ │ │ │ ├── character_clothes20.png │ │ │ │ ├── character_clothes21.png │ │ │ │ ├── character_clothes22.png │ │ │ │ ├── character_clothes23.png │ │ │ │ ├── character_clothes24.png │ │ │ │ ├── character_clothes25.png │ │ │ │ ├── character_clothes26.png │ │ │ │ ├── character_clothes27.png │ │ │ │ ├── character_clothes28.png │ │ │ │ ├── character_clothes29.png │ │ │ │ ├── character_clothes3.png │ │ │ │ ├── character_clothes30.png │ │ │ │ ├── character_clothes31.png │ │ │ │ ├── character_clothes32.png │ │ │ │ ├── character_clothes33.png │ │ │ │ ├── character_clothes34.png │ │ │ │ ├── character_clothes35.png │ │ │ │ ├── character_clothes36.png │ │ │ │ ├── character_clothes37.png │ │ │ │ ├── character_clothes38.png │ │ │ │ ├── character_clothes39.png │ │ │ │ ├── character_clothes4.png │ │ │ │ ├── character_clothes40.png │ │ │ │ ├── character_clothes41.png │ │ │ │ ├── character_clothes42.png │ │ │ │ ├── character_clothes43.png │ │ │ │ ├── character_clothes44.png │ │ │ │ ├── character_clothes45.png │ │ │ │ ├── character_clothes46.png │ │ │ │ ├── character_clothes47.png │ │ │ │ ├── character_clothes48.png │ │ │ │ ├── character_clothes49.png │ │ │ │ ├── character_clothes5.png │ │ │ │ ├── character_clothes50.png │ │ │ │ ├── character_clothes51.png │ │ │ │ ├── character_clothes52.png │ │ │ │ ├── character_clothes53.png │ │ │ │ ├── character_clothes54.png │ │ │ │ ├── character_clothes55.png │ │ │ │ ├── character_clothes56.png │ │ │ │ ├── character_clothes57.png │ │ │ │ ├── character_clothes58.png │ │ │ │ ├── character_clothes59.png │ │ │ │ ├── character_clothes6.png │ │ │ │ ├── character_clothes60.png │ │ │ │ ├── character_clothes61.png │ │ │ │ ├── character_clothes62.png │ │ │ │ ├── character_clothes63.png │ │ │ │ ├── character_clothes64.png │ │ │ │ ├── character_clothes65.png │ │ │ │ ├── character_clothes66.png │ │ │ │ ├── character_clothes67.png │ │ │ │ ├── character_clothes68.png │ │ │ │ ├── character_clothes69.png │ │ │ │ ├── character_clothes7.png │ │ │ │ ├── character_clothes8.png │ │ │ │ ├── character_clothes9.png │ │ │ │ ├── engelbert.png │ │ │ │ ├── pride_shirt.png │ │ │ │ └── white_hoodie.png │ │ │ ├── character_color │ │ │ │ ├── _‚È‚µ.png │ │ │ │ ├── character_color0.png │ │ │ │ ├── character_color1.png │ │ │ │ ├── character_color10.png │ │ │ │ ├── character_color11.png │ │ │ │ ├── character_color12.png │ │ │ │ ├── character_color13.png │ │ │ │ ├── character_color14.png │ │ │ │ ├── character_color15.png │ │ │ │ ├── character_color16.png │ │ │ │ ├── character_color17.png │ │ │ │ ├── character_color18.png │ │ │ │ ├── character_color19.png │ │ │ │ ├── character_color2.png │ │ │ │ ├── character_color20.png │ │ │ │ ├── character_color21.png │ │ │ │ ├── character_color22.png │ │ │ │ ├── character_color23.png │ │ │ │ ├── character_color24.png │ │ │ │ ├── character_color25.png │ │ │ │ ├── character_color26.png │ │ │ │ ├── character_color27.png │ │ │ │ ├── character_color28.png │ │ │ │ ├── character_color29.png │ │ │ │ ├── character_color3.png │ │ │ │ ├── character_color30.png │ │ │ │ ├── character_color31.png │ │ │ │ ├── character_color32.png │ │ │ │ ├── character_color4.png │ │ │ │ ├── character_color5.png │ │ │ │ ├── character_color6.png │ │ │ │ ├── character_color7.png │ │ │ │ ├── character_color8.png │ │ │ │ └── character_color9.png │ │ │ ├── character_eyes │ │ │ │ ├── character_eyes1.png │ │ │ │ ├── character_eyes10.png │ │ │ │ ├── character_eyes11.png │ │ │ │ ├── character_eyes12.png │ │ │ │ ├── character_eyes13.png │ │ │ │ ├── character_eyes14.png │ │ │ │ ├── character_eyes15.png │ │ │ │ ├── character_eyes16.png │ │ │ │ ├── character_eyes17.png │ │ │ │ ├── character_eyes18.png │ │ │ │ ├── character_eyes19.png │ │ │ │ ├── character_eyes2.png │ │ │ │ ├── character_eyes20.png │ │ │ │ ├── character_eyes21.png │ │ │ │ ├── character_eyes22.png │ │ │ │ ├── character_eyes23.png │ │ │ │ ├── character_eyes24.png │ │ │ │ ├── character_eyes25.png │ │ │ │ ├── character_eyes26.png │ │ │ │ ├── character_eyes27.png │ │ │ │ ├── character_eyes28.png │ │ │ │ ├── character_eyes29.png │ │ │ │ ├── character_eyes3.png │ │ │ │ ├── character_eyes30.png │ │ │ │ ├── character_eyes31.png │ │ │ │ ├── character_eyes32.png │ │ │ │ ├── character_eyes33.png │ │ │ │ ├── character_eyes34.png │ │ │ │ ├── character_eyes4.png │ │ │ │ ├── character_eyes5.png │ │ │ │ ├── character_eyes6.png │ │ │ │ ├── character_eyes7.png │ │ │ │ ├── character_eyes8.png │ │ │ │ └── character_eyes9.png │ │ │ ├── character_hairs │ │ │ │ ├── character_hairs0.png │ │ │ │ ├── character_hairs1.png │ │ │ │ ├── character_hairs10.png │ │ │ │ ├── character_hairs11.png │ │ │ │ ├── character_hairs12.png │ │ │ │ ├── character_hairs13.png │ │ │ │ ├── character_hairs14.png │ │ │ │ ├── character_hairs15.png │ │ │ │ ├── character_hairs16.png │ │ │ │ ├── character_hairs17.png │ │ │ │ ├── character_hairs18.png │ │ │ │ ├── character_hairs19.png │ │ │ │ ├── character_hairs2.png │ │ │ │ ├── character_hairs20.png │ │ │ │ ├── character_hairs21.png │ │ │ │ ├── character_hairs22.png │ │ │ │ ├── character_hairs23.png │ │ │ │ ├── character_hairs24.png │ │ │ │ ├── character_hairs25.png │ │ │ │ ├── character_hairs26.png │ │ │ │ ├── character_hairs27.png │ │ │ │ ├── character_hairs28.png │ │ │ │ ├── character_hairs29.png │ │ │ │ ├── character_hairs3.png │ │ │ │ ├── character_hairs30.png │ │ │ │ ├── character_hairs31.png │ │ │ │ ├── character_hairs32.png │ │ │ │ ├── character_hairs33.png │ │ │ │ ├── character_hairs34.png │ │ │ │ ├── character_hairs35.png │ │ │ │ ├── character_hairs36.png │ │ │ │ ├── character_hairs37.png │ │ │ │ ├── character_hairs38.png │ │ │ │ ├── character_hairs39.png │ │ │ │ ├── character_hairs4.png │ │ │ │ ├── character_hairs40.png │ │ │ │ ├── character_hairs41.png │ │ │ │ ├── character_hairs42.png │ │ │ │ ├── character_hairs43.png │ │ │ │ ├── character_hairs44.png │ │ │ │ ├── character_hairs45.png │ │ │ │ ├── character_hairs46.png │ │ │ │ ├── character_hairs47.png │ │ │ │ ├── character_hairs48.png │ │ │ │ ├── character_hairs49.png │ │ │ │ ├── character_hairs5.png │ │ │ │ ├── character_hairs50.png │ │ │ │ ├── character_hairs51.png │ │ │ │ ├── character_hairs52.png │ │ │ │ ├── character_hairs53.png │ │ │ │ ├── character_hairs54.png │ │ │ │ ├── character_hairs55.png │ │ │ │ ├── character_hairs56.png │ │ │ │ ├── character_hairs57.png │ │ │ │ ├── character_hairs58.png │ │ │ │ ├── character_hairs59.png │ │ │ │ ├── character_hairs6.png │ │ │ │ ├── character_hairs60.png │ │ │ │ ├── character_hairs61.png │ │ │ │ ├── character_hairs62.png │ │ │ │ ├── character_hairs63.png │ │ │ │ ├── character_hairs64.png │ │ │ │ ├── character_hairs65.png │ │ │ │ ├── character_hairs66.png │ │ │ │ ├── character_hairs67.png │ │ │ │ ├── character_hairs68.png │ │ │ │ ├── character_hairs69.png │ │ │ │ ├── character_hairs7.png │ │ │ │ ├── character_hairs70.png │ │ │ │ ├── character_hairs71.png │ │ │ │ ├── character_hairs72.png │ │ │ │ ├── character_hairs73.png │ │ │ │ ├── character_hairs8.png │ │ │ │ └── character_hairs9.png │ │ │ └── character_hats │ │ │ │ ├── character_hats1.png │ │ │ │ ├── character_hats10.png │ │ │ │ ├── character_hats11.png │ │ │ │ ├── character_hats12.png │ │ │ │ ├── character_hats13.png │ │ │ │ ├── character_hats14.png │ │ │ │ ├── character_hats15.png │ │ │ │ ├── character_hats16.png │ │ │ │ ├── character_hats17.png │ │ │ │ ├── character_hats18.png │ │ │ │ ├── character_hats19.png │ │ │ │ ├── character_hats2.png │ │ │ │ ├── character_hats20.png │ │ │ │ ├── character_hats21.png │ │ │ │ ├── character_hats22.png │ │ │ │ ├── character_hats23.png │ │ │ │ ├── character_hats24.png │ │ │ │ ├── character_hats25.png │ │ │ │ ├── character_hats26.png │ │ │ │ ├── character_hats3.png │ │ │ │ ├── character_hats4.png │ │ │ │ ├── character_hats5.png │ │ │ │ ├── character_hats6.png │ │ │ │ ├── character_hats7.png │ │ │ │ ├── character_hats8.png │ │ │ │ ├── character_hats9.png │ │ │ │ └── tinfoil_hat1.png │ │ ├── emotes │ │ │ ├── clap-emote.png │ │ │ ├── hand-emote.png │ │ │ ├── heart-emote.png │ │ │ ├── thanks-emote.png │ │ │ ├── thumb-down-emote.png │ │ │ └── thumb-up-emote.png │ │ ├── fonts │ │ │ ├── arcade.png │ │ │ ├── arcade.xml │ │ │ ├── fonts.css │ │ │ └── ka1.ttf │ │ ├── html │ │ │ └── gameMenu.html │ │ ├── items │ │ │ └── computer │ │ │ │ ├── computer.png │ │ │ │ ├── computer_atlas.json │ │ │ │ ├── original │ │ │ │ ├── computer.png │ │ │ │ └── computer_atlas.json │ │ │ │ └── unpack │ │ │ │ ├── computer_off.png │ │ │ │ ├── computer_on1.png │ │ │ │ └── computer_on2.png │ │ ├── logos │ │ │ ├── blockSign.svg │ │ │ ├── blockingIcon.png │ │ │ ├── boy.svg │ │ │ ├── cancel.png │ │ │ ├── cinema-close.svg │ │ │ ├── close.svg │ │ │ ├── discussion.svg │ │ │ ├── fullscreen-exit.svg │ │ │ ├── fullscreen.svg │ │ │ ├── megaphone.svg │ │ │ ├── microphone-close.svg │ │ │ ├── monitor-yellow.svg │ │ │ ├── music-file.svg │ │ │ ├── phone-open.svg │ │ │ ├── phone.svg │ │ │ ├── report.back.svg │ │ │ ├── report.svg │ │ │ ├── send-bkack.svg │ │ │ ├── send-white.svg │ │ │ ├── send-yellow.svg │ │ │ ├── setting-black.svg │ │ │ ├── setting-white.svg │ │ │ └── setting-yellow.svg │ │ └── objects │ │ │ ├── arrow_down.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── arrow_up_black.png │ │ │ ├── customize.png │ │ │ ├── customize_selected.png │ │ │ ├── facebook-icon.png │ │ │ ├── joystickSplitted.png │ │ │ ├── report-message.mp3 │ │ │ ├── smallHandleFilledGrey.png │ │ │ ├── talk.png │ │ │ ├── teleportation.png │ │ │ ├── twitter-icon.png │ │ │ ├── webrtc-in.mp3 │ │ │ └── webrtc-out.mp3 │ └── static │ │ └── images │ │ ├── Bitmap2.png │ │ ├── Bitmap3.png │ │ ├── amstrad.png │ │ ├── atari.png │ │ ├── bitmap.png │ │ ├── check.png │ │ ├── choose_character.png │ │ ├── cloud.png │ │ ├── desktop.png │ │ ├── facebook.png │ │ ├── favicons │ │ ├── android-icon-144x144-white.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192-white.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.-white.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48-white.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72-white.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96-white.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114-white.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120-white.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144-white.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152-white.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180-white.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57-white.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60-white.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72-white.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76-white.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed-white.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon-white.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16-white.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32-white.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96-white.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── icon-512x512-white.png │ │ ├── icon-512x512.png │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ │ ├── female-character.gif │ │ ├── floppy.png │ │ ├── interact.png │ │ ├── linkedin.png │ │ ├── logo-WA-min.png │ │ ├── logo.png │ │ ├── male-character.gif │ │ ├── maps │ │ ├── coders.png │ │ ├── creative.png │ │ ├── dungeon.png │ │ ├── fantasy.png │ │ ├── office.png │ │ ├── pub.png │ │ ├── school.png │ │ ├── street.png │ │ └── tcm.png │ │ ├── menu.svg │ │ ├── meta-tags-image.jpg │ │ ├── play.png │ │ ├── send.png │ │ ├── sinclair-2.png │ │ ├── step 1.png │ │ ├── step 2.png │ │ ├── step 3.png │ │ ├── super-nintendo.png │ │ └── twitter.png ├── jasmine.json ├── package.json ├── packages │ └── iframe-api-typings │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── iframe_api.js │ │ └── package.json ├── src │ ├── Administration │ │ ├── AnalyticsClient.ts │ │ └── UserMessageManager.ts │ ├── Api │ │ ├── Events │ │ │ ├── ButtonClickedEvent.ts │ │ │ ├── ChangeLayerEvent.ts │ │ │ ├── ChangeZoneEvent.ts │ │ │ ├── ChatEvent.ts │ │ │ ├── CloseCoWebsiteEvent.ts │ │ │ ├── ClosePopupEvent.ts │ │ │ ├── ColorEvent.ts │ │ │ ├── EmbeddedWebsiteEvent.ts │ │ │ ├── EnterLeaveEvent.ts │ │ │ ├── GameStateEvent.ts │ │ │ ├── GoToPageEvent.ts │ │ │ ├── HasPlayerMovedEvent.ts │ │ │ ├── IframeEvent.ts │ │ │ ├── LayerEvent.ts │ │ │ ├── LoadPageEvent.ts │ │ │ ├── LoadSoundEvent.ts │ │ │ ├── LoadTilesetEvent.ts │ │ │ ├── MapDataEvent.ts │ │ │ ├── OpenCoWebsiteEvent.ts │ │ │ ├── OpenPopupEvent.ts │ │ │ ├── OpenTabEvent.ts │ │ │ ├── PlaySoundEvent.ts │ │ │ ├── SetTilesEvent.ts │ │ │ ├── SetVariableEvent.ts │ │ │ ├── StopSoundEvent.ts │ │ │ ├── UserInputChatEvent.ts │ │ │ ├── setPropertyEvent.ts │ │ │ └── ui │ │ │ │ ├── MenuItemClickedEvent.ts │ │ │ │ ├── MenuRegisterEvent.ts │ │ │ │ ├── TriggerActionMessageEvent.ts │ │ │ │ └── TriggerMessageEventHandler.ts │ │ ├── IframeListener.ts │ │ ├── ScriptUtils.ts │ │ ├── iframe │ │ │ ├── IframeApiContribution.ts │ │ │ ├── Room │ │ │ │ └── EmbeddedWebsite.ts │ │ │ ├── Sound │ │ │ │ └── Sound.ts │ │ │ ├── Ui │ │ │ │ ├── ActionMessage.ts │ │ │ │ ├── ButtonDescriptor.ts │ │ │ │ ├── Menu.ts │ │ │ │ ├── MenuItem.ts │ │ │ │ └── Popup.ts │ │ │ ├── chat.ts │ │ │ ├── controls.ts │ │ │ ├── nav.ts │ │ │ ├── player.ts │ │ │ ├── registeredCallbacks.ts │ │ │ ├── room.ts │ │ │ ├── sound.ts │ │ │ ├── state.ts │ │ │ ├── ui.ts │ │ │ └── website.ts │ │ └── types.ts │ ├── Components │ │ ├── App.svelte │ │ ├── AudioManager │ │ │ └── AudioManager.svelte │ │ ├── CameraControls.svelte │ │ ├── Chat │ │ │ ├── Chat.svelte │ │ │ ├── ChatElement.svelte │ │ │ ├── ChatMessageForm.svelte │ │ │ ├── ChatPlayerName.svelte │ │ │ └── ChatSubMenu.svelte │ │ ├── Companion │ │ │ └── Companion.svelte │ │ ├── CustomCharacterScene │ │ │ └── CustomCharacterScene.svelte │ │ ├── EmoteMenu │ │ │ └── EmoteMenu.svelte │ │ ├── EnableCamera │ │ │ ├── EnableCameraScene.svelte │ │ │ └── HorizontalSoundMeterWidget.svelte │ │ ├── FollowMenu │ │ │ └── FollowMenu.svelte │ │ ├── HelpCameraSettings │ │ │ ├── HelpCameraSettingsPopup.svelte │ │ │ └── images │ │ │ │ ├── help-setting-camera-permission-chrome.png │ │ │ │ └── help-setting-camera-permission-firefox.png │ │ ├── LayoutManager │ │ │ └── LayoutManager.svelte │ │ ├── Login │ │ │ └── LoginScene.svelte │ │ ├── Menu │ │ │ ├── AboutRoomSubMenu.svelte │ │ │ ├── AudioGlobalMessage.svelte │ │ │ ├── ContactSubMenu.svelte │ │ │ ├── CustomSubMenu.svelte │ │ │ ├── GlobalMessagesSubMenu.svelte │ │ │ ├── GuestSubMenu.svelte │ │ │ ├── Menu.svelte │ │ │ ├── MenuIcon.svelte │ │ │ ├── ProfileSubMenu.svelte │ │ │ ├── SettingsSubMenu.svelte │ │ │ └── TextGlobalMessage.svelte │ │ ├── MyCamera.svelte │ │ ├── ReportMenu │ │ │ ├── BlockSubMenu.svelte │ │ │ ├── ReportMenu.svelte │ │ │ └── ReportSubMenu.svelte │ │ ├── SelectCompanion │ │ │ └── SelectCompanionScene.svelte │ │ ├── SoundMeterWidget.svelte │ │ ├── TypeMessage │ │ │ ├── BanMessage.svelte │ │ │ ├── BanMessageContainer.svelte │ │ │ ├── TextMessage.svelte │ │ │ └── TextMessageContainer.svelte │ │ ├── UI │ │ │ ├── AudioPlaying.svelte │ │ │ ├── ErrorDialog.svelte │ │ │ └── images │ │ │ │ └── megaphone.svg │ │ ├── Video │ │ │ ├── ChatLayout.svelte │ │ │ ├── LocalStreamMediaBox.svelte │ │ │ ├── MediaBox.svelte │ │ │ ├── PresentationLayout.svelte │ │ │ ├── ScreenSharingMediaBox.svelte │ │ │ ├── VideoMediaBox.svelte │ │ │ ├── VideoOverlay.svelte │ │ │ ├── images │ │ │ │ ├── blockSign.svg │ │ │ │ └── report.svg │ │ │ └── utils.ts │ │ ├── VisitCard │ │ │ └── VisitCard.svelte │ │ ├── WarningContainer │ │ │ └── WarningContainer.svelte │ │ ├── Woka │ │ │ └── Woka.svelte │ │ ├── images │ │ │ ├── audio-mute.svg │ │ │ ├── audio.svg │ │ │ ├── btn-menu-profile-camera.svg │ │ │ ├── btn-menu-profile-companion.svg │ │ │ ├── btn-menu-profile-identity.svg │ │ │ ├── btn-menu-profile-woka.svg │ │ │ ├── cinema-close.svg │ │ │ ├── cinema.svg │ │ │ ├── follow.svg │ │ │ ├── layout-chat.svg │ │ │ ├── layout-presentation.svg │ │ │ ├── logo-WA-pixel.png │ │ │ ├── logo-message-pixel.png │ │ │ ├── logo.png │ │ │ ├── microphone-close.svg │ │ │ ├── microphone.svg │ │ │ ├── monitor-close.svg │ │ │ ├── monitor.svg │ │ │ └── music-file.svg │ │ └── selectCharacter │ │ │ └── SelectCharacterScene.svelte │ ├── Connexion │ │ ├── AdminMessagesService.ts │ │ ├── AxiosUtils.ts │ │ ├── ConnectionManager.ts │ │ ├── ConnexionModels.ts │ │ ├── EmoteEventStream.ts │ │ ├── LocalUser.ts │ │ ├── LocalUserStore.ts │ │ ├── Room.ts │ │ ├── RoomConnection.ts │ │ └── WorldFullMessageStream.ts │ ├── Enum │ │ └── EnvironmentVariable.ts │ ├── Exception │ │ └── TextureError.ts │ ├── Logger │ │ └── MessageUI.ts │ ├── Messages │ │ ├── .gitignore │ │ └── JsonMessages │ │ │ └── .gitignore │ ├── Network │ │ ├── ProtobufClientUtils.ts │ │ └── ServiceWorker.ts │ ├── Phaser │ │ ├── Companion │ │ │ ├── Companion.ts │ │ │ ├── CompanionTextures.ts │ │ │ └── CompanionTexturesLoadingManager.ts │ │ ├── Components │ │ │ ├── ChatModeIcon.ts │ │ │ ├── ClickButton.ts │ │ │ ├── Loader.ts │ │ │ ├── MobileJoystick.ts │ │ │ ├── PresentationModeIcon.ts │ │ │ ├── RadialMenu.ts │ │ │ ├── SoundMeter.ts │ │ │ ├── TextField.ts │ │ │ └── TextUtils.ts │ │ ├── Entity │ │ │ ├── Character.ts │ │ │ ├── CustomizedCharacter.ts │ │ │ ├── PlayerTextures.ts │ │ │ ├── PlayerTexturesLoadingManager.ts │ │ │ ├── RemotePlayer.ts │ │ │ ├── SpeechBubble.ts │ │ │ └── Sprite.ts │ │ ├── Game │ │ │ ├── AddPlayerInterface.ts │ │ │ ├── CameraManager.ts │ │ │ ├── DepthIndexes.ts │ │ │ ├── DirtyScene.ts │ │ │ ├── EmbeddedWebsiteManager.ts │ │ │ ├── EmoteManager.ts │ │ │ ├── Game.ts │ │ │ ├── GameManager.ts │ │ │ ├── GameMap.ts │ │ │ ├── GameMapProperties.ts │ │ │ ├── GameMapPropertiesListener.ts │ │ │ ├── GameScene.ts │ │ │ ├── PlayerInterface.ts │ │ │ ├── PlayerMovement.ts │ │ │ ├── PlayersPositionInterpolator.ts │ │ │ ├── SharedVariablesManager.ts │ │ │ ├── SoundManager.ts │ │ │ └── StartPositionCalculator.ts │ │ ├── Helpers │ │ │ └── TexturesHelper.ts │ │ ├── Items │ │ │ ├── ActionableItem.ts │ │ │ ├── Computer │ │ │ │ └── computer.ts │ │ │ └── ItemFactoryInterface.ts │ │ ├── Login │ │ │ ├── AbstractCharacterScene.ts │ │ │ ├── CustomizeScene.ts │ │ │ ├── EnableCameraScene.ts │ │ │ ├── EntryScene.ts │ │ │ ├── LoginScene.ts │ │ │ ├── ResizableScene.ts │ │ │ ├── SelectCharacterMobileScene.ts │ │ │ ├── SelectCharacterScene.ts │ │ │ └── SelectCompanionScene.ts │ │ ├── Map │ │ │ ├── ITiledMap.ts │ │ │ ├── LayersFlattener.ts │ │ │ └── PropertyUtils.ts │ │ ├── Player │ │ │ ├── Animation.ts │ │ │ └── Player.ts │ │ ├── Reconnecting │ │ │ ├── ErrorScene.ts │ │ │ ├── ReconnectingScene.ts │ │ │ └── WAError.ts │ │ ├── Services │ │ │ ├── HdpiManager.ts │ │ │ └── WaScaleManager.ts │ │ └── UserInput │ │ │ ├── PinchManager.ts │ │ │ └── UserInputManager.ts │ ├── Stores │ │ ├── AudioManagerStore.ts │ │ ├── BiggestAvailableAreaStore.ts │ │ ├── ChatStore.ts │ │ ├── ConsoleGlobalMessageManagerStore.ts │ │ ├── CustomCharacterStore.ts │ │ ├── EmoteStore.ts │ │ ├── ErrorStore.ts │ │ ├── Errors │ │ │ ├── BrowserTooOldError.ts │ │ │ ├── MediaStreamConstraintsError.ts │ │ │ └── WebviewOnOldIOS.ts │ │ ├── FollowStore.ts │ │ ├── GameOverlayStoreVisibility.ts │ │ ├── GameStore.ts │ │ ├── HelpCameraSettingsStore.ts │ │ ├── LayoutManagerStore.ts │ │ ├── LoginSceneStore.ts │ │ ├── MediaStore.ts │ │ ├── MenuStore.ts │ │ ├── OutlineColorStore.ts │ │ ├── PeerStore.ts │ │ ├── PictureStore.ts │ │ ├── PlayersStore.ts │ │ ├── PrivacyShutdownStore.ts │ │ ├── ScreenSharingStore.ts │ │ ├── SelectCharacterStore.ts │ │ ├── SelectCompanionStore.ts │ │ ├── ShowReportScreenStore.ts │ │ ├── SoundPlayingStore.ts │ │ ├── StreamableCollectionStore.ts │ │ ├── TypeMessageStore │ │ │ ├── BanMessageStore.ts │ │ │ ├── MessageStore.ts │ │ │ └── TextMessageStore.ts │ │ ├── UserInputStore.ts │ │ ├── Utils │ │ │ └── MapStore.ts │ │ ├── VideoFocusStore.ts │ │ └── VisibilityStore.ts │ ├── Touch │ │ └── TouchScreenManager.ts │ ├── Url │ │ └── UrlManager.ts │ ├── Utils │ │ └── MathUtils.ts │ ├── WebRtc │ │ ├── BlackListManager.ts │ │ ├── CoWebsiteManager.ts │ │ ├── ColorGenerator.ts │ │ ├── DeviceUtils.ts │ │ ├── HtmlUtils.ts │ │ ├── JitsiFactory.ts │ │ ├── LayoutManager.ts │ │ ├── MediaManager.ts │ │ ├── ScreenSharingPeer.ts │ │ ├── SimplePeer.ts │ │ └── VideoPeer.ts │ ├── ambient.d.ts │ ├── iframe_api.ts │ ├── index.ts │ ├── rex-plugins.d.ts │ └── types.ts ├── style │ ├── TextGlobalMessageSvelte-Style.scss │ ├── cowebsite-mobile.scss │ ├── cowebsite.scss │ ├── fonts.scss │ ├── fonts │ │ └── TwemojiMozilla.ttf │ ├── images │ │ ├── cursor_normal.png │ │ └── cursor_pointer.png │ ├── index.scss │ ├── mobile-style.scss │ └── style.scss ├── templater.sh ├── tests │ ├── Phaser │ │ ├── Connexion │ │ │ └── LocalUserTest.ts │ │ ├── Game │ │ │ ├── HtmlUtilsTest.ts │ │ │ ├── PlayerMovementTest.ts │ │ │ └── PlayerTexturesLoadingTest.ts │ │ ├── Map │ │ │ └── LayersIteratorTest.ts │ │ └── Services │ │ │ └── HdpiManagerTest.ts │ └── Stores │ │ └── Utils │ │ └── MapStoreTest.ts ├── tsconfig-for-jasmine.json ├── tsconfig-for-webpack.json ├── tsconfig.json ├── webpack.config.ts └── yarn.lock ├── gdglogo.png ├── maps ├── .dockerignore ├── .gitignore ├── .htaccess ├── Dockerfile ├── Tuto │ ├── Attribution-tilesets.txt │ ├── Male 13-4.png │ ├── down-arrow.png │ ├── fantasy.png │ ├── scriptTuto.js │ ├── shift.png │ ├── textTuto3.png │ ├── tilesets │ │ ├── Atlas-refs-opengameart.txt │ │ ├── LPC-Atlas-Attribution.txt │ │ ├── LPC-Atlas2-Attribution2.txt │ │ ├── LPC-indoors.txt │ │ ├── LPC-interiors-house-credits.txt │ │ ├── LPC-leaf-credits.txt │ │ ├── LPC-leafs-refs.txt │ │ ├── LPC-submissions-refs.txt │ │ ├── LPc-mountains-refs.txt │ │ ├── LPc-submissions-Final Attribution.txt │ │ ├── Specials-attribution.txt │ │ ├── outdoor │ │ │ ├── CREDITS-plants.txt │ │ │ ├── LPC-objects-plants-fish-submissions-outside.png │ │ │ ├── LPC-submissions-outside.png │ │ │ ├── LPC-terrains-subimissions-outside.png │ │ │ ├── decorations-medieval-credits.txt │ │ │ ├── decorations-medieval.png │ │ │ └── plants.png │ │ └── specials │ │ │ └── ALL.png │ ├── tutoV3.json │ ├── webrtc-in.mp3 │ └── webrtc-out.mp3 ├── assets │ ├── Special_Zones.png │ ├── skins │ │ ├── skin-blue.png │ │ ├── skin-green.png │ │ └── skin-yellow.png │ ├── tileset1-repositioning.png │ ├── tileset1.png │ ├── tileset5_export.png │ └── tileset6_export.png ├── package.json ├── starter │ ├── map.json │ └── script.ts ├── tests │ ├── Attribution-tilesets.txt │ ├── Audience.mp3 │ ├── ChangeLayerApi │ │ ├── change_layer_api.json │ │ └── script.js │ ├── CoWebsite │ │ ├── cowebsite_api.json │ │ ├── cowebsite_jitsiroom.json │ │ ├── cowebsite_property.json │ │ ├── script.js │ │ └── tileset1.png │ ├── EmbeddedWebsite │ │ ├── integrated_website_1.html │ │ ├── website_in_map.json │ │ ├── website_in_map_script.json │ │ └── website_in_map_script.php │ ├── LoadTileset │ │ ├── LoadTileset.json │ │ ├── Yellow.jpg │ │ ├── Yellow.json │ │ ├── scriptTileset.js │ │ └── tileset_dungeon.png │ ├── Metadata │ │ ├── cowebsiteAllowApi.js │ │ ├── cowebsiteAllowApi.json │ │ ├── cowebsiteAllowApi.php │ │ ├── customIframeMenu.html │ │ ├── customIframeMenuApi.php │ │ ├── customMenu.js │ │ ├── customMenu.json │ │ ├── customMenu.php │ │ ├── floortileset.png │ │ ├── getCurrentRoom.js │ │ ├── getCurrentRoom.json │ │ ├── map.json │ │ ├── playerMove.json │ │ ├── playerMove.php │ │ ├── script.js │ │ ├── setProperty.json │ │ ├── setProperty.php │ │ ├── setTiles.html │ │ ├── setTiles.json │ │ ├── showHideLayer.html │ │ ├── showHideLayer.json │ │ └── tileset_dungeon.png │ ├── Outline │ │ ├── outline.json │ │ └── outline.php │ ├── Properties │ │ ├── exitSceneUrl1.json │ │ ├── exitSceneUrl2.json │ │ └── mapProperties.json │ ├── SoundScript.js │ ├── SoundTest.json │ ├── TriggerMessageApi │ │ ├── script.js │ │ └── triggerMessage.json │ ├── Validation │ │ ├── 16x16_Dungeon.png │ │ ├── 4096.json │ │ ├── 4096.png │ │ ├── CollidesFalse.json │ │ ├── Infini.json │ │ ├── NoCollides.json │ │ ├── NoImage.json │ │ ├── Validation0.json │ │ ├── Yellow Dungeon Tileset.jpg │ │ ├── dungeon.tsx │ │ ├── embarquer.json │ │ ├── floorLayer.json │ │ ├── floortileset.png │ │ ├── layerProperties.json │ │ ├── orientation.json │ │ ├── simplicity.json │ │ ├── start.json │ │ ├── tileheight.json │ │ └── tileset_dungeon.png │ ├── Variables │ │ ├── Cache │ │ │ ├── .gitignore │ │ │ ├── script.js │ │ │ ├── variables_cache_1.json │ │ │ └── variables_cache_2.json │ │ ├── E2ETests │ │ │ ├── script.js │ │ │ ├── shared_variables.html │ │ │ └── shared_variables.json │ │ ├── script.js │ │ ├── shared_variables.json │ │ ├── shared_variables.php │ │ └── variables.json │ ├── Win.ogg │ ├── animated_tiles.json │ ├── animated_tiles.png │ ├── audio.json │ ├── autoresize.json │ ├── deprecated_functions.json │ ├── deprecated_script.js │ ├── emoji.json │ ├── energy.json │ ├── exit1.json │ ├── exit2.json │ ├── focusable_zone_map.json │ ├── function_tiles.json │ ├── function_tiles.png │ ├── goToPage.json │ ├── goToPageScript.js │ ├── grouped_map.json │ ├── help_camera_setting.json │ ├── iframe.php │ ├── iframe_api.json │ ├── inactive_tabs.json │ ├── index.html │ ├── jitsi_config.json │ ├── jitsi_custom_url.json │ ├── layer-visibility.json │ ├── mobile.json │ ├── mobile_video.json │ ├── mousewheel.json │ ├── reconnection.json │ ├── script.js │ ├── script_api.json │ ├── start-tile-teleport.json │ ├── start-tile.json │ ├── text_object.json │ ├── tileset1.png │ ├── webrtc-in.mp3 │ └── webrtc-out.mp3 ├── tsconfig.json └── yarn.lock ├── messages ├── .dockerignore ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── JsonMessages │ ├── AdminApiData.ts │ ├── CharacterTexture.ts │ ├── MapDetailsData.ts │ ├── RegisterData.ts │ └── RoomRedirect.ts ├── LICENSE.txt ├── generated │ └── .gitignore ├── package.json ├── protos │ └── messages.proto └── yarn.lock ├── package.json ├── pusher ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── Dockerfile ├── Dockerfile.prod ├── LICENSE.txt ├── README.md ├── jasmine.json ├── package.json ├── server.ts ├── src │ ├── App.ts │ ├── Controller │ │ ├── AdminController.ts │ │ ├── AuthenticateController.ts │ │ ├── BaseController.ts │ │ ├── DebugController.ts │ │ ├── InvalidTokenError.ts │ │ ├── IoSocketController.ts │ │ ├── MapController.ts │ │ ├── OpenIdProfileController.ts │ │ └── PrometheusController.ts │ ├── Enum │ │ └── EnvironmentVariable.ts │ ├── Messages │ │ ├── .gitignore │ │ └── JsonMessages │ │ │ └── .gitignore │ ├── Model │ │ ├── Movable.ts │ │ ├── PositionDispatcher.ts │ │ ├── PositionInterface.ts │ │ ├── PusherRoom.ts │ │ ├── Websocket │ │ │ ├── Admin │ │ │ │ └── AdminMessages.ts │ │ │ ├── ExAdminSocketInterface.ts │ │ │ ├── ExSocketInterface.ts │ │ │ ├── Identificable.ts │ │ │ ├── ItemEventMessage.ts │ │ │ ├── Point.ts │ │ │ ├── PointInterface.ts │ │ │ ├── ProtobufUtils.ts │ │ │ └── ViewportMessage.ts │ │ └── Zone.ts │ ├── Server │ │ ├── server │ │ │ ├── app.ts │ │ │ ├── baseapp.ts │ │ │ ├── formdata.ts │ │ │ ├── sslapp.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ └── sifrr.server.ts │ └── Services │ │ ├── AdminApi.ts │ │ ├── ApiClientRepository.ts │ │ ├── ArrayHelper.ts │ │ ├── ClientEventsEmitter.ts │ │ ├── CpuTracker.ts │ │ ├── GaugeManager.ts │ │ ├── IoSocketHelpers.ts │ │ ├── JWTTokenManager.ts │ │ ├── OpenIDClient.ts │ │ └── SocketManager.ts ├── tests │ └── ArrayHelperTest.ts ├── tsconfig.json └── yarn.lock ├── screens ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── Aboul.png ├── Aymen.png ├── Brainy.png ├── Devfest.png ├── Devfest_Tshirt.png ├── GDG T-shirt.png ├── GDG_short.png ├── Ouardia.png ├── Sohaib.png ├── WTM_short.png ├── WTM_tshirt.png ├── h1.png ├── h2.png ├── lenght.PNG ├── permission.jpg ├── t1.png └── t2.png ├── tests ├── .gitignore ├── .testcaferc.js ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json └── tests │ ├── reconnect.ts │ ├── utils │ ├── containers.ts │ ├── debug.ts │ ├── log.ts │ └── roles.ts │ └── variables.ts ├── uploader ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── jasmine.json ├── package.json ├── server.ts ├── src │ ├── App.ts │ ├── Controller │ │ ├── BaseController.ts │ │ └── FileController.ts │ └── Server │ │ ├── server │ │ ├── app.ts │ │ ├── baseapp.ts │ │ ├── formdata.ts │ │ ├── sslapp.ts │ │ ├── types.ts │ │ └── utils.ts │ │ └── sifrr.server.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README-LOGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/README-LOGO.svg -------------------------------------------------------------------------------- /README-MAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/README-MAP.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/Vagrantfile.template -------------------------------------------------------------------------------- /back/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/.dockerignore -------------------------------------------------------------------------------- /back/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/.eslintrc.json -------------------------------------------------------------------------------- /back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/.gitignore -------------------------------------------------------------------------------- /back/.prettierignore: -------------------------------------------------------------------------------- 1 | src/Messages/generated 2 | -------------------------------------------------------------------------------- /back/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/.prettierrc.json -------------------------------------------------------------------------------- /back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/Dockerfile -------------------------------------------------------------------------------- /back/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/LICENSE.txt -------------------------------------------------------------------------------- /back/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/jasmine.json -------------------------------------------------------------------------------- /back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/package.json -------------------------------------------------------------------------------- /back/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/server.ts -------------------------------------------------------------------------------- /back/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/App.ts -------------------------------------------------------------------------------- /back/src/Controller/BaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Controller/BaseController.ts -------------------------------------------------------------------------------- /back/src/Controller/DebugController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Controller/DebugController.ts -------------------------------------------------------------------------------- /back/src/Controller/PrometheusController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Controller/PrometheusController.ts -------------------------------------------------------------------------------- /back/src/Enum/EnvironmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Enum/EnvironmentVariable.ts -------------------------------------------------------------------------------- /back/src/Messages/.gitignore: -------------------------------------------------------------------------------- 1 | /generated/ 2 | -------------------------------------------------------------------------------- /back/src/Model/Admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Admin.ts -------------------------------------------------------------------------------- /back/src/Model/GameRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/GameRoom.ts -------------------------------------------------------------------------------- /back/src/Model/Group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Group.ts -------------------------------------------------------------------------------- /back/src/Model/Movable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Movable.ts -------------------------------------------------------------------------------- /back/src/Model/PositionInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/PositionInterface.ts -------------------------------------------------------------------------------- /back/src/Model/PositionNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/PositionNotifier.ts -------------------------------------------------------------------------------- /back/src/Model/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/User.ts -------------------------------------------------------------------------------- /back/src/Model/Websocket/CharacterLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Websocket/CharacterLayer.ts -------------------------------------------------------------------------------- /back/src/Model/Websocket/Identificable.ts: -------------------------------------------------------------------------------- 1 | export interface Identificable { 2 | userId: number; 3 | } 4 | -------------------------------------------------------------------------------- /back/src/Model/Websocket/ItemEventMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Websocket/ItemEventMessage.ts -------------------------------------------------------------------------------- /back/src/Model/Websocket/MessageUserPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Websocket/MessageUserPosition.ts -------------------------------------------------------------------------------- /back/src/Model/Websocket/PointInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Websocket/PointInterface.ts -------------------------------------------------------------------------------- /back/src/Model/Websocket/ProtobufUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Websocket/ProtobufUtils.ts -------------------------------------------------------------------------------- /back/src/Model/Zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Model/Zone.ts -------------------------------------------------------------------------------- /back/src/RoomManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/RoomManager.ts -------------------------------------------------------------------------------- /back/src/Server/server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/app.ts -------------------------------------------------------------------------------- /back/src/Server/server/baseapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/baseapp.ts -------------------------------------------------------------------------------- /back/src/Server/server/formdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/formdata.ts -------------------------------------------------------------------------------- /back/src/Server/server/sslapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/sslapp.ts -------------------------------------------------------------------------------- /back/src/Server/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/types.ts -------------------------------------------------------------------------------- /back/src/Server/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/server/utils.ts -------------------------------------------------------------------------------- /back/src/Server/sifrr.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Server/sifrr.server.ts -------------------------------------------------------------------------------- /back/src/Services/AdminApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/AdminApi.ts -------------------------------------------------------------------------------- /back/src/Services/AdminApi/CharacterTexture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/AdminApi/CharacterTexture.ts -------------------------------------------------------------------------------- /back/src/Services/AdminApi/MapDetailsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/AdminApi/MapDetailsData.ts -------------------------------------------------------------------------------- /back/src/Services/AdminApi/RoomRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/AdminApi/RoomRedirect.ts -------------------------------------------------------------------------------- /back/src/Services/ArrayHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/ArrayHelper.ts -------------------------------------------------------------------------------- /back/src/Services/ClientEventsEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/ClientEventsEmitter.ts -------------------------------------------------------------------------------- /back/src/Services/CpuTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/CpuTracker.ts -------------------------------------------------------------------------------- /back/src/Services/GaugeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/GaugeManager.ts -------------------------------------------------------------------------------- /back/src/Services/LocalUrlError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/LocalUrlError.ts -------------------------------------------------------------------------------- /back/src/Services/Logger.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /back/src/Services/MapFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/MapFetcher.ts -------------------------------------------------------------------------------- /back/src/Services/MessageHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/MessageHelpers.ts -------------------------------------------------------------------------------- /back/src/Services/RedisClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/RedisClient.ts -------------------------------------------------------------------------------- /back/src/Services/Repository/VariablesRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/Repository/VariablesRepository.ts -------------------------------------------------------------------------------- /back/src/Services/SocketManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/SocketManager.ts -------------------------------------------------------------------------------- /back/src/Services/VariableError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/VariableError.ts -------------------------------------------------------------------------------- /back/src/Services/VariablesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/src/Services/VariablesManager.ts -------------------------------------------------------------------------------- /back/tests/ArrayHelperTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tests/ArrayHelperTest.ts -------------------------------------------------------------------------------- /back/tests/GameRoomTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tests/GameRoomTest.ts -------------------------------------------------------------------------------- /back/tests/MapFetcherTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tests/MapFetcherTest.ts -------------------------------------------------------------------------------- /back/tests/PositionNotifierTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tests/PositionNotifierTest.ts -------------------------------------------------------------------------------- /back/tests/getNearbyDescriptorsMatrixTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tests/getNearbyDescriptorsMatrixTest.ts -------------------------------------------------------------------------------- /back/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/tsconfig.json -------------------------------------------------------------------------------- /back/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/back/yarn.lock -------------------------------------------------------------------------------- /benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/.gitignore -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/benchmark_multi_core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/benchmark_multi_core.sh -------------------------------------------------------------------------------- /benchmark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/index.ts -------------------------------------------------------------------------------- /benchmark/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/package-lock.json -------------------------------------------------------------------------------- /benchmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/package.json -------------------------------------------------------------------------------- /benchmark/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/benchmark/yarn.lock -------------------------------------------------------------------------------- /contrib/docker/.env.prod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/contrib/docker/.env.prod.template -------------------------------------------------------------------------------- /contrib/docker/docker-compose.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/contrib/docker/docker-compose.prod.yaml -------------------------------------------------------------------------------- /deeployer.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/deeployer.libsonnet -------------------------------------------------------------------------------- /docker-compose.single-domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docker-compose.single-domain.yaml -------------------------------------------------------------------------------- /docker-compose.testcafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docker-compose.testcafe.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/dev/contributing-to-scripting-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/dev/contributing-to-scripting-api.md -------------------------------------------------------------------------------- /docs/dev/images/scripting_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/dev/images/scripting_1.svg -------------------------------------------------------------------------------- /docs/dev/images/scripting_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/dev/images/scripting_2.svg -------------------------------------------------------------------------------- /docs/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/diagrams.md -------------------------------------------------------------------------------- /docs/maps/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/animations.md -------------------------------------------------------------------------------- /docs/maps/api-chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-chat.md -------------------------------------------------------------------------------- /docs/maps/api-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-controls.md -------------------------------------------------------------------------------- /docs/maps/api-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-deprecated.md -------------------------------------------------------------------------------- /docs/maps/api-nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-nav.md -------------------------------------------------------------------------------- /docs/maps/api-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-player.md -------------------------------------------------------------------------------- /docs/maps/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-reference.md -------------------------------------------------------------------------------- /docs/maps/api-room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-room.md -------------------------------------------------------------------------------- /docs/maps/api-sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-sound.md -------------------------------------------------------------------------------- /docs/maps/api-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-start.md -------------------------------------------------------------------------------- /docs/maps/api-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-state.md -------------------------------------------------------------------------------- /docs/maps/api-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/api-ui.md -------------------------------------------------------------------------------- /docs/maps/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/camera.md -------------------------------------------------------------------------------- /docs/maps/entry-exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/entry-exit.md -------------------------------------------------------------------------------- /docs/maps/hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/hosting.md -------------------------------------------------------------------------------- /docs/maps/images/anims/animation_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/anims/animation_editor.png -------------------------------------------------------------------------------- /docs/maps/images/anims/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/anims/camera.png -------------------------------------------------------------------------------- /docs/maps/images/anims/settings_show_animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/anims/settings_show_animations.png -------------------------------------------------------------------------------- /docs/maps/images/camera/0_focusable_zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/0_focusable_zone.png -------------------------------------------------------------------------------- /docs/maps/images/camera/1_object_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/1_object_layer.png -------------------------------------------------------------------------------- /docs/maps/images/camera/2_rectangle_zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/2_rectangle_zone.png -------------------------------------------------------------------------------- /docs/maps/images/camera/3_define_new_zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/3_define_new_zone.png -------------------------------------------------------------------------------- /docs/maps/images/camera/4_add_zone_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/4_add_zone_type.png -------------------------------------------------------------------------------- /docs/maps/images/camera/5_click_add_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/5_click_add_property.png -------------------------------------------------------------------------------- /docs/maps/images/camera/6_add_focusable_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/6_add_focusable_prop.png -------------------------------------------------------------------------------- /docs/maps/images/camera/7_make_sure_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/7_make_sure_checked.png -------------------------------------------------------------------------------- /docs/maps/images/camera/8_add_zoom_margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/8_add_zoom_margin.png -------------------------------------------------------------------------------- /docs/maps/images/camera/no_margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/no_margin.png -------------------------------------------------------------------------------- /docs/maps/images/camera/with_margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/camera/with_margin.png -------------------------------------------------------------------------------- /docs/maps/images/click_space_jitsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/click_space_jitsi.png -------------------------------------------------------------------------------- /docs/maps/images/click_space_open_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/click_space_open_website.png -------------------------------------------------------------------------------- /docs/maps/images/collides-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/collides-1.png -------------------------------------------------------------------------------- /docs/maps/images/collides-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/collides-2.png -------------------------------------------------------------------------------- /docs/maps/images/collides-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/collides-3.png -------------------------------------------------------------------------------- /docs/maps/images/collides-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/collides-4.png -------------------------------------------------------------------------------- /docs/maps/images/create_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/create_repo.png -------------------------------------------------------------------------------- /docs/maps/images/custom-menu-iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/custom-menu-iframe.png -------------------------------------------------------------------------------- /docs/maps/images/custom-menu-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/custom-menu-navbar.png -------------------------------------------------------------------------------- /docs/maps/images/exit_layer_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/exit_layer_map.png -------------------------------------------------------------------------------- /docs/maps/images/github_pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/github_pages.png -------------------------------------------------------------------------------- /docs/maps/images/groupLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/groupLayer.png -------------------------------------------------------------------------------- /docs/maps/images/layer-entry-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/layer-entry-point.png -------------------------------------------------------------------------------- /docs/maps/images/mapProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/mapProperties.png -------------------------------------------------------------------------------- /docs/maps/images/menu-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/menu-command.png -------------------------------------------------------------------------------- /docs/maps/images/nameIndexProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/nameIndexProperty.png -------------------------------------------------------------------------------- /docs/maps/images/object_variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/object_variable.png -------------------------------------------------------------------------------- /docs/maps/images/open_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/open_website.png -------------------------------------------------------------------------------- /docs/maps/images/open_website_allow_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/open_website_allow_api.png -------------------------------------------------------------------------------- /docs/maps/images/open_website_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/open_website_policy.png -------------------------------------------------------------------------------- /docs/maps/images/screen_popup_in_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/screen_popup_in_game.png -------------------------------------------------------------------------------- /docs/maps/images/screen_popup_tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/screen_popup_tiled.png -------------------------------------------------------------------------------- /docs/maps/images/script_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/script_property.png -------------------------------------------------------------------------------- /docs/maps/images/start_kit_start_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/start_kit_start_screen.png -------------------------------------------------------------------------------- /docs/maps/images/start_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/start_layer.png -------------------------------------------------------------------------------- /docs/maps/images/text-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/text-object.png -------------------------------------------------------------------------------- /docs/maps/images/tile-entry-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/tile-entry-point.png -------------------------------------------------------------------------------- /docs/maps/images/tiled_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/tiled_screenshot_1.png -------------------------------------------------------------------------------- /docs/maps/images/trigger_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/trigger_event.png -------------------------------------------------------------------------------- /docs/maps/images/trigger_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/trigger_message.png -------------------------------------------------------------------------------- /docs/maps/images/use_this_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/use_this_template.png -------------------------------------------------------------------------------- /docs/maps/images/website_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/website_address.png -------------------------------------------------------------------------------- /docs/maps/images/website_allowapi_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/website_allowapi_property.png -------------------------------------------------------------------------------- /docs/maps/images/website_url_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/website_url_property.png -------------------------------------------------------------------------------- /docs/maps/images/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/images/youtube.jpg -------------------------------------------------------------------------------- /docs/maps/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/index.md -------------------------------------------------------------------------------- /docs/maps/meeting-rooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/meeting-rooms.md -------------------------------------------------------------------------------- /docs/maps/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/menu.php -------------------------------------------------------------------------------- /docs/maps/opening-a-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/opening-a-website.md -------------------------------------------------------------------------------- /docs/maps/scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/scripting.md -------------------------------------------------------------------------------- /docs/maps/special-zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/special-zones.md -------------------------------------------------------------------------------- /docs/maps/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/text.md -------------------------------------------------------------------------------- /docs/maps/using-typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/using-typescript.md -------------------------------------------------------------------------------- /docs/maps/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/variables.md -------------------------------------------------------------------------------- /docs/maps/wa-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/wa-maps.md -------------------------------------------------------------------------------- /docs/maps/website-in-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/docs/maps/website-in-map.md -------------------------------------------------------------------------------- /front/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/bundle.js 3 | /yarn-error.log 4 | /Dockerfile 5 | -------------------------------------------------------------------------------- /front/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/.eslintrc.js -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/.gitignore -------------------------------------------------------------------------------- /front/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/.prettierignore -------------------------------------------------------------------------------- /front/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/.prettierrc.json -------------------------------------------------------------------------------- /front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/Dockerfile -------------------------------------------------------------------------------- /front/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/LICENSE.txt -------------------------------------------------------------------------------- /front/dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/.gitignore -------------------------------------------------------------------------------- /front/dist/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/.htaccess -------------------------------------------------------------------------------- /front/dist/ga.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/ga.html.tmpl -------------------------------------------------------------------------------- /front/dist/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/iframe.html -------------------------------------------------------------------------------- /front/dist/index.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/index.tmpl.html -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Aymen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Aymen.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Cat 01-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Cat 01-1.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Cat 01-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Cat 01-2.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Cat 01-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Cat 01-3.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Dog 01-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Dog 01-1.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Dog 01-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Dog 01-2.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/Dog 01-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/Dog 01-3.png -------------------------------------------------------------------------------- /front/dist/resources/characters/pipoya/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/characters/pipoya/about.txt -------------------------------------------------------------------------------- /front/dist/resources/emotes/clap-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/clap-emote.png -------------------------------------------------------------------------------- /front/dist/resources/emotes/hand-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/hand-emote.png -------------------------------------------------------------------------------- /front/dist/resources/emotes/heart-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/heart-emote.png -------------------------------------------------------------------------------- /front/dist/resources/emotes/thanks-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/thanks-emote.png -------------------------------------------------------------------------------- /front/dist/resources/emotes/thumb-down-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/thumb-down-emote.png -------------------------------------------------------------------------------- /front/dist/resources/emotes/thumb-up-emote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/emotes/thumb-up-emote.png -------------------------------------------------------------------------------- /front/dist/resources/fonts/arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/fonts/arcade.png -------------------------------------------------------------------------------- /front/dist/resources/fonts/arcade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/fonts/arcade.xml -------------------------------------------------------------------------------- /front/dist/resources/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/fonts/fonts.css -------------------------------------------------------------------------------- /front/dist/resources/fonts/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/fonts/ka1.ttf -------------------------------------------------------------------------------- /front/dist/resources/html/gameMenu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front/dist/resources/items/computer/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/items/computer/computer.png -------------------------------------------------------------------------------- /front/dist/resources/logos/blockSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/blockSign.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/blockingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/blockingIcon.png -------------------------------------------------------------------------------- /front/dist/resources/logos/boy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/boy.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/cancel.png -------------------------------------------------------------------------------- /front/dist/resources/logos/cinema-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/cinema-close.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/close.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/discussion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/discussion.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/fullscreen-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/fullscreen-exit.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/fullscreen.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/megaphone.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/microphone-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/microphone-close.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/monitor-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/monitor-yellow.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/music-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/music-file.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/phone-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/phone-open.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/phone.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/report.back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/report.back.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/report.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/send-bkack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/send-bkack.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/send-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/send-white.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/send-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/send-yellow.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/setting-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/setting-black.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/setting-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/setting-white.svg -------------------------------------------------------------------------------- /front/dist/resources/logos/setting-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/logos/setting-yellow.svg -------------------------------------------------------------------------------- /front/dist/resources/objects/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/arrow_down.png -------------------------------------------------------------------------------- /front/dist/resources/objects/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/arrow_right.png -------------------------------------------------------------------------------- /front/dist/resources/objects/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/arrow_up.png -------------------------------------------------------------------------------- /front/dist/resources/objects/arrow_up_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/arrow_up_black.png -------------------------------------------------------------------------------- /front/dist/resources/objects/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/customize.png -------------------------------------------------------------------------------- /front/dist/resources/objects/customize_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/customize_selected.png -------------------------------------------------------------------------------- /front/dist/resources/objects/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/facebook-icon.png -------------------------------------------------------------------------------- /front/dist/resources/objects/joystickSplitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/joystickSplitted.png -------------------------------------------------------------------------------- /front/dist/resources/objects/report-message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/report-message.mp3 -------------------------------------------------------------------------------- /front/dist/resources/objects/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/talk.png -------------------------------------------------------------------------------- /front/dist/resources/objects/teleportation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/teleportation.png -------------------------------------------------------------------------------- /front/dist/resources/objects/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/twitter-icon.png -------------------------------------------------------------------------------- /front/dist/resources/objects/webrtc-in.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/webrtc-in.mp3 -------------------------------------------------------------------------------- /front/dist/resources/objects/webrtc-out.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/resources/objects/webrtc-out.mp3 -------------------------------------------------------------------------------- /front/dist/static/images/Bitmap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/Bitmap2.png -------------------------------------------------------------------------------- /front/dist/static/images/Bitmap3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/Bitmap3.png -------------------------------------------------------------------------------- /front/dist/static/images/amstrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/amstrad.png -------------------------------------------------------------------------------- /front/dist/static/images/atari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/atari.png -------------------------------------------------------------------------------- /front/dist/static/images/bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/bitmap.png -------------------------------------------------------------------------------- /front/dist/static/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/check.png -------------------------------------------------------------------------------- /front/dist/static/images/choose_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/choose_character.png -------------------------------------------------------------------------------- /front/dist/static/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/cloud.png -------------------------------------------------------------------------------- /front/dist/static/images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/desktop.png -------------------------------------------------------------------------------- /front/dist/static/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/facebook.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/apple-icon.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/browserconfig.xml -------------------------------------------------------------------------------- /front/dist/static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /front/dist/static/images/favicons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/icon-512x512.png -------------------------------------------------------------------------------- /front/dist/static/images/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/manifest.json -------------------------------------------------------------------------------- /front/dist/static/images/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /front/dist/static/images/female-character.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/female-character.gif -------------------------------------------------------------------------------- /front/dist/static/images/floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/floppy.png -------------------------------------------------------------------------------- /front/dist/static/images/interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/interact.png -------------------------------------------------------------------------------- /front/dist/static/images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/linkedin.png -------------------------------------------------------------------------------- /front/dist/static/images/logo-WA-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/logo-WA-min.png -------------------------------------------------------------------------------- /front/dist/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/logo.png -------------------------------------------------------------------------------- /front/dist/static/images/male-character.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/male-character.gif -------------------------------------------------------------------------------- /front/dist/static/images/maps/coders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/coders.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/creative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/creative.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/dungeon.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/fantasy.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/office.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/pub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/pub.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/school.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/street.png -------------------------------------------------------------------------------- /front/dist/static/images/maps/tcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/maps/tcm.png -------------------------------------------------------------------------------- /front/dist/static/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/menu.svg -------------------------------------------------------------------------------- /front/dist/static/images/meta-tags-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/meta-tags-image.jpg -------------------------------------------------------------------------------- /front/dist/static/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/play.png -------------------------------------------------------------------------------- /front/dist/static/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/send.png -------------------------------------------------------------------------------- /front/dist/static/images/sinclair-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/sinclair-2.png -------------------------------------------------------------------------------- /front/dist/static/images/step 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/step 1.png -------------------------------------------------------------------------------- /front/dist/static/images/step 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/step 2.png -------------------------------------------------------------------------------- /front/dist/static/images/step 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/step 3.png -------------------------------------------------------------------------------- /front/dist/static/images/super-nintendo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/super-nintendo.png -------------------------------------------------------------------------------- /front/dist/static/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/dist/static/images/twitter.png -------------------------------------------------------------------------------- /front/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/jasmine.json -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/package.json -------------------------------------------------------------------------------- /front/packages/iframe-api-typings/.gitignore: -------------------------------------------------------------------------------- 1 | iframe_api.d.ts 2 | -------------------------------------------------------------------------------- /front/packages/iframe-api-typings/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front/packages/iframe-api-typings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/packages/iframe-api-typings/README.md -------------------------------------------------------------------------------- /front/packages/iframe-api-typings/iframe_api.js: -------------------------------------------------------------------------------- 1 | // This file is voluntarily empty. 2 | -------------------------------------------------------------------------------- /front/packages/iframe-api-typings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/packages/iframe-api-typings/package.json -------------------------------------------------------------------------------- /front/src/Administration/AnalyticsClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Administration/AnalyticsClient.ts -------------------------------------------------------------------------------- /front/src/Administration/UserMessageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Administration/UserMessageManager.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ButtonClickedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ButtonClickedEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ChangeLayerEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ChangeLayerEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ChangeZoneEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ChangeZoneEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ChatEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ChatEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/CloseCoWebsiteEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/CloseCoWebsiteEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ClosePopupEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ClosePopupEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ColorEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ColorEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/EmbeddedWebsiteEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/EmbeddedWebsiteEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/EnterLeaveEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/EnterLeaveEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/GameStateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/GameStateEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/GoToPageEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/GoToPageEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/HasPlayerMovedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/HasPlayerMovedEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/IframeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/IframeEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/LayerEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/LayerEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/LoadPageEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/LoadPageEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/LoadSoundEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/LoadSoundEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/LoadTilesetEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/LoadTilesetEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/MapDataEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/MapDataEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/OpenCoWebsiteEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/OpenCoWebsiteEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/OpenPopupEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/OpenPopupEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/OpenTabEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/OpenTabEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/PlaySoundEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/PlaySoundEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/SetTilesEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/SetTilesEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/SetVariableEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/SetVariableEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/StopSoundEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/StopSoundEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/UserInputChatEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/UserInputChatEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/setPropertyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/setPropertyEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ui/MenuItemClickedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ui/MenuItemClickedEvent.ts -------------------------------------------------------------------------------- /front/src/Api/Events/ui/MenuRegisterEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/Events/ui/MenuRegisterEvent.ts -------------------------------------------------------------------------------- /front/src/Api/IframeListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/IframeListener.ts -------------------------------------------------------------------------------- /front/src/Api/ScriptUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/ScriptUtils.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/IframeApiContribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/IframeApiContribution.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Room/EmbeddedWebsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Room/EmbeddedWebsite.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Sound/Sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Sound/Sound.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Ui/ActionMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Ui/ActionMessage.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Ui/ButtonDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Ui/ButtonDescriptor.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Ui/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Ui/Menu.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Ui/MenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Ui/MenuItem.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/Ui/Popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/Ui/Popup.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/chat.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/controls.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/nav.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/player.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/registeredCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/registeredCallbacks.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/room.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/sound.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/state.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/ui.ts -------------------------------------------------------------------------------- /front/src/Api/iframe/website.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/iframe/website.ts -------------------------------------------------------------------------------- /front/src/Api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Api/types.ts -------------------------------------------------------------------------------- /front/src/Components/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/App.svelte -------------------------------------------------------------------------------- /front/src/Components/CameraControls.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/CameraControls.svelte -------------------------------------------------------------------------------- /front/src/Components/Chat/Chat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Chat/Chat.svelte -------------------------------------------------------------------------------- /front/src/Components/Chat/ChatElement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Chat/ChatElement.svelte -------------------------------------------------------------------------------- /front/src/Components/Chat/ChatMessageForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Chat/ChatMessageForm.svelte -------------------------------------------------------------------------------- /front/src/Components/Chat/ChatPlayerName.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Chat/ChatPlayerName.svelte -------------------------------------------------------------------------------- /front/src/Components/Chat/ChatSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Chat/ChatSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Companion/Companion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Companion/Companion.svelte -------------------------------------------------------------------------------- /front/src/Components/EmoteMenu/EmoteMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/EmoteMenu/EmoteMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/FollowMenu/FollowMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/FollowMenu/FollowMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Login/LoginScene.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Login/LoginScene.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/AboutRoomSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/AboutRoomSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/AudioGlobalMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/AudioGlobalMessage.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/ContactSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/ContactSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/CustomSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/CustomSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/GuestSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/GuestSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/Menu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/MenuIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/MenuIcon.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/ProfileSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/ProfileSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/SettingsSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/SettingsSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/Menu/TextGlobalMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Menu/TextGlobalMessage.svelte -------------------------------------------------------------------------------- /front/src/Components/MyCamera.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/MyCamera.svelte -------------------------------------------------------------------------------- /front/src/Components/ReportMenu/BlockSubMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/ReportMenu/BlockSubMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/ReportMenu/ReportMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/ReportMenu/ReportMenu.svelte -------------------------------------------------------------------------------- /front/src/Components/SoundMeterWidget.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/SoundMeterWidget.svelte -------------------------------------------------------------------------------- /front/src/Components/TypeMessage/BanMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/TypeMessage/BanMessage.svelte -------------------------------------------------------------------------------- /front/src/Components/TypeMessage/TextMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/TypeMessage/TextMessage.svelte -------------------------------------------------------------------------------- /front/src/Components/UI/AudioPlaying.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/UI/AudioPlaying.svelte -------------------------------------------------------------------------------- /front/src/Components/UI/ErrorDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/UI/ErrorDialog.svelte -------------------------------------------------------------------------------- /front/src/Components/UI/images/megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/UI/images/megaphone.svg -------------------------------------------------------------------------------- /front/src/Components/Video/ChatLayout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/ChatLayout.svelte -------------------------------------------------------------------------------- /front/src/Components/Video/MediaBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/MediaBox.svelte -------------------------------------------------------------------------------- /front/src/Components/Video/VideoMediaBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/VideoMediaBox.svelte -------------------------------------------------------------------------------- /front/src/Components/Video/VideoOverlay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/VideoOverlay.svelte -------------------------------------------------------------------------------- /front/src/Components/Video/images/blockSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/images/blockSign.svg -------------------------------------------------------------------------------- /front/src/Components/Video/images/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/images/report.svg -------------------------------------------------------------------------------- /front/src/Components/Video/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Video/utils.ts -------------------------------------------------------------------------------- /front/src/Components/VisitCard/VisitCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/VisitCard/VisitCard.svelte -------------------------------------------------------------------------------- /front/src/Components/Woka/Woka.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/Woka/Woka.svelte -------------------------------------------------------------------------------- /front/src/Components/images/audio-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/audio-mute.svg -------------------------------------------------------------------------------- /front/src/Components/images/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/audio.svg -------------------------------------------------------------------------------- /front/src/Components/images/cinema-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/cinema-close.svg -------------------------------------------------------------------------------- /front/src/Components/images/cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/cinema.svg -------------------------------------------------------------------------------- /front/src/Components/images/follow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/follow.svg -------------------------------------------------------------------------------- /front/src/Components/images/layout-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/layout-chat.svg -------------------------------------------------------------------------------- /front/src/Components/images/layout-presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/layout-presentation.svg -------------------------------------------------------------------------------- /front/src/Components/images/logo-WA-pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/logo-WA-pixel.png -------------------------------------------------------------------------------- /front/src/Components/images/logo-message-pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/logo-message-pixel.png -------------------------------------------------------------------------------- /front/src/Components/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/logo.png -------------------------------------------------------------------------------- /front/src/Components/images/microphone-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/microphone-close.svg -------------------------------------------------------------------------------- /front/src/Components/images/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/microphone.svg -------------------------------------------------------------------------------- /front/src/Components/images/monitor-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/monitor-close.svg -------------------------------------------------------------------------------- /front/src/Components/images/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/monitor.svg -------------------------------------------------------------------------------- /front/src/Components/images/music-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Components/images/music-file.svg -------------------------------------------------------------------------------- /front/src/Connexion/AdminMessagesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/AdminMessagesService.ts -------------------------------------------------------------------------------- /front/src/Connexion/AxiosUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/AxiosUtils.ts -------------------------------------------------------------------------------- /front/src/Connexion/ConnectionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/ConnectionManager.ts -------------------------------------------------------------------------------- /front/src/Connexion/ConnexionModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/ConnexionModels.ts -------------------------------------------------------------------------------- /front/src/Connexion/EmoteEventStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/EmoteEventStream.ts -------------------------------------------------------------------------------- /front/src/Connexion/LocalUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/LocalUser.ts -------------------------------------------------------------------------------- /front/src/Connexion/LocalUserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/LocalUserStore.ts -------------------------------------------------------------------------------- /front/src/Connexion/Room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/Room.ts -------------------------------------------------------------------------------- /front/src/Connexion/RoomConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/RoomConnection.ts -------------------------------------------------------------------------------- /front/src/Connexion/WorldFullMessageStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Connexion/WorldFullMessageStream.ts -------------------------------------------------------------------------------- /front/src/Enum/EnvironmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Enum/EnvironmentVariable.ts -------------------------------------------------------------------------------- /front/src/Exception/TextureError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Exception/TextureError.ts -------------------------------------------------------------------------------- /front/src/Logger/MessageUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Logger/MessageUI.ts -------------------------------------------------------------------------------- /front/src/Messages/.gitignore: -------------------------------------------------------------------------------- 1 | /generated/ 2 | -------------------------------------------------------------------------------- /front/src/Messages/JsonMessages/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /front/src/Network/ProtobufClientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Network/ProtobufClientUtils.ts -------------------------------------------------------------------------------- /front/src/Network/ServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Network/ServiceWorker.ts -------------------------------------------------------------------------------- /front/src/Phaser/Companion/Companion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Companion/Companion.ts -------------------------------------------------------------------------------- /front/src/Phaser/Companion/CompanionTextures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Companion/CompanionTextures.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/ChatModeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/ChatModeIcon.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/ClickButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/ClickButton.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/Loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/Loader.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/MobileJoystick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/MobileJoystick.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/PresentationModeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/PresentationModeIcon.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/RadialMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/RadialMenu.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/SoundMeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/SoundMeter.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/TextField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/TextField.ts -------------------------------------------------------------------------------- /front/src/Phaser/Components/TextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Components/TextUtils.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/Character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/Character.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/CustomizedCharacter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/CustomizedCharacter.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/PlayerTextures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/PlayerTextures.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/RemotePlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/RemotePlayer.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/SpeechBubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/SpeechBubble.ts -------------------------------------------------------------------------------- /front/src/Phaser/Entity/Sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Entity/Sprite.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/AddPlayerInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/AddPlayerInterface.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/CameraManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/CameraManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/DepthIndexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/DepthIndexes.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/DirtyScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/DirtyScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/EmbeddedWebsiteManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/EmbeddedWebsiteManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/EmoteManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/EmoteManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/Game.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/GameManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/GameManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/GameMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/GameMap.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/GameMapProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/GameMapProperties.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/GameMapPropertiesListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/GameMapPropertiesListener.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/GameScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/GameScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/PlayerInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/PlayerInterface.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/PlayerMovement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/PlayerMovement.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/SharedVariablesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/SharedVariablesManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/SoundManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/SoundManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Game/StartPositionCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Game/StartPositionCalculator.ts -------------------------------------------------------------------------------- /front/src/Phaser/Helpers/TexturesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Helpers/TexturesHelper.ts -------------------------------------------------------------------------------- /front/src/Phaser/Items/ActionableItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Items/ActionableItem.ts -------------------------------------------------------------------------------- /front/src/Phaser/Items/Computer/computer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Items/Computer/computer.ts -------------------------------------------------------------------------------- /front/src/Phaser/Items/ItemFactoryInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Items/ItemFactoryInterface.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/AbstractCharacterScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/AbstractCharacterScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/CustomizeScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/CustomizeScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/EnableCameraScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/EnableCameraScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/EntryScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/EntryScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/LoginScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/LoginScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/ResizableScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/ResizableScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/SelectCharacterScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/SelectCharacterScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Login/SelectCompanionScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Login/SelectCompanionScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Map/ITiledMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Map/ITiledMap.ts -------------------------------------------------------------------------------- /front/src/Phaser/Map/LayersFlattener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Map/LayersFlattener.ts -------------------------------------------------------------------------------- /front/src/Phaser/Map/PropertyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Map/PropertyUtils.ts -------------------------------------------------------------------------------- /front/src/Phaser/Player/Animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Player/Animation.ts -------------------------------------------------------------------------------- /front/src/Phaser/Player/Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Player/Player.ts -------------------------------------------------------------------------------- /front/src/Phaser/Reconnecting/ErrorScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Reconnecting/ErrorScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Reconnecting/ReconnectingScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Reconnecting/ReconnectingScene.ts -------------------------------------------------------------------------------- /front/src/Phaser/Reconnecting/WAError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Reconnecting/WAError.ts -------------------------------------------------------------------------------- /front/src/Phaser/Services/HdpiManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Services/HdpiManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/Services/WaScaleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/Services/WaScaleManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/UserInput/PinchManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/UserInput/PinchManager.ts -------------------------------------------------------------------------------- /front/src/Phaser/UserInput/UserInputManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Phaser/UserInput/UserInputManager.ts -------------------------------------------------------------------------------- /front/src/Stores/AudioManagerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/AudioManagerStore.ts -------------------------------------------------------------------------------- /front/src/Stores/BiggestAvailableAreaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/BiggestAvailableAreaStore.ts -------------------------------------------------------------------------------- /front/src/Stores/ChatStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/ChatStore.ts -------------------------------------------------------------------------------- /front/src/Stores/CustomCharacterStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/CustomCharacterStore.ts -------------------------------------------------------------------------------- /front/src/Stores/EmoteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/EmoteStore.ts -------------------------------------------------------------------------------- /front/src/Stores/ErrorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/ErrorStore.ts -------------------------------------------------------------------------------- /front/src/Stores/Errors/BrowserTooOldError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/Errors/BrowserTooOldError.ts -------------------------------------------------------------------------------- /front/src/Stores/Errors/WebviewOnOldIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/Errors/WebviewOnOldIOS.ts -------------------------------------------------------------------------------- /front/src/Stores/FollowStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/FollowStore.ts -------------------------------------------------------------------------------- /front/src/Stores/GameOverlayStoreVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/GameOverlayStoreVisibility.ts -------------------------------------------------------------------------------- /front/src/Stores/GameStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/GameStore.ts -------------------------------------------------------------------------------- /front/src/Stores/HelpCameraSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/HelpCameraSettingsStore.ts -------------------------------------------------------------------------------- /front/src/Stores/LayoutManagerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/LayoutManagerStore.ts -------------------------------------------------------------------------------- /front/src/Stores/LoginSceneStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/LoginSceneStore.ts -------------------------------------------------------------------------------- /front/src/Stores/MediaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/MediaStore.ts -------------------------------------------------------------------------------- /front/src/Stores/MenuStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/MenuStore.ts -------------------------------------------------------------------------------- /front/src/Stores/OutlineColorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/OutlineColorStore.ts -------------------------------------------------------------------------------- /front/src/Stores/PeerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/PeerStore.ts -------------------------------------------------------------------------------- /front/src/Stores/PictureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/PictureStore.ts -------------------------------------------------------------------------------- /front/src/Stores/PlayersStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/PlayersStore.ts -------------------------------------------------------------------------------- /front/src/Stores/PrivacyShutdownStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/PrivacyShutdownStore.ts -------------------------------------------------------------------------------- /front/src/Stores/ScreenSharingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/ScreenSharingStore.ts -------------------------------------------------------------------------------- /front/src/Stores/SelectCharacterStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/SelectCharacterStore.ts -------------------------------------------------------------------------------- /front/src/Stores/SelectCompanionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/SelectCompanionStore.ts -------------------------------------------------------------------------------- /front/src/Stores/ShowReportScreenStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/ShowReportScreenStore.ts -------------------------------------------------------------------------------- /front/src/Stores/SoundPlayingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/SoundPlayingStore.ts -------------------------------------------------------------------------------- /front/src/Stores/StreamableCollectionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/StreamableCollectionStore.ts -------------------------------------------------------------------------------- /front/src/Stores/TypeMessageStore/MessageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/TypeMessageStore/MessageStore.ts -------------------------------------------------------------------------------- /front/src/Stores/UserInputStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/UserInputStore.ts -------------------------------------------------------------------------------- /front/src/Stores/Utils/MapStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/Utils/MapStore.ts -------------------------------------------------------------------------------- /front/src/Stores/VideoFocusStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/VideoFocusStore.ts -------------------------------------------------------------------------------- /front/src/Stores/VisibilityStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Stores/VisibilityStore.ts -------------------------------------------------------------------------------- /front/src/Touch/TouchScreenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Touch/TouchScreenManager.ts -------------------------------------------------------------------------------- /front/src/Url/UrlManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Url/UrlManager.ts -------------------------------------------------------------------------------- /front/src/Utils/MathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/Utils/MathUtils.ts -------------------------------------------------------------------------------- /front/src/WebRtc/BlackListManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/BlackListManager.ts -------------------------------------------------------------------------------- /front/src/WebRtc/CoWebsiteManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/CoWebsiteManager.ts -------------------------------------------------------------------------------- /front/src/WebRtc/ColorGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/ColorGenerator.ts -------------------------------------------------------------------------------- /front/src/WebRtc/DeviceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/DeviceUtils.ts -------------------------------------------------------------------------------- /front/src/WebRtc/HtmlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/HtmlUtils.ts -------------------------------------------------------------------------------- /front/src/WebRtc/JitsiFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/JitsiFactory.ts -------------------------------------------------------------------------------- /front/src/WebRtc/LayoutManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/LayoutManager.ts -------------------------------------------------------------------------------- /front/src/WebRtc/MediaManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/MediaManager.ts -------------------------------------------------------------------------------- /front/src/WebRtc/ScreenSharingPeer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/ScreenSharingPeer.ts -------------------------------------------------------------------------------- /front/src/WebRtc/SimplePeer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/SimplePeer.ts -------------------------------------------------------------------------------- /front/src/WebRtc/VideoPeer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/WebRtc/VideoPeer.ts -------------------------------------------------------------------------------- /front/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/ambient.d.ts -------------------------------------------------------------------------------- /front/src/iframe_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/iframe_api.ts -------------------------------------------------------------------------------- /front/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/index.ts -------------------------------------------------------------------------------- /front/src/rex-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/rex-plugins.d.ts -------------------------------------------------------------------------------- /front/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/src/types.ts -------------------------------------------------------------------------------- /front/style/TextGlobalMessageSvelte-Style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/TextGlobalMessageSvelte-Style.scss -------------------------------------------------------------------------------- /front/style/cowebsite-mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/cowebsite-mobile.scss -------------------------------------------------------------------------------- /front/style/cowebsite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/cowebsite.scss -------------------------------------------------------------------------------- /front/style/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/fonts.scss -------------------------------------------------------------------------------- /front/style/fonts/TwemojiMozilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/fonts/TwemojiMozilla.ttf -------------------------------------------------------------------------------- /front/style/images/cursor_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/images/cursor_normal.png -------------------------------------------------------------------------------- /front/style/images/cursor_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/images/cursor_pointer.png -------------------------------------------------------------------------------- /front/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/index.scss -------------------------------------------------------------------------------- /front/style/mobile-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/mobile-style.scss -------------------------------------------------------------------------------- /front/style/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/style/style.scss -------------------------------------------------------------------------------- /front/templater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/templater.sh -------------------------------------------------------------------------------- /front/tests/Phaser/Connexion/LocalUserTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Phaser/Connexion/LocalUserTest.ts -------------------------------------------------------------------------------- /front/tests/Phaser/Game/HtmlUtilsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Phaser/Game/HtmlUtilsTest.ts -------------------------------------------------------------------------------- /front/tests/Phaser/Game/PlayerMovementTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Phaser/Game/PlayerMovementTest.ts -------------------------------------------------------------------------------- /front/tests/Phaser/Map/LayersIteratorTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Phaser/Map/LayersIteratorTest.ts -------------------------------------------------------------------------------- /front/tests/Phaser/Services/HdpiManagerTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Phaser/Services/HdpiManagerTest.ts -------------------------------------------------------------------------------- /front/tests/Stores/Utils/MapStoreTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tests/Stores/Utils/MapStoreTest.ts -------------------------------------------------------------------------------- /front/tsconfig-for-jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tsconfig-for-jasmine.json -------------------------------------------------------------------------------- /front/tsconfig-for-webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tsconfig-for-webpack.json -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/webpack.config.ts -------------------------------------------------------------------------------- /front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/front/yarn.lock -------------------------------------------------------------------------------- /gdglogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/gdglogo.png -------------------------------------------------------------------------------- /maps/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/bundle.js 3 | /yarn-error.log 4 | /Dockerfile 5 | -------------------------------------------------------------------------------- /maps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /maps/.htaccess: -------------------------------------------------------------------------------- 1 | Header set Access-Control-Allow-Origin "*" 2 | -------------------------------------------------------------------------------- /maps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Dockerfile -------------------------------------------------------------------------------- /maps/Tuto/Attribution-tilesets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/Attribution-tilesets.txt -------------------------------------------------------------------------------- /maps/Tuto/Male 13-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/Male 13-4.png -------------------------------------------------------------------------------- /maps/Tuto/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/down-arrow.png -------------------------------------------------------------------------------- /maps/Tuto/fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/fantasy.png -------------------------------------------------------------------------------- /maps/Tuto/scriptTuto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/scriptTuto.js -------------------------------------------------------------------------------- /maps/Tuto/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/shift.png -------------------------------------------------------------------------------- /maps/Tuto/textTuto3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/textTuto3.png -------------------------------------------------------------------------------- /maps/Tuto/tilesets/Atlas-refs-opengameart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/Atlas-refs-opengameart.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-Atlas-Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-Atlas-Attribution.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-Atlas2-Attribution2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-Atlas2-Attribution2.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-indoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-indoors.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-interiors-house-credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-interiors-house-credits.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-leaf-credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-leaf-credits.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-leafs-refs.txt: -------------------------------------------------------------------------------- 1 | https://opengameart.org/content/lpc-leaf-recolor -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPC-submissions-refs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/LPC-submissions-refs.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/LPc-mountains-refs.txt: -------------------------------------------------------------------------------- 1 | https://opengameart.org/content/lpc-mountains -------------------------------------------------------------------------------- /maps/Tuto/tilesets/Specials-attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/Specials-attribution.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/outdoor/CREDITS-plants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/outdoor/CREDITS-plants.txt -------------------------------------------------------------------------------- /maps/Tuto/tilesets/outdoor/decorations-medieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/outdoor/decorations-medieval.png -------------------------------------------------------------------------------- /maps/Tuto/tilesets/outdoor/plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/outdoor/plants.png -------------------------------------------------------------------------------- /maps/Tuto/tilesets/specials/ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tilesets/specials/ALL.png -------------------------------------------------------------------------------- /maps/Tuto/tutoV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/tutoV3.json -------------------------------------------------------------------------------- /maps/Tuto/webrtc-in.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/webrtc-in.mp3 -------------------------------------------------------------------------------- /maps/Tuto/webrtc-out.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/Tuto/webrtc-out.mp3 -------------------------------------------------------------------------------- /maps/assets/Special_Zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/Special_Zones.png -------------------------------------------------------------------------------- /maps/assets/skins/skin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/skins/skin-blue.png -------------------------------------------------------------------------------- /maps/assets/skins/skin-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/skins/skin-green.png -------------------------------------------------------------------------------- /maps/assets/skins/skin-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/skins/skin-yellow.png -------------------------------------------------------------------------------- /maps/assets/tileset1-repositioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/tileset1-repositioning.png -------------------------------------------------------------------------------- /maps/assets/tileset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/tileset1.png -------------------------------------------------------------------------------- /maps/assets/tileset5_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/tileset5_export.png -------------------------------------------------------------------------------- /maps/assets/tileset6_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/assets/tileset6_export.png -------------------------------------------------------------------------------- /maps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/package.json -------------------------------------------------------------------------------- /maps/starter/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/starter/map.json -------------------------------------------------------------------------------- /maps/starter/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/starter/script.ts -------------------------------------------------------------------------------- /maps/tests/Attribution-tilesets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Attribution-tilesets.txt -------------------------------------------------------------------------------- /maps/tests/Audience.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Audience.mp3 -------------------------------------------------------------------------------- /maps/tests/ChangeLayerApi/change_layer_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/ChangeLayerApi/change_layer_api.json -------------------------------------------------------------------------------- /maps/tests/ChangeLayerApi/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/ChangeLayerApi/script.js -------------------------------------------------------------------------------- /maps/tests/CoWebsite/cowebsite_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/CoWebsite/cowebsite_api.json -------------------------------------------------------------------------------- /maps/tests/CoWebsite/cowebsite_jitsiroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/CoWebsite/cowebsite_jitsiroom.json -------------------------------------------------------------------------------- /maps/tests/CoWebsite/cowebsite_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/CoWebsite/cowebsite_property.json -------------------------------------------------------------------------------- /maps/tests/CoWebsite/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/CoWebsite/script.js -------------------------------------------------------------------------------- /maps/tests/CoWebsite/tileset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/CoWebsite/tileset1.png -------------------------------------------------------------------------------- /maps/tests/EmbeddedWebsite/website_in_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/EmbeddedWebsite/website_in_map.json -------------------------------------------------------------------------------- /maps/tests/LoadTileset/LoadTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/LoadTileset/LoadTileset.json -------------------------------------------------------------------------------- /maps/tests/LoadTileset/Yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/LoadTileset/Yellow.jpg -------------------------------------------------------------------------------- /maps/tests/LoadTileset/Yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/LoadTileset/Yellow.json -------------------------------------------------------------------------------- /maps/tests/LoadTileset/scriptTileset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/LoadTileset/scriptTileset.js -------------------------------------------------------------------------------- /maps/tests/LoadTileset/tileset_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/LoadTileset/tileset_dungeon.png -------------------------------------------------------------------------------- /maps/tests/Metadata/cowebsiteAllowApi.js: -------------------------------------------------------------------------------- 1 | WA.nav.openCoWebSite("cowebsiteAllowApi.php", true, ""); 2 | -------------------------------------------------------------------------------- /maps/tests/Metadata/cowebsiteAllowApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/cowebsiteAllowApi.json -------------------------------------------------------------------------------- /maps/tests/Metadata/cowebsiteAllowApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/cowebsiteAllowApi.php -------------------------------------------------------------------------------- /maps/tests/Metadata/customIframeMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/customIframeMenu.html -------------------------------------------------------------------------------- /maps/tests/Metadata/customIframeMenuApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/customIframeMenuApi.php -------------------------------------------------------------------------------- /maps/tests/Metadata/customMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/customMenu.js -------------------------------------------------------------------------------- /maps/tests/Metadata/customMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/customMenu.json -------------------------------------------------------------------------------- /maps/tests/Metadata/customMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/customMenu.php -------------------------------------------------------------------------------- /maps/tests/Metadata/floortileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/floortileset.png -------------------------------------------------------------------------------- /maps/tests/Metadata/getCurrentRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/getCurrentRoom.js -------------------------------------------------------------------------------- /maps/tests/Metadata/getCurrentRoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/getCurrentRoom.json -------------------------------------------------------------------------------- /maps/tests/Metadata/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/map.json -------------------------------------------------------------------------------- /maps/tests/Metadata/playerMove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/playerMove.json -------------------------------------------------------------------------------- /maps/tests/Metadata/playerMove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/playerMove.php -------------------------------------------------------------------------------- /maps/tests/Metadata/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/script.js -------------------------------------------------------------------------------- /maps/tests/Metadata/setProperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/setProperty.json -------------------------------------------------------------------------------- /maps/tests/Metadata/setProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/setProperty.php -------------------------------------------------------------------------------- /maps/tests/Metadata/setTiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/setTiles.html -------------------------------------------------------------------------------- /maps/tests/Metadata/setTiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/setTiles.json -------------------------------------------------------------------------------- /maps/tests/Metadata/showHideLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/showHideLayer.html -------------------------------------------------------------------------------- /maps/tests/Metadata/showHideLayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/showHideLayer.json -------------------------------------------------------------------------------- /maps/tests/Metadata/tileset_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Metadata/tileset_dungeon.png -------------------------------------------------------------------------------- /maps/tests/Outline/outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Outline/outline.json -------------------------------------------------------------------------------- /maps/tests/Outline/outline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Outline/outline.php -------------------------------------------------------------------------------- /maps/tests/Properties/exitSceneUrl1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Properties/exitSceneUrl1.json -------------------------------------------------------------------------------- /maps/tests/Properties/exitSceneUrl2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Properties/exitSceneUrl2.json -------------------------------------------------------------------------------- /maps/tests/Properties/mapProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Properties/mapProperties.json -------------------------------------------------------------------------------- /maps/tests/SoundScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/SoundScript.js -------------------------------------------------------------------------------- /maps/tests/SoundTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/SoundTest.json -------------------------------------------------------------------------------- /maps/tests/TriggerMessageApi/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/TriggerMessageApi/script.js -------------------------------------------------------------------------------- /maps/tests/TriggerMessageApi/triggerMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/TriggerMessageApi/triggerMessage.json -------------------------------------------------------------------------------- /maps/tests/Validation/16x16_Dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/16x16_Dungeon.png -------------------------------------------------------------------------------- /maps/tests/Validation/4096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/4096.json -------------------------------------------------------------------------------- /maps/tests/Validation/4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/4096.png -------------------------------------------------------------------------------- /maps/tests/Validation/CollidesFalse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/CollidesFalse.json -------------------------------------------------------------------------------- /maps/tests/Validation/Infini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/Infini.json -------------------------------------------------------------------------------- /maps/tests/Validation/NoCollides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/NoCollides.json -------------------------------------------------------------------------------- /maps/tests/Validation/NoImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/NoImage.json -------------------------------------------------------------------------------- /maps/tests/Validation/Validation0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/Validation0.json -------------------------------------------------------------------------------- /maps/tests/Validation/Yellow Dungeon Tileset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/Yellow Dungeon Tileset.jpg -------------------------------------------------------------------------------- /maps/tests/Validation/dungeon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/dungeon.tsx -------------------------------------------------------------------------------- /maps/tests/Validation/embarquer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/embarquer.json -------------------------------------------------------------------------------- /maps/tests/Validation/floorLayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/floorLayer.json -------------------------------------------------------------------------------- /maps/tests/Validation/floortileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/floortileset.png -------------------------------------------------------------------------------- /maps/tests/Validation/layerProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/layerProperties.json -------------------------------------------------------------------------------- /maps/tests/Validation/orientation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/orientation.json -------------------------------------------------------------------------------- /maps/tests/Validation/simplicity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/simplicity.json -------------------------------------------------------------------------------- /maps/tests/Validation/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/start.json -------------------------------------------------------------------------------- /maps/tests/Validation/tileheight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/tileheight.json -------------------------------------------------------------------------------- /maps/tests/Validation/tileset_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Validation/tileset_dungeon.png -------------------------------------------------------------------------------- /maps/tests/Variables/Cache/.gitignore: -------------------------------------------------------------------------------- 1 | variables_tmp.json 2 | -------------------------------------------------------------------------------- /maps/tests/Variables/Cache/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/Cache/script.js -------------------------------------------------------------------------------- /maps/tests/Variables/Cache/variables_cache_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/Cache/variables_cache_1.json -------------------------------------------------------------------------------- /maps/tests/Variables/E2ETests/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/E2ETests/script.js -------------------------------------------------------------------------------- /maps/tests/Variables/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/script.js -------------------------------------------------------------------------------- /maps/tests/Variables/shared_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/shared_variables.json -------------------------------------------------------------------------------- /maps/tests/Variables/shared_variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/shared_variables.php -------------------------------------------------------------------------------- /maps/tests/Variables/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Variables/variables.json -------------------------------------------------------------------------------- /maps/tests/Win.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/Win.ogg -------------------------------------------------------------------------------- /maps/tests/animated_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/animated_tiles.json -------------------------------------------------------------------------------- /maps/tests/animated_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/animated_tiles.png -------------------------------------------------------------------------------- /maps/tests/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/audio.json -------------------------------------------------------------------------------- /maps/tests/autoresize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/autoresize.json -------------------------------------------------------------------------------- /maps/tests/deprecated_functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/deprecated_functions.json -------------------------------------------------------------------------------- /maps/tests/deprecated_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/deprecated_script.js -------------------------------------------------------------------------------- /maps/tests/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/emoji.json -------------------------------------------------------------------------------- /maps/tests/energy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/energy.json -------------------------------------------------------------------------------- /maps/tests/exit1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/exit1.json -------------------------------------------------------------------------------- /maps/tests/exit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/exit2.json -------------------------------------------------------------------------------- /maps/tests/focusable_zone_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/focusable_zone_map.json -------------------------------------------------------------------------------- /maps/tests/function_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/function_tiles.json -------------------------------------------------------------------------------- /maps/tests/function_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/function_tiles.png -------------------------------------------------------------------------------- /maps/tests/goToPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/goToPage.json -------------------------------------------------------------------------------- /maps/tests/goToPageScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/goToPageScript.js -------------------------------------------------------------------------------- /maps/tests/grouped_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/grouped_map.json -------------------------------------------------------------------------------- /maps/tests/help_camera_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/help_camera_setting.json -------------------------------------------------------------------------------- /maps/tests/iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/iframe.php -------------------------------------------------------------------------------- /maps/tests/iframe_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/iframe_api.json -------------------------------------------------------------------------------- /maps/tests/inactive_tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/inactive_tabs.json -------------------------------------------------------------------------------- /maps/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/index.html -------------------------------------------------------------------------------- /maps/tests/jitsi_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/jitsi_config.json -------------------------------------------------------------------------------- /maps/tests/jitsi_custom_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/jitsi_custom_url.json -------------------------------------------------------------------------------- /maps/tests/layer-visibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/layer-visibility.json -------------------------------------------------------------------------------- /maps/tests/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/mobile.json -------------------------------------------------------------------------------- /maps/tests/mobile_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/mobile_video.json -------------------------------------------------------------------------------- /maps/tests/mousewheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/mousewheel.json -------------------------------------------------------------------------------- /maps/tests/reconnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/reconnection.json -------------------------------------------------------------------------------- /maps/tests/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/script.js -------------------------------------------------------------------------------- /maps/tests/script_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/script_api.json -------------------------------------------------------------------------------- /maps/tests/start-tile-teleport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/start-tile-teleport.json -------------------------------------------------------------------------------- /maps/tests/start-tile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/start-tile.json -------------------------------------------------------------------------------- /maps/tests/text_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/text_object.json -------------------------------------------------------------------------------- /maps/tests/tileset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/tileset1.png -------------------------------------------------------------------------------- /maps/tests/webrtc-in.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/webrtc-in.mp3 -------------------------------------------------------------------------------- /maps/tests/webrtc-out.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tests/webrtc-out.mp3 -------------------------------------------------------------------------------- /maps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/tsconfig.json -------------------------------------------------------------------------------- /maps/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/maps/yarn.lock -------------------------------------------------------------------------------- /messages/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/bundle.js 3 | /yarn-error.log 4 | /Dockerfile 5 | -------------------------------------------------------------------------------- /messages/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /messages/.prettierignore: -------------------------------------------------------------------------------- 1 | generated 2 | -------------------------------------------------------------------------------- /messages/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/.prettierrc.json -------------------------------------------------------------------------------- /messages/JsonMessages/AdminApiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/JsonMessages/AdminApiData.ts -------------------------------------------------------------------------------- /messages/JsonMessages/CharacterTexture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/JsonMessages/CharacterTexture.ts -------------------------------------------------------------------------------- /messages/JsonMessages/MapDetailsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/JsonMessages/MapDetailsData.ts -------------------------------------------------------------------------------- /messages/JsonMessages/RegisterData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/JsonMessages/RegisterData.ts -------------------------------------------------------------------------------- /messages/JsonMessages/RoomRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/JsonMessages/RoomRedirect.ts -------------------------------------------------------------------------------- /messages/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/LICENSE.txt -------------------------------------------------------------------------------- /messages/generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /messages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/package.json -------------------------------------------------------------------------------- /messages/protos/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/protos/messages.proto -------------------------------------------------------------------------------- /messages/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/messages/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/package.json -------------------------------------------------------------------------------- /pusher/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/.dockerignore -------------------------------------------------------------------------------- /pusher/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/.eslintrc.json -------------------------------------------------------------------------------- /pusher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/.gitignore -------------------------------------------------------------------------------- /pusher/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/.prettierignore -------------------------------------------------------------------------------- /pusher/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/.prettierrc.json -------------------------------------------------------------------------------- /pusher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/Dockerfile -------------------------------------------------------------------------------- /pusher/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/Dockerfile.prod -------------------------------------------------------------------------------- /pusher/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/LICENSE.txt -------------------------------------------------------------------------------- /pusher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/README.md -------------------------------------------------------------------------------- /pusher/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/jasmine.json -------------------------------------------------------------------------------- /pusher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/package.json -------------------------------------------------------------------------------- /pusher/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/server.ts -------------------------------------------------------------------------------- /pusher/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/App.ts -------------------------------------------------------------------------------- /pusher/src/Controller/AdminController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/AdminController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/AuthenticateController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/AuthenticateController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/BaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/BaseController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/DebugController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/DebugController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/InvalidTokenError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/InvalidTokenError.ts -------------------------------------------------------------------------------- /pusher/src/Controller/IoSocketController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/IoSocketController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/MapController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/MapController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/OpenIdProfileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/OpenIdProfileController.ts -------------------------------------------------------------------------------- /pusher/src/Controller/PrometheusController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Controller/PrometheusController.ts -------------------------------------------------------------------------------- /pusher/src/Enum/EnvironmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Enum/EnvironmentVariable.ts -------------------------------------------------------------------------------- /pusher/src/Messages/.gitignore: -------------------------------------------------------------------------------- 1 | /generated/ 2 | -------------------------------------------------------------------------------- /pusher/src/Messages/JsonMessages/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pusher/src/Model/Movable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Movable.ts -------------------------------------------------------------------------------- /pusher/src/Model/PositionDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/PositionDispatcher.ts -------------------------------------------------------------------------------- /pusher/src/Model/PositionInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/PositionInterface.ts -------------------------------------------------------------------------------- /pusher/src/Model/PusherRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/PusherRoom.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/ExSocketInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/ExSocketInterface.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/Identificable.ts: -------------------------------------------------------------------------------- 1 | export interface Identificable { 2 | userId: number; 3 | } 4 | -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/ItemEventMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/ItemEventMessage.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/Point.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/PointInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/PointInterface.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/ProtobufUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/ProtobufUtils.ts -------------------------------------------------------------------------------- /pusher/src/Model/Websocket/ViewportMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Websocket/ViewportMessage.ts -------------------------------------------------------------------------------- /pusher/src/Model/Zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Model/Zone.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/app.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/baseapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/baseapp.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/formdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/formdata.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/sslapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/sslapp.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/types.ts -------------------------------------------------------------------------------- /pusher/src/Server/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/server/utils.ts -------------------------------------------------------------------------------- /pusher/src/Server/sifrr.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Server/sifrr.server.ts -------------------------------------------------------------------------------- /pusher/src/Services/AdminApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/AdminApi.ts -------------------------------------------------------------------------------- /pusher/src/Services/ApiClientRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/ApiClientRepository.ts -------------------------------------------------------------------------------- /pusher/src/Services/ArrayHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/ArrayHelper.ts -------------------------------------------------------------------------------- /pusher/src/Services/ClientEventsEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/ClientEventsEmitter.ts -------------------------------------------------------------------------------- /pusher/src/Services/CpuTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/CpuTracker.ts -------------------------------------------------------------------------------- /pusher/src/Services/GaugeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/GaugeManager.ts -------------------------------------------------------------------------------- /pusher/src/Services/IoSocketHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/IoSocketHelpers.ts -------------------------------------------------------------------------------- /pusher/src/Services/JWTTokenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/JWTTokenManager.ts -------------------------------------------------------------------------------- /pusher/src/Services/OpenIDClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/OpenIDClient.ts -------------------------------------------------------------------------------- /pusher/src/Services/SocketManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/src/Services/SocketManager.ts -------------------------------------------------------------------------------- /pusher/tests/ArrayHelperTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/tests/ArrayHelperTest.ts -------------------------------------------------------------------------------- /pusher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/tsconfig.json -------------------------------------------------------------------------------- /pusher/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/pusher/yarn.lock -------------------------------------------------------------------------------- /screens/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/1.png -------------------------------------------------------------------------------- /screens/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/2.png -------------------------------------------------------------------------------- /screens/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/3.png -------------------------------------------------------------------------------- /screens/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/4.png -------------------------------------------------------------------------------- /screens/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/5.png -------------------------------------------------------------------------------- /screens/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/6.png -------------------------------------------------------------------------------- /screens/Aboul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Aboul.png -------------------------------------------------------------------------------- /screens/Aymen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Aymen.png -------------------------------------------------------------------------------- /screens/Brainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Brainy.png -------------------------------------------------------------------------------- /screens/Devfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Devfest.png -------------------------------------------------------------------------------- /screens/Devfest_Tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Devfest_Tshirt.png -------------------------------------------------------------------------------- /screens/GDG T-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/GDG T-shirt.png -------------------------------------------------------------------------------- /screens/GDG_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/GDG_short.png -------------------------------------------------------------------------------- /screens/Ouardia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Ouardia.png -------------------------------------------------------------------------------- /screens/Sohaib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/Sohaib.png -------------------------------------------------------------------------------- /screens/WTM_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/WTM_short.png -------------------------------------------------------------------------------- /screens/WTM_tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/WTM_tshirt.png -------------------------------------------------------------------------------- /screens/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/h1.png -------------------------------------------------------------------------------- /screens/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/h2.png -------------------------------------------------------------------------------- /screens/lenght.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/lenght.PNG -------------------------------------------------------------------------------- /screens/permission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/permission.jpg -------------------------------------------------------------------------------- /screens/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/t1.png -------------------------------------------------------------------------------- /screens/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/screens/t2.png -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /tests/.testcaferc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/.testcaferc.js -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/package-lock.json -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/tests/reconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/reconnect.ts -------------------------------------------------------------------------------- /tests/tests/utils/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/utils/containers.ts -------------------------------------------------------------------------------- /tests/tests/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/utils/debug.ts -------------------------------------------------------------------------------- /tests/tests/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/utils/log.ts -------------------------------------------------------------------------------- /tests/tests/utils/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/utils/roles.ts -------------------------------------------------------------------------------- /tests/tests/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/tests/tests/variables.ts -------------------------------------------------------------------------------- /uploader/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/.eslintrc.json -------------------------------------------------------------------------------- /uploader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/.gitignore -------------------------------------------------------------------------------- /uploader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/Dockerfile -------------------------------------------------------------------------------- /uploader/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/LICENSE.txt -------------------------------------------------------------------------------- /uploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/README.md -------------------------------------------------------------------------------- /uploader/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/jasmine.json -------------------------------------------------------------------------------- /uploader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/package.json -------------------------------------------------------------------------------- /uploader/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/server.ts -------------------------------------------------------------------------------- /uploader/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/App.ts -------------------------------------------------------------------------------- /uploader/src/Controller/BaseController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Controller/BaseController.ts -------------------------------------------------------------------------------- /uploader/src/Controller/FileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Controller/FileController.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/app.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/baseapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/baseapp.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/formdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/formdata.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/sslapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/sslapp.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/types.ts -------------------------------------------------------------------------------- /uploader/src/Server/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/server/utils.ts -------------------------------------------------------------------------------- /uploader/src/Server/sifrr.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/src/Server/sifrr.server.ts -------------------------------------------------------------------------------- /uploader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/tsconfig.json -------------------------------------------------------------------------------- /uploader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/uploader/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/welcomeday_platform/HEAD/yarn.lock --------------------------------------------------------------------------------