Compare commits
2 Commits
95a12398e1
...
cd9ca9500f
Author | SHA1 | Date | |
---|---|---|---|
|
cd9ca9500f | ||
|
d7a22d84f2 |
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
engine
|
||||
scratch
|
||||
maps/binary_kitchen
|
||||
maps/rc3-Continent
|
||||
maps/world-map-starterkit
|
|
@ -157,7 +157,7 @@
|
|||
{
|
||||
"name":"exitUrl",
|
||||
"type":"string",
|
||||
"value":"cellar\/01\/01.json#start"
|
||||
"value":"cellar\/01\/01.php#start"
|
||||
}],
|
||||
"type":"tilelayer",
|
||||
"visible":true,
|
||||
|
|
|
@ -4,7 +4,5 @@
|
|||
RewriteEngine On
|
||||
|
||||
# replace name.number.php --> name.php
|
||||
#RewriteRule ^(.+)\.\d+\.php$ $1.php
|
||||
RewriteRule ^(.+)\.\d+\.php$ $1.php
|
||||
|
||||
# replace name.number.php --> uncache.php?taget=name
|
||||
RewriteRule ^(.+)\.\d+\.php$ uncache.php?target=$1
|
|
@ -229,7 +229,7 @@
|
|||
{
|
||||
"name":"playAudio",
|
||||
"type":"string",
|
||||
"value":"switch.mp3"
|
||||
"value":"switch.php"
|
||||
}],
|
||||
"type":"tilelayer",
|
||||
"visible":true,
|
||||
|
|
|
@ -28,7 +28,11 @@ file_put_contents("$sub"."/01_closed.json", $data);
|
|||
$data = file_get_contents("01.json");
|
||||
$data = str_replace("01.php#", "$sub"."/"."01.php#", $data);
|
||||
|
||||
header("Expires: 0");
|
||||
// Patch php filenames with timestamps to defeat cache
|
||||
// destination.php --> destination.number.php
|
||||
$tstamp = round(microtime(true)*100); # 0.01 sec resolution
|
||||
$data = str_replace(".php", ".".$tstamp.".php", $data);
|
||||
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
{
|
||||
"name":"playAudio",
|
||||
"type":"string",
|
||||
"value":"switch.mp3"
|
||||
"value":"switch.php"
|
||||
}],
|
||||
"type":"tilelayer",
|
||||
"visible":true,
|
||||
|
|
|
@ -7,7 +7,11 @@ $switch = $state["switch"];
|
|||
# Load open/closed level depending on switch
|
||||
$data = file_get_contents( $switch ? "01.json" : "01_closed.json");
|
||||
|
||||
header("Expires: 0");
|
||||
// Patch php filenames with timestamps to defeat cache
|
||||
// destination.php --> destination.number.php
|
||||
$tstamp = round(microtime(true)*100); # 0.01 sec resolution
|
||||
$data = str_replace(".php", ".".$tstamp.".php", $data);
|
||||
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
||||
|
|
|
@ -2,5 +2,10 @@
|
|||
$state = json_decode(file_get_contents("state.json"), true);
|
||||
$state["switch"] = 1;
|
||||
file_put_contents("state.json", json_encode($state));
|
||||
|
||||
# Load current level and patch exits to target the copy
|
||||
$data = file_get_contents("switch.mp3");
|
||||
header('Content-type: audio/mpeg');
|
||||
echo($data);
|
||||
exit;
|
||||
?>
|
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
if (isset($_COOKIE["TestCookie"]))
|
||||
echo "TestCookie=".$_COOKIE["TestCookie"];
|
||||
|
||||
$cookieval = "cookie_".time();
|
||||
setcookie("TestCookie", $cookieval, time()+3600*24);
|
||||
exit;
|
||||
?>
|
|
@ -1,39 +0,0 @@
|
|||
<?php
|
||||
// Workadventure cache destroyer
|
||||
|
||||
// URL rewrite rule calls us with the original filename in URL paramter "target"
|
||||
if (!isset($_GET['target'])) {
|
||||
echo("No target");
|
||||
exit;
|
||||
}
|
||||
$target = $_GET["target"];
|
||||
|
||||
if (file_exists($target.".php"))
|
||||
{
|
||||
// If a PHP file target.php exists:
|
||||
// Run that file and capture its output
|
||||
ob_start();
|
||||
include $target.".php";
|
||||
ob_end_flush();
|
||||
}
|
||||
else
|
||||
{
|
||||
// If no PHP file target.php exists:
|
||||
// Load contents from target.json
|
||||
if (!file_exists($target.".json"))
|
||||
{
|
||||
echo($target.".json"." not found.");
|
||||
exit;
|
||||
}
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
}
|
||||
|
||||
// Replace map exit names with timestamps:
|
||||
// destination.php#start --> destination.number.php#start
|
||||
$tstamp = round(microtime(true)*100); # 0.01 sec resolution
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
header("Expires: 0");
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
||||
?>
|
|
@ -4,7 +4,5 @@
|
|||
RewriteEngine On
|
||||
|
||||
# replace name.number.php --> name.php
|
||||
#RewriteRule ^(.+)\.\d+\.php$ $1.php
|
||||
RewriteRule ^(.+)\.\d+\.php$ $1.php
|
||||
|
||||
# replace name.number.php --> uncache.php?taget=name
|
||||
RewriteRule ^(.+)\.\d+\.php$ uncache.php?target=$1
|
|
@ -8,7 +8,6 @@ exec("python genmaze.py ".$name);
|
|||
$data = file_get_contents($name);
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
|
||||
header("Expires: 0");
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
||||
|
|
|
@ -3,7 +3,6 @@ $tstamp = round(microtime(true)*100); // 0.01 sec resolution
|
|||
$data = file_get_contents('left.json');
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
|
||||
header("Expires: 0");
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
|
@ -2,7 +2,6 @@
|
|||
$data = file_get_contents('right.json');
|
||||
$tstamp = round(microtime(true)*100); # 0.01 sec resolution
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
header("Expires: 0");
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
|
@ -2,37 +2,37 @@
|
|||
// Workadventure cache destroyer
|
||||
|
||||
// URL rewrite rule calls us with the original filename in URL paramter "target"
|
||||
if (!isset($_GET['target'])) {
|
||||
if (!isset($_GET['target'])) {
|
||||
echo("No target");
|
||||
exit;
|
||||
}
|
||||
$target = $_GET["target"];
|
||||
|
||||
if (file_exists($target.".php"))
|
||||
{
|
||||
if (file_exists($target.".php")) {
|
||||
// If a PHP file target.php exists:
|
||||
// Run that file and capture its output
|
||||
ob_start();
|
||||
include $target.".php";
|
||||
ob_end_flush();
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
// If no PHP file target.php exists:
|
||||
// Load contents from target.json
|
||||
if (!file_exists($target.".json"))
|
||||
{
|
||||
if (file_exists($target.".json"))
|
||||
$data = file_get_contents($target.".json");
|
||||
else {
|
||||
echo($target.".json"." not found.");
|
||||
exit;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Replace map exit names with timestamps:
|
||||
// destination.php#start --> destination.number.php#start
|
||||
$tstamp = round(microtime(true)*100); # 0.01 sec resolution
|
||||
$data = str_replace(".php#", ".".$tstamp.".php#", $data); // Patch php-exits to prevent caching
|
||||
header("Expires: 0");
|
||||
|
||||
header('Content-type: application/json');
|
||||
echo($data);
|
||||
exit;
|
||||
?>
|
||||
?>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
"height": 4300,
|
||||
"width": 2
|
||||
},
|
||||
"activeFile": "cellar/01/01.json",
|
||||
"activeFile": "garden.json",
|
||||
"expandedProjectPaths": [
|
||||
"cellar/01",
|
||||
"randmaze",
|
||||
"tiles",
|
||||
".",
|
||||
"cellar",
|
||||
"randmaze"
|
||||
"cellar/01"
|
||||
],
|
||||
"file.lastUsedOpenFilter": "Alle Dateien (*)",
|
||||
"fileStates": {
|
||||
|
@ -87,10 +86,10 @@
|
|||
},
|
||||
"cellar.json": {
|
||||
"scale": 1.5,
|
||||
"selectedLayer": 3,
|
||||
"selectedLayer": 9,
|
||||
"viewCenter": {
|
||||
"x": 3478.333333333333,
|
||||
"y": 176.3333333333333
|
||||
"x": 3826.333333333333,
|
||||
"y": 127.66666666666669
|
||||
}
|
||||
},
|
||||
"cellar.json#cija": {
|
||||
|
@ -101,7 +100,7 @@
|
|||
},
|
||||
"cellar/01/01.json": {
|
||||
"scale": 1,
|
||||
"selectedLayer": 0,
|
||||
"selectedLayer": 10,
|
||||
"viewCenter": {
|
||||
"x": 553.5,
|
||||
"y": 550.5
|
||||
|
@ -112,9 +111,9 @@
|
|||
},
|
||||
"cellar/01/01_closed.json": {
|
||||
"scale": 0.8465435606060606,
|
||||
"selectedLayer": 0,
|
||||
"selectedLayer": 12,
|
||||
"viewCenter": {
|
||||
"x": 528.6201689132502,
|
||||
"x": 527.4388947927736,
|
||||
"y": 401.0425639017842
|
||||
}
|
||||
},
|
||||
|
@ -145,10 +144,10 @@
|
|||
},
|
||||
"garden.json": {
|
||||
"scale": 0.5,
|
||||
"selectedLayer": 10,
|
||||
"selectedLayer": 18,
|
||||
"viewCenter": {
|
||||
"x": 497,
|
||||
"y": 1023
|
||||
"x": 453,
|
||||
"y": 1021
|
||||
}
|
||||
},
|
||||
"garden.json#cija": {
|
||||
|
@ -191,7 +190,7 @@
|
|||
"selectedLayer": 6,
|
||||
"viewCenter": {
|
||||
"x": 511.0390289839908,
|
||||
"y": 527.0607931359214
|
||||
"y": 527.61326776185
|
||||
}
|
||||
},
|
||||
"gmaze/gmaze.json#cija": {
|
||||
|
@ -246,8 +245,8 @@
|
|||
"scale": 1.5,
|
||||
"selectedLayer": 6,
|
||||
"viewCenter": {
|
||||
"x": 207.66666666666663,
|
||||
"y": 208
|
||||
"x": 207.66666666666666,
|
||||
"y": 208.3333333333333
|
||||
}
|
||||
},
|
||||
"gmaze/right.json#cija": {
|
||||
|
@ -433,11 +432,11 @@
|
|||
"scaleInDock": 1
|
||||
},
|
||||
"lobby.json": {
|
||||
"scale": 0.75,
|
||||
"selectedLayer": 9,
|
||||
"scale": 0.33,
|
||||
"selectedLayer": 10,
|
||||
"viewCenter": {
|
||||
"x": 911.3333333333334,
|
||||
"y": 434
|
||||
"x": 1022.7272727272727,
|
||||
"y": 512.121212121212
|
||||
}
|
||||
},
|
||||
"lobby.json#mapUtilities": {
|
||||
|
@ -782,7 +781,7 @@
|
|||
"selectedLayer": 8,
|
||||
"viewCenter": {
|
||||
"x": 287.5,
|
||||
"y": 287.5
|
||||
"y": 288
|
||||
}
|
||||
},
|
||||
"warp.json#ir_logo_set": {
|
||||
|
@ -864,23 +863,24 @@
|
|||
"warp.json",
|
||||
"cellar/01/01.json",
|
||||
"tiles/mapUtilities.json",
|
||||
"cellar/01/01_closed.json"
|
||||
"cellar/01/01_closed.json",
|
||||
"tiles/cija.json"
|
||||
],
|
||||
"project": "ir.tiled-project",
|
||||
"property.type": "string",
|
||||
"recentFiles": [
|
||||
"cellar.json",
|
||||
"lobby.json",
|
||||
"garden.json",
|
||||
"warp.json",
|
||||
"tiles/cija.json",
|
||||
"cellar/01/01_closed.json",
|
||||
"tiles/mapUtilities.json",
|
||||
"cellar/01/01.json",
|
||||
"warp.json",
|
||||
"garden.json",
|
||||
"cellar/01/02_open.json",
|
||||
"cellar/01/02_closed.json",
|
||||
"gmaze/gmaze.json",
|
||||
"tiles/warntape.json",
|
||||
"gmaze/gmaze__template.json"
|
||||
"tiles/warntape.json"
|
||||
],
|
||||
"tileset.lastUsedFormat": "json"
|
||||
}
|
||||
|
|
23
rc3_notes.md
23
rc3_notes.md
|
@ -162,21 +162,14 @@
|
|||
* Workaround: Dynamische einamalige Dateinamen für Maps
|
||||
* Nachteil: Jeder Spieler bekommt eine andere Map, kein Multiplayer mehr
|
||||
* Funktioniert nur für Maps, nicht für Audio-Events
|
||||
* Implementierung A:
|
||||
* Implementierung:
|
||||
(1) Wenn eine Karte map.php aufgerufen wird:
|
||||
* Lade map.json
|
||||
* Ersetze alle Exit-URLs der Form dest.php#start --> dest.timestamp.php#start
|
||||
(dest.json wird so gelassen, damit man wieder in Multiplayer-Maps zurück kann).
|
||||
(2) URL-Rewrite rule via .htaccess: Entferne timestamp
|
||||
RewriteRule ^(.+)\.\d+\.php$ $1.php
|
||||
* Implementierung B (timestamp-patching ausgelagert in eigenes file):
|
||||
(1) URL-Rewrite: Entferne timestamp und übergebe Mapnamen an uncache.php via URL-Parameter
|
||||
RewriteRule ^(.+)\.\d+\.php$ uncache.php?target=$1
|
||||
(2) In uncache.php:
|
||||
* Wenn es target.php gibt, dann rufe diese auf und fange ihren output ab.
|
||||
* sonst lade target.json
|
||||
* Patch Exit-URLS mit timestamp.
|
||||
|
||||
|
||||
|
||||
* Cache deaktivieren Engineseitig:
|
||||
* Karten beim betreten neu laden
|
||||
|
@ -228,4 +221,16 @@
|
|||
Für lokale Tests: Domains in /etc/hosts bzw. C:/windows/system32/drivers/etc/hosts eintragen
|
||||
|
||||
|
||||
https://xn--han-7ka.de/s/b3SKomnirgisMc9
|
||||
https://play.workadventu.re/_/global/devlol-systems.pages.devlol.org/vspace-workadv/vspace.json
|
||||
Du kannst dich gern mit mir vernetzen alexander@m4h.network bzw. alexander.stellmach@ose-germany.de
|
||||
https://nemo.jstsmthrgk.eu/files/rc3graph.svg
|
||||
https://play.workadventu.re/_/global/simondueckert.github.io/nuedigital/map.json
|
||||
https://miro.com/app/board/o9J_laWLPI8=/
|
||||
https://gitlab.com/fediventure/workadventure/-/tree/feature/federation/
|
||||
https://gitlab.com/fediventure/fediventure/-/issues/2
|
||||
https://git.devlol.org/devlol-systems/vspace-workadv/-/blob/master/.gitlab-ci.yml
|
||||
https://obs.ninja/?view=8iiMHZa
|
||||
https://github.com/tehwalris/vertiled
|
||||
https://miro.com/app/board/o9J_laWLPI8=/
|
||||
|
Loading…
Reference in New Issue
Block a user