corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 74  →  ?path2? @ 73
File deleted
/plotMapAvatars/composer.lock
File deleted
/plotMapAvatars/composer.json
/plotMapAvatars/functions.php
@@ -0,0 +1,88 @@
<?php
 
###########################################################################
## Copyright (C) Wizardry and Steamworks 2015 - License: GNU GPLv3 ##
###########################################################################
function wasKeyValueGet($key, $data) {
return array_reduce(
explode(
"&",
$data
),
function($o, $p) {
$x = explode("=", $p);
return array_shift($x) != $o ? $o : array_shift($x);
},
$key
);
}
///////////////////////////////////////////////////////////////////////////
// Copyright (C) Wizardry and Steamworks 2015 - License: GNU GPLv3 //
///////////////////////////////////////////////////////////////////////////
function wasCSVToArray($csv) {
$l = array();
$s = array();
$m = "";
for ($i = 0; $i < strlen($csv); ++$i) {
switch ($csv[$i]) {
case ',':
if (sizeof($s) == 0 || !current($s) == '"') {
array_push($l, $m);
$m = "";
break;
}
$m .= $csv[$i];
continue;
case '"':
if ($i + 1 < strlen($csv) && $csv[$i] == $csv[$i + 1]) {
$m .= $csv[$i];
++$i;
break;
}
if (sizeof($s) == 0|| !current($s) == $csv[$i]) {
array_push($s, $csv[$i]);
continue;
}
array_pop($s);
break;
default:
$m .= $csv[$i];
break;
}
}
array_push($l, $m);
return $l;
}
 
##########################################################################
## Copyright (C) Wizardry and Steamworks 2015 - License: GNU GPLv3 ##
###########################################################################
function mapValueToRange($value, $xMin, $xMax, $yMin, $yMax) {
return $yMin + (
(
$yMax - $yMin
)
*
(
$value - $xMin
)
/
(
$xMax - $xMin
)
);
}
 
###########################################################################
## Copyright (C) Wizardry and Steamworks 2015 - License: GNU GPLv3 ##
###########################################################################
function wasLSLVectorToArray($vector) {
$components = array();
if(!preg_match(
"/^<\s*([0-9\.]+?)\s*,\s*([0-9\.]+?)\s*,\s*([0-9\.]+?)\s*>$/",
$vector,
$components
)) return;
array_shift($components);
return $components;
}
/plotMapAvatars/README.txt
@@ -8,24 +8,18 @@
* A modern browser: Chome, Opera, Firefox, Safari...
* A webserver.
* PHP version 5 and beyond.
* the PHP gd extension (libgd).
* the PHP curl extension.
* PHP composer.
* the gd extension (libgd).
* the curl extension.
-:[ Setup ]:-
 
1.) Run the following command inside the directory:
 
composer require was/utilities:dev-trunk
 
in order to install all the requirements.
2.) Rename "config.php.dist" to "config.php" and edit "config.php"
to reflect your Corrade settings.
3.) Enable the Corrade permissions for your configured group:
1.) Rename "config.php.dist" to "config.php" and edit "config.php"
to reflect your settings in Corrade.ini
2.) Enable the Corrade permissions for your configured group:
* land
* interact
4.) Place the all the files in a directory on your webserver.
5.) Navigate using a browser to plotMapAvatars.html and enjoy.
3.) Place the all the files in a directory on your webserver.
4.) Navigate using a browser to plotMapAvatars.html and enjoy.
 
-:[ References ]:-
 
/plotMapAvatars/plotMapAvatars.html
@@ -9,7 +9,7 @@
<meta name="description" content="Display Avatars moving in Real-Time on the Map">
<meta name="author" content="Wizardry and Steamworks">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
function requestAvatarPositions() {
/plotMapAvatars/plotMapAvatars.php
@@ -15,10 +15,7 @@
###########################################################################
 
require_once('config.php');
require_once('vendor/was/utilities/src/formats/kvp/kvp.php');
require_once('vendor/was/utilities/src/formats/csv/csv.php');
require_once('vendor/was/utilities/src/mathematics/algebra.php');
require_once('vendor/was/utilities/src/lsl/lsl.php');
require_once('functions.php');
 
###########################################################################
## INTERNALS ##