annotate index.php @ 18:716329d47372

Serialization and saveblob generation. Not complete yet.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 10 Jan 2011 11:30:49 +0200
parents bd6e836f9641
children 4add67f75075
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 <?
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
2 $pageTitle = "Pupunen BatMUD Container Command Creator ALPHA";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 $pageIndex = "index.php";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 require "mcommon.inc.php";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
6
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
7 // Multi-stack item fixups
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
8 $fixItemTable = array(
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
9 "(purple|green) gloves" => 'a ${1} glove',
5
af0b958a6e17 Bugfix.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
10 "bracelet mades of green crystal" => "bracelet made of green crystal",
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
11 "alchemist moulded rings" => "alchemist moulded ring",
14
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
12
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
13 // Generic rings
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
14 "(heavy black metal|steel) rings" => "a ${1} ring",
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
15
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
16 // Damiens
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
17 "arm protectors called Damien \(\S+\)" => "an arm protector called Damien (${1})",
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
18
14
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
19 // Containers
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
20 "white cloth packs for holding salves" => "white cloth pack for holding salves",
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
21 "(small|HUGE) shiny boxes for storing minerals" => 'a ${1} shiny box for storing minerals',
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
22 "(small|HUGE) sturdy packs for storing potions" => 'a ${1} sturdy pack for storing potions',
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
23 );
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
24
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
25
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
26 $fixNumbers = array(
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
27 "one" => 1, "two" => 2, "three" => 3, "four" => 4,
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
28 "five" => 5, "six" => 6, "seven" => 7, "eight" => 8,
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
29 "nine" => 9, "ten" => 10
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
30 );
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
31
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
32
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 function getJSArraySegment($arr)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 $str = "";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36 foreach ($arr as $item) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 if ($str != "") $str .= ", ";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 if (is_array($item))
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 $str .= "[".getJSArraySegment($item)."]";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40 else
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 $str .= "\"".addslashes($item)."\"";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 return $str;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
47 function printInputField($id, $label, $len, $value = "")
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 {
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
49 global $jsData;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
50 $jsData .= "document.getElementById(\"".$id."\").value = \"".$value."\";\n";
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
51
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
52 echo "<label for=\"".$id."\">".htmlentities($label).": </label>".
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
53 "<input type=\"text\" name=\"".$id."\" maxlength=\"".$len.
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
54 "\" size=\"".$len."\" id=\"".$id."\" value=\"".htmlentities($value)."\" />\n";
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
55 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
56
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
57 function printCheckBox($id, $label, $value = FALSE)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
58 {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
59 global $jsData;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
60 $jsData .= "document.getElementById(\"".$id."\").checked = ".($value ? "true" : "false").";\n";
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
61
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
62 echo "<input type=\"checkbox\" id=\"".$id."\" value=\"".$value."\" ".($value ? "checked=\"checked\"" : "")." />".
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
63 "<label for=\"".$id."\">".htmlentities($label)."</label>";
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
64 }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
65
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
66 function printOptionSelect($id, $size, $multi = FALSE)
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
67 {
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
68 echo "<select ".($multi ? " multiple=\"multiple\"" : "")." size=\"".$size."\" id=\"".$id."\"><option></option></select>";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
69 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
72 if (isset($_POST["mode"])) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
73 $formMode = intval($_POST["mode"]);
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
74 } else
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
75 $formMode = 0;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
76
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
77
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
78 printPageHeader($pageTitle, "
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
79 <style type=\"text/css\">
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
80 <!--
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
81 .buttons { width: 100%; }
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
82 select { width: 100%; }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
83
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
84 div.options, #commands, #status {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
85 background: #268;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
86 border: 1px solid white;
11
fb503ee5489f Fix colours.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
87 color: white;
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
88 }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
89
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
90 div.options { display: none; position: fixed; top: 2em; left: 2em; padding: 1em; }
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
91
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
92 #commands { display: none; position: fixed; top: 2em; left: 2em; padding: 1em; z-index: 15; }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
93
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
94 #status { position: absolute; bottom: 1em; right: 1em; left: 1em; padding: 2pt; z-index: -1; }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
95 -->
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
96 </style>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
97 ");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
98 echo "<h1>".$pageTitle."</h1>\n";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
99
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
100
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
101 /*
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
102 * Initial mode, request item listing
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
103 */
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
104 if ($formMode == 0) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
105 ?>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
106 <noscript>
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
107 <p>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
108 <b>This application REQUIRES JavaScript to be enabled!</b>
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
109 </p>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
110 </noscript>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
111 <p>
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
112 <form action="<? echo $pageIndex; ?>" method="post">
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
113 <input type="hidden" value="YToxOntzOjU6Iml0ZW1zIjthOjQ3OntpOjA7czozODoiVGhlIHN0YWZmIG9mIExlcmV0aGluIGxhYmVsZWQgYXMgfEdncnwiO2k6MTtzOjM1OiJzd2lybGVkIGdyZWVuIHZlc3QgbGFiZWxlZCBhcyAoR2dyKSI7aToyO3M6Njk6ImEgd2VsbC1jcmFmdGVkIHBhaXIgb2Ygc3R1ZC1jb3ZlcmVkIGxlYXRoZXIgbGVnZ2luZ3MgbGFiZWxlZCBhcyAoR2dyKSI7aTozO3M6NTU6IlJpbmcgb2Ygd2lzZG9tIFtNYWRlIGJ5OiBOdWFuZV0gbGFiZWxlZCBhcyA2d2lzMWhwci9nZ3IiO2k6NDtzOjU0OiJzaGluaW5nIHJpbmcgY3JhZnRlZCBvdXQgb2YgbW9vbnN0b25lIGxhYmVsZWQgYXMgKEdncikiO2k6NTtzOjUxOiJHcmlteSBncmVhdCBjbG9hayBvZiB0cnVlIHNvcmNlcmVyIGxhYmVsZWQgYXMgfEdncnwiO2k6NjtzOjI5OiJhIGJsYWNrIGhvb2QgbGFiZWxlZCBhcyB8R2dyfCI7aTo3O3M6Mzg6InRoZSB0b21lIG9mIGtub3dsZWRnZSBsYWJlbGVkIGFzIChHZ3IpIjtpOjg7czo1MzoiaGVhdnkgdGFiYXJkIHdpdGggYSBjaGFsaWNlIGVuc2lnbmlhIGxhYmVsZWQgYXMgKEdncikiO2k6OTtzOjQ3OiJkYXJrIGdyZXkgYW5kIHdoaXRlIHBsYWlkIGtpbHQgbGFiZWxlZCBhcyAoR2dyKSI7aToxMDtzOjM4OiJzdHJvbmcgc2FwcGhpcmUgYm9vdHMgbGFiZWxlZCBhcyAoR2dyKSI7aToxMTtzOjI3OiJzdW4gYW11bGV0IGxhYmVsZWQgYXMgKEdncikiO2k6MTI7czo0MDoiQW5jaWVudCBCcmFjZXJzIG9mIFh6dWkgbGFiZWxlZCBhcyAoR2dyKSI7aToxMztzOjQyOiJnbGl0dGVyaW5nIGxlZyBwcm90ZWN0b3JzIGxhYmVsZWQgYXMgKEdncikiO2k6MTQ7czo0OToiYSBicmFjZWxldCBtYWRlIG9mIGdyZWVuIGNyeXN0YWwgbGFiZWxlZCBhcyAoR2dyKSI7aToxNTtzOjQ5OiJhIGJyYWNlbGV0IG1hZGUgb2YgZ3JlZW4gY3J5c3RhbCBsYWJlbGVkIGFzIChHZ3IpIjtpOjE2O3M6NDU6ImEgcmVpbmZvcmNlZCBicm9uemUgYnJhY2VsZXQgbGFiZWxlZCBhcyAoR2dyKSI7aToxNztzOjQyOiJ0aGUgQnJhY2VsZXRzIG9mIERhcmtuZXNzIGxhYmVsZWQgYXMgKEdncikiO2k6MTg7czozNDoiVGlidXJjaW8ncyBhbXVsZXQgbGFiZWxlZCBhcyAoR2dyKSI7aToxOTtzOjQ5OiJuZWNrbGFjZSBtYWRlIG91dCBvZiBzaGFycCBmYW5ncyBsYWJlbGVkIGFzIChHZ3IpIjtpOjIwO3M6NjI6ImEgZ2xpbW1lcmluZyBsZWF0aGVyIGJlbHQgd2l0aCBnZW0gZGVjb3JhdGlvbiBsYWJlbGVkIGFzIChHZ3IpIjtpOjIxO3M6NDE6ImEgaGVhdnkgYmxhY2sgbWV0YWwgcmluZyBsYWJlbGVkIGFzIChHZ3IpIjtpOjIyO3M6NDE6ImEgaGVhdnkgYmxhY2sgbWV0YWwgcmluZyBsYWJlbGVkIGFzIChHZ3IpIjtpOjIzO3M6NDU6IkRlbW9uaWMgUmluZyBvZiBJbnZpc2liaWxpdHkgbGFiZWxlZCBhcyAoR2dyKSI7aToyNDtzOjMxOiJhIHB1cnBsZSBnbG92ZSBsYWJlbGVkIGFzIChHZ3IpIjtpOjI1O3M6MzE6ImEgcHVycGxlIGdsb3ZlIGxhYmVsZWQgYXMgKEdncikiO2k6MjY7czozMDoiYSBncmVlbiBnbG92ZSBsYWJlbGVkIGFzIChHZ3IpIjtpOjI3O3M6MzA6ImEgZ3JlZW4gZ2xvdmUgbGFiZWxlZCBhcyAoR2dyKSI7aToyODtzOjQzOiJhIHBhaXIgb2YgYmxhY2sgYm9vdHMgbGFiZWxlZCBhcyB8R2dyTXVycml8IjtpOjI5O3M6NzI6IkEgYmVhdXRpZnVsIHJvc2FyeSBlbmZvbGRlZCB3aXRoIHdoaXRlIG1pc3QgbGFiZWxlZCBhcyB8R2dyTXVycml8IChob2x5KSI7aTozMDtzOjgyOiJhIHNtYWxsIHJpbmcgYmVhcmluZyB0aGUgZW1ibGVtIG9mIHRoZSBidW5ueSBbTWFkZSBieTogS2lvbWV0XSBsYWJlbGVkIGFzIDZ3aXMyaW50IjtpOjMxO3M6NjE6ImEgdmlhbCBjb250YWluaW5nIHRoZSB0ZWFycyBvZiBPeHRvdGggbGFiZWxlZCBhcyAoR2dyKSAoaG9seSkiO2k6MzI7czo0NDoiQSBsZWF0aGVyIHBvdWNoIGxhYmVsZWQgYXMgdjQgKHF1YXJ0ZXIgZnVsbCkiO2k6MzM7czo0Mzoic2xlZXZlcyBvZiBtb29taW4gZW11bHNpb24gbGFiZWxlZCBhcyAoR2dyKSI7aTozNDtzOjMzOiJhIGdyZWVuIGhlYWRiYW5kIGxhYmVsZWQgYXMgKEdncikiO2k6MzU7czozNDoiQ2FwZSBvZiBLbm93bGVkZ2UgbGFiZWxlZCBhcyAoR2dyKSI7aTozNjtzOjU0OiJUaGUgZ2xlYW1pbmcgYmx1ZSBjb2xsYXIgb2YgQmVuZ2Fsb3JlIGxhYmVsZWQgYXMgKEdncikiO2k6Mzc7czo1MToiZ29sZGVuIGJlbHQgb2YgRmFpciBSaXZlci1EYXVnaHRlciBsYWJlbGVkIGFzIChHZ3IpIjtpOjM4O3M6NDI6ImEgYmxhY2sgY2xvYWsgKGV2aWwgZ2xvdykgbGFiZWxlZCBhcyB8R2dyfCI7aTozOTtzOjM1OiJSaW5nIG9mIHRoZSBNZWR1c2EgbGFiZWxlZCBhcyAoR2dyKSI7aTo0MDtzOjQ0OiJBIGxvdyB3aWRlLWJyaW1tZWQgaGF0IGxhYmVsZWQgYXMgfEdnck11cnJpfCI7aTo0MTtzOjEzOiJhIHN0ZXRob3Njb3BlIjtpOjQyO3M6NjY6ImEgc2hpbW1lcmluZyBibHVlIGJyZWFzdHBsYXRlIG1hZGUgb2YgcXVhcnR6IGxhYmVsZWQgYXMgfEdnck11cnJpfCI7aTo0MztzOjUzOiJhIHBhaXIgb2YgcHVyZSB3aGl0ZSBmbG93aW5nIHNsZWV2ZXMgbGFiZWxlZCBhcyAoR2dyKSI7aTo0NDtzOjQzOiJSZWRmYW5nIEJlYWRzIG9mIElyb24gV2lsbCBsYWJlbGVkIGFzIChHZ3IpIjtpOjQ1O3M6NTk6Ik5vdmEgQXJjYW51bSwgTWVsa2lvcidzIGJvb2sgb2YgbmVjcm9tYW5jeSBsYWJlbGVkIGFzIChHZ3IpIjtpOjQ2O3M6NDQ6ImEgcGFpciBvZiBzaG9ydCBncmVlbiBib290cyBsYWJlbGVkIGFzIChHZ3IpIjt9fQ==" name="data" />
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
114 <input type="hidden" value="2" name="mode" />
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
115 First, you should provide a list of equipments you wish to manage.
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
116 Just plain copy &amp; paste of an inventory listing is enough.
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
117 You can also test with pre-defined equipments,
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
118 <input type="submit" value=" Test " /> by clicking the button.
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
119 </form>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
120 </p>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
121 <p>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
122 <b>Stacks of items are not supported, and few other things may cause problems too.</b>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
123 </p>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
124 <form action="<? echo $pageIndex; ?>" method="post">
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
125 <p>
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
126 <textarea name="data" cols="100" rows="20"></textarea>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
127 <input type="hidden" value="1" name="mode" />
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
128 </p>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
129 <div class="icenter">
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
130 <input type="submit" value=" Submit " />
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
131 </div>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
132 </form>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
133 <?
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
134 }
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
135
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
136 /*
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
137 * Parse and validate item
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
138 */
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
139 else if ($formMode == 1) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
140 if (isset($_POST["data"])) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
141 $formData = stripslashes($_POST["data"]);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
142
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
143 $postData = explode("\n", $formData);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
144 $data = array();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
145 $ignored = array();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
146
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
147 function addItems($num, $desc)
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
148 {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
149 global $data;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
150 for ($i = 0; $i < $num; $i++)
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
151 $data["items"][] = $desc;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
152 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
153
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
154 foreach ($postData as $line) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
155 // Trim whitespace
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
156 $str = trim($line);
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
157 if ($str == "") continue;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
158
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
159 // Strip glows and counters from item "handle"
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
160 if (preg_match("/^(.+?)\s+(<.+? glow>|\(\d+\/\d+\)|\[\d+\/\d+\])$/", $str, $m))
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
161 $str = $m[1];
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
162
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
163 // Discard multi-item lines
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
164 if (preg_match("/^(many|two|three|four|five|six|seven|eight|nine|ten)\s+(.+?)( labeled as .+|)$/", $str, $m)) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
165 if (!isset($fixNumbers[$m[1]])) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
166 $ignored[$str] = "Unparsed stack of many";
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
167 } else {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
168 $n = $fixNumbers[$m[1]];
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
169 $changed = 0;
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
170 foreach ($fixItemTable as $pat => $rep) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
171 if ($pat[0] == "*") {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
172 if (substr($pat, 1) == $m[2]) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
173 $res = $rep;
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
174 $changed = 1;
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
175 }
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
176 } else {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
177 $res = preg_replace("/".$pat."/", $rep, $m[2], -1, &$changed);
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
178 }
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
179 if ($changed > 0) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
180 addItems($n, $res.$m[3]);
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
181 break;
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
182 }
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
183 }
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
184 if ($changed == 0) {
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
185 $ignored[$str] = "Unsupported item stack";
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
186 }
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
187 }
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
188 } else
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
189 addItems(1, $str);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
190 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
191
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
192 if (count($ignored) > 0) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
193 ?>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
194 <p>Item data processed. Following lines <b>were not accepted</b>:</p>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
195 <table>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
196 <tr><th>Item</th><th>Reason</th></tr>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
197 <?
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
198 foreach ($ignored as $name => $reason) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
199 echo " <tr><td>".htmlentities($name)."</td><td>".htmlentities($reason)."</td></tr>\n";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
200 }
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
201
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
202 $encData = base64_encode(serialize($data));
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
203 ?>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
204 </table>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
205
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
206 <form action="<? echo $pageIndex; ?>" method="post">
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
207 <input type="hidden" value="<? echo $encData ?>" name="data" />
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
208 <input type="hidden" value="2" name="mode" />
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
209 <?
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
210 // echo "<textarea name=\"data\" cols=\"100\" rows=\"20\">".$encData."</textarea>\n";
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
211 ?>
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
212 <br />
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
213 <input type="submit" value=" Continue " />
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
214 </form>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
215 <?
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
216 } else
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
217 $formMode = 3;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
218 } else {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
219 $errorMsg = "No item data provided.";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
220 $errorSet = TRUE;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
221 }
3
aeb37c6b16fd Fixes, also added integrated test data.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
222 } // formMode == 1
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
223
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
224
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
225 /*
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
226 * Unserialize data from previous step
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
227 */
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
228 if ($formMode == 2) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
229 if (isset($_POST["data"])) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
230 $formData = base64_decode($_POST["data"]);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
231 $data = @unserialize($formData);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
232 $formMode = 3;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
233 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
234 if ($data === FALSE) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
235 $errorMsg = "Could not unserialize data, internal error.";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
236 $errorSet = TRUE;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
237 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
238 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
239
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
240
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
241 /*
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
242 * Interactive editor mode begins here
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
243 */
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
244 if ($data !== FALSE && $formMode == 3) {
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
245 ?>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
246 <form id="done" action="<? echo $pageIndex; ?>" method="post">
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
247 <p id="create_buttons">
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
248 <input type="button" value=" Create BatMUD Commands " onclick="createInit('batmud');" />
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
249 <!-- <input type="button" value=" Create TinyFugue Macros " onclick="createInit('tf');" />
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
250 -->
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
251 <input type="button" value=" Create SAVEBLOB " onclick="createInit('save');" />
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
252 <input type="button" value=" Reset All " onclick="resetAll();" />
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
253 <input type="button" value=" Empty Containers " onclick="emptyContainers();" />
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
254 </p>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
255
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
256
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
257 <table>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
258 <tr>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
259
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
260 <td>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
261 <h2>Items pool</h2>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
262 <? printOptionSelect("curr_items", 10, TRUE); ?>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
263 <table class="buttons">
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
264 <tr>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
265 <td><input type="button" value=" Delete " onclick="deleteItems(this.form);" /></td>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
266 <td><input type="button" value=" Add new " onclick="addItems(this.form);" disabled="disabled" /></td>
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
267 <td><b><span id="curr_nitems"></span> items</b></td>
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
268 <td><input type="button" value=" AutoMove " onclick="autoMoveItems(this.form);" /></td>
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
269 <td style="width: 60%; text-align: right;"><input type="button" value=" Move to container " onclick="moveItems(this.form);" /></td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
270 </tr>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
271 </table>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
272 </td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
273
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
274 <td id="container_editor">
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
275 <h2>Editing container "<span id="curr_name"></span>"</h2>
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
276 <? printOptionSelect("curr_container", 10, TRUE); ?>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
277 <table class="buttons">
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
278 <tr>
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
279 <td><input type="button" value=" Remove selected " onclick="containerRemoveItems(this.form);" /></td>
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
280 <td><b><span id="curr_info"></span> items</b></td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
281 </tr>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
282 </table>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
283 </td>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
284 </tr>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
285
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
286 <tr>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
287 <td>
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
288 <h2>Create / edit a container</h2>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
289 <?
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
290 printInputField("container_name", "Identifier/name", 15);
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
291 printInputField("container_slots", "Number of slots", 5);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
292 ?>
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
293 <input type="button" value=" Create new " onclick="containerCreate(this.form);" id="create_button" />
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
294 <input type="button" value=" Modify " onclick="containerModify(this.form);" id="modify_button" />
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
295 </td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
296
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
297 <td id="container_list_editor">
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
298 <h2>Defined containers</h2>
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
299 <? printOptionSelect("container_list", 5, FALSE); ?>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
300 <table class="buttons">
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
301 <tr>
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
302 <td><input type="button" value=" Switch to " onclick="containerEdit(this.form);" /></td>
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
303 <td><input type="button" value=" Delete " onclick="containerDelete(this.form);" /></td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
304 </tr>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
305 </table>
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
306 </td>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
307
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
308 </tr>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
309 </table>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
310 </form>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
311
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
312 <div id="commands">
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
313 <textarea id="command_data" cols="80" rows="10"></textarea>
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
314 <br />
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
315 <input type="button" value=" Close " onclick="viewCommands(false, '');" />
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
316 </div>
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
317
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
318 <div id="options_batmud" class="options">
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
319 <? printInputField("cmd_delim", "Command delimiter", 15, ";"); ?><br />
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
320 <? printInputField("cmd_prefix", "Command name prefix", 15, "mcp"); ?><br />
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
321 <? printInputField("cmd_cmd", "Command", 32, "put \$1 in \$2"); ?> (<b>$1</b> = item, <b>$2</b> = container)<br />
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
322 <? printCheckBox("cmd_sequence", "Create sequence for each item, instead of command alias list.", FALSE); ?><br />
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
323 <? printCheckBox("cmd_autoclose", "Add commands for automatically opening and closing each container.", FALSE); ?><br />
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
324 <br />
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
325 <input type="button" value=" Create " onclick="createCommands('batmud');" />
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
326 <input type="button" value=" Cancel " onclick="createInit('clear');" />
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
327 </div>
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
328
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
329 <div id="options_tf" class="options">
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
330 <input type="button" value=" Create " onclick="createCommands('tf');" />
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
331 <input type="button" value=" Cancel " onclick="createInit('clear');" />
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
332 </div>
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
333
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
334 <div id="lol" class="options"></div>
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
335
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
336 <div id="status">&nbsp;</div>
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
337
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
338 <script type="text/javascript">
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
339 <!--
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
340 var curr_container = null;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
341
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
342
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
343 function Container(name, slots, items)
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
344 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
345 this.name = name;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
346 this.slots = slots;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
347 this.items = items;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
348 this.changed = true;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
349
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
350 this.getCountByName = function(n) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
351 var cnt = 0;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
352 for (var i = 0; i < this.items.length; i++) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
353 if (this.items[i] == n) cnt++;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
354 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
355 return cnt;
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
356 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
357
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
358 this.getSpace = function() {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
359 return this.slots - this.items.length;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
360 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
361
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
362 this.addItem = function(item) {
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
363 if (this.items.length < slots) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
364 this.changed = true;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
365 this.items.push(item);
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
366 return true;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
367 } else
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
368 return false;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
369 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
370
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
371 this.deleteItemById = function(id) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
372 this.changed = true;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
373 delete this.items[id];
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
374 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
375
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
376 this.flush = function() {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
377 this.changed = true;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
378 for (var i = 0; i < this.items.length; i++) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
379 if (this.items[i] == undefined) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
380 this.items.splice(i, 1);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
381 i -= 1;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
382 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
383 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
384 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
385
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
386 this.moveItemById = function(container, id) {
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
387 var item = this.getItemByIndex(id);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
388 if (item != null) {
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
389 if (!container.addItem(item))
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
390 return false;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
391 this.deleteItemById(id);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
392 this.changed = true;
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
393 return true;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
394 } else
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
395 return false;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
396 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
397
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
398 this.getItemId = function(item) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
399 return this.items.indexOf(item);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
400 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
401
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
402 this.getItemByIndex = function(id) {
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
403 if (id < 0 || id >= this.items.length) return null;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
404 return this.items[id];
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
405 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
406 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
407 -->
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
408 <?
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
409 function getContainerObject($name, $slots, $items)
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
410 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
411 return "new Container(\"".$name."\", \"".$slots."\", [".getJSArraySegment($items)."])";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
412 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
413
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
414 $str = "";
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
415 if (isset($data["containers"])) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
416 foreach ($data["containers"] as $container) {
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
417 if ($str != "") $str .= ", ";
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
418 $str .= getContainerObject($container["name"], $container["slots"], $container["items"]);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
419 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
420 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
421
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
422 echo "
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
423 var list_containers;
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
424 var list_items;
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
425
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
426 function initContainers()
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
427 {
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
428 list_containers = [".$str."];
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
429 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
430
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
431 function initItems()
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
432 {
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
433 list_items = ".(isset($data["items"]) ? getContainerObject("items", 10000, $data["items"]) : "null").";
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
434 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
435
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
436 function initSettings()
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
437 {
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
438 ".$jsData."
10
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
439 curr_container = null;
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
440 }
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
441 ";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
442 ?>
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
443 <!-- kludge --><!--
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
444
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
445
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
446 function resetAll()
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
447 {
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
448 var answer = confirm("Really delete all defined containers and reset item pool to original state? You will have to re-define containers from scratch.");
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
449 if (!answer) {
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
450 statusMsg("Reset operation cancelled.");
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
451 return;
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
452 }
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
453 initContainers();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
454 initItems();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
455 initSettings();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
456 updatePage();
17
bd6e836f9641 Use copyright character.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
457 statusMsg('Welcome to the editor. <b>&copy; Copyright 2011 Matti H&auml;m&auml;l&auml;inen aka Ggr Pupunen.</b>');
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
458 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
459
16
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
460
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
461 function emptyContainers()
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
462 {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
463 var answer = confirm("Really clear (empty) all defined containers and reset item pool to original state?");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
464 if (!answer) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
465 statusMsg("Clear operation cancelled.");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
466 return;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
467 }
16
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
468
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
469 initItems();
16
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
470
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
471 for (var i = 0; i < list_containers.length; i++) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
472 list_containers[i].items = [];
16
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
473 if (i == 0) {
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
474 curr_container = list_containers[i];
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
475 curr_container.changed = true;
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
476 }
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
477 }
16
2369d74f50a1 Fix cleaning of containers.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
478
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
479 updatePage();
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
480 }
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
481
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
482
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
483 function setHTML(id, str)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
484 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
485 var o = document.getElementById(id);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
486 if (o != null)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
487 o.innerHTML = str;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
488 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
489
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
490
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
491 function setListData(id, list)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
492 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
493 var o = document.getElementById(id);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
494 o.options.length = 0;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
495 for (var i = 0; i < list.length; i++) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
496 o.options[i] = new Option(list[i], i, false, false);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
497 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
498 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
499
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
500
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
501 // Update the form data
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
502 function updatePage()
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
503 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
504 // List of items
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
505 if (list_items != null && list_items.changed) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
506 list_items.changed = false;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
507 setListData("curr_items", list_items.items);
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
508 setHTML("curr_nitems", list_items.items.length);
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
509 }
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
510
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
511 // List of containers
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
512 var container_list_editor = document.getElementById("container_list_editor");
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
513 if (list_containers.length > 0) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
514 container_list_editor.style.display = "block";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
515
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
516 o = document.getElementById("container_list");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
517 o.options.length = 0;
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
518 for (var i = 0; i < list_containers.length; i++) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
519 o.options[i] = new Option(list_containers[i].name +" (" + list_containers[i].items.length +" of "+ list_containers[i].slots +" items)", i, false);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
520 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
521 } else {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
522 container_list_editor.style.display = "none";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
523 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
524
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
525
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
526 // Update current container
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
527 var container_editor = document.getElementById("container_editor");
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
528 if (curr_container != null) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
529 container_editor.style.display = "block";
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
530 setHTML("curr_name", curr_container.name);
4
563783b8cd22 Show current item amounts.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
531
12
774db3b4bedc Add some informational output.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
532 setHTML("curr_info", curr_container.items.length+" / "+curr_container.slots);
4
563783b8cd22 Show current item amounts.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
533
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
534 if (curr_container.changed) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
535 curr_container.changed = false;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
536 setListData("curr_container", curr_container.items);
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
537 }
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
538 } else {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
539 container_editor.style.display = "none";
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
540 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
541 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
542
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
543 // Output status message
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
544 function statusMsg(msg)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
545 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
546 var o = document.getElementById("status");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
547 o.innerHTML = msg;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
548 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
549
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
550
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
551 // Clear values of a given form
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
552 function clearForm(f)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
553 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
554 for (var i = 0; i < f.elements.length; i++) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
555 var e = f.elements[i];
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
556 if (e.type.toLowerCase() == "text") e.value = "";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
557 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
558 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
559
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
560
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
561 function validateContainerData(f)
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
562 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
563 var name = f.elements['container_name'].value;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
564 var slots = parseInt(f.elements['container_slots'].value, 10);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
565
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
566 if (isNaN(slots) || slots < 1) {
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
567 statusMsg("Number of slots not set or is invalid.");
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
568 return null;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
569 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
570
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
571 if (name == "") {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
572 statusMsg("Empty container name "+name+".");
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
573 return null;
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
574 }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
575
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
576 if (name.match(/[^a-z0-9_]/)) {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
577 statusMsg("Invalid container name, only lower case alphanumerics and underscore are allowed.");
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
578 return null;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
579 }
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
580
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
581 return {name: name, slots: slots};
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
582 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
583
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
584 // Create a new container, set current container to it
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
585 function containerCreate(f)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
586 {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
587 var c = validateContainerData(f);
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
588 if (c == null)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
589 return;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
590
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
591 for (var i = 0; i < list_containers.length; i++) {
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
592 if (list_containers[i].name == c.name) {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
593 statusMsg("Container with identifier '<b>"+c.name+"</b>' already exists!");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
594 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
595 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
596 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
597
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
598 curr_container = new Container(c.name, c.slots, []);
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
599 list_containers.push(curr_container);
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
600
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
601 clearForm(f);
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
602 statusMsg("Created new container '<b>"+c.name+"</b>' with <b>"+c.slots+"</b> slots.");
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
603 updatePage();
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
604 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
605
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
606
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
607 // Change current container
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
608 function containerModify(f)
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
609 {
10
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
610 if (curr_container == null) {
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
611 statusMsg("No current container, create or select one.");
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
612 return;
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
613 }
e2f975b0c518 Fix reset functionality. Add startup message.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
614
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
615 var c = validateContainerData(f);
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
616 if (c == null)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
617 return;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
618
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
619 if (c.slots < curr_container.items.length) {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
620 statusMsg("New number of slots can't be smaller than number of items in it! ("+ c.slots +" < "+ curr_container.items.length +")");
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
621 return;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
622 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
623
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
624 curr_container.name = c.name;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
625 curr_container.slots = c.slots;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
626
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
627 clearForm(f);
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
628 statusMsg("Updated container.");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
629 updatePage();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
630 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
631
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
632
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
633 function containerCheckSelected(f)
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
634 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
635 var id = f.elements['container_list'].selectedIndex;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
636
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
637 if (id < 0 || id >= list_containers.length) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
638 statusMsg("Invalid container, internal error!");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
639 return -1;
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
640 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
641
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
642 return {id: id, container: list_containers[id]};
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
643 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
644
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
645
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
646 // Delete a container from container list
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
647 function containerDelete(f)
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
648 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
649 var ret = containerCheckSelected(f);
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
650 if (ret.id < 0 || ret.container == null) return;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
651
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
652 var name = ret.container.name;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
653 var len = ret.container.items.length;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
654
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
655 var answer = confirm("Really delete selected container '"+name+"' and move "+len+" items back to pool?");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
656 if (!answer) {
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
657 statusMsg("Delete operation cancelled.");
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
658 return;
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
659 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
660
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
661 if (curr_container == ret.container)
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
662 curr_container = null;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
663
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
664 for (var i = 0; i < len; i++) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
665 if (!ret.container.moveItemById(list_items, i)) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
666 statusMsg("Internal error moving item "+ i);
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
667 return;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
668 }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
669 }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
670
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
671 list_containers.splice(ret.id, 1);
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
672
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
673 if (len > 0) {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
674 statusMsg("Deleted container '"+name+"', "+len+" items returned to pool.");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
675 } else {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
676 statusMsg("Deleted empty container '"+name+"'.");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
677 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
678 updatePage();
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
679 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
680
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
681
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
682 // Change currently edited container to another
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
683 function containerEdit(f)
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
684 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
685 var ret = containerCheckSelected(f);
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
686 if (ret.id < 0 || ret.container == null) return;
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
687
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
688 curr_container = ret.container;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
689 curr_container.changed = true;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
690 statusMsg("Switched to container '"+ret.container.name+"'.");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
691 updatePage();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
692 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
693
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
694
9
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
695 function containerRemoveItems(f)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
696 {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
697 if (curr_container == null) {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
698 statusMsg("Internal error.");
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
699 return;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
700 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
701
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
702 var selected = getSelectedItems(f.elements['curr_container']);
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
703
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
704 if (selected.length == 0) {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
705 statusMsg("No items selected for deletion.");
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
706 return;
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
707 } else {
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
708 for (var i = 0; i < selected.length; i++)
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
709 curr_container.moveItemById(list_items, selected[i]);
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
710
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
711 curr_container.flush();
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
712 updatePage();
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
713 statusMsg("Removed " + selected.length + " from current container.");
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
714 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
715 }
da404b8ff282 Container editing, persistent settings.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
716
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
717 function getSelectedItems(items)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
718 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
719 var selected = [];
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
720 if (items != null) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
721 for (var i = 0; i < items.length; i++)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
722 if (items[i].selected) selected.push(items[i].value);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
723 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
724 return selected;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
725 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
726
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
727
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
728 function deleteItems(f)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
729 {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
730 var selected = getSelectedItems(f.elements['curr_items']);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
731
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
732 if (selected.length == 0) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
733 statusMsg("No items selected for deletion.");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
734 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
735 } else {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
736 var answer = confirm("Really delete selected items?");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
737 if (!answer) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
738 statusMsg("Delete operation cancelled.");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
739 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
740 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
741
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
742 for (var i = 0; i < selected.length; i++)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
743 list_items.deleteItemById(selected[i]);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
744
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
745 list_items.flush();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
746 updatePage();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
747 statusMsg("Deleted "+selected.length+" items.");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
748 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
749 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
750
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
751
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
752 function moveItems(f)
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
753 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
754 if (curr_container == null) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
755 statusMsg("No container selected, cannot move items.");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
756 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
757 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
758
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
759 var selected = getSelectedItems(f.elements['curr_items']);
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
760
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
761 if (selected.length == 0) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
762 statusMsg("No items selected for deletion.");
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
763 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
764 } else {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
765 if (curr_container.getSpace() < selected.length) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
766 statusMsg("Not enough space! "+ selected.length +" items, only "+ curr_container.getSpace() +" slots available!");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
767 return;
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
768 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
769
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
770 for (var i = 0; i < selected.length; i++) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
771 if (!list_items.moveItemById(curr_container, selected[i])) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
772 statusMsg("Internal error moving item #"+i+": '"+selected[i]+"'.");
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
773 return;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
774 }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
775 }
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
776
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
777 list_items.flush();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
778 updatePage();
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
779 statusMsg("Moved " + selected.length + " items to current container.");
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
780 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
781 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
782
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
783
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
784 function autoMoveItems(f)
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
785 {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
786 var selected = getSelectedItems(f.elements['curr_items']);
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
787
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
788 if (selected.length == 0) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
789 statusMsg("No items selected for AutoMove(tm).");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
790 return;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
791 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
792
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
793 if (list_containers.length == 0) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
794 statusMsg("No containers available for AutoMove(tm).");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
795 return;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
796 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
797
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
798 var remaining = selected.length;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
799 var n = 0;
15
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
800 var changed = 0;
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
801 while (remaining > 0 && n < list_containers.length) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
802 curr = list_containers[n];
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
803
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
804 for (var q = curr.getSpace(); q > 0 && remaining > 0; q--) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
805 remaining--;
15
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
806 changed++;
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
807 if (!list_items.moveItemById(curr, selected[remaining])) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
808 statusMsg("Internal error moving item #"+remaining+": '"+selected[remaining]+"'.");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
809 return;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
810 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
811 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
812
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
813 n++;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
814 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
815
15
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
816 if (changed > 0) {
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
817 list_items.flush();
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
818 updatePage();
2aa632a8610f AutoMove: Don't clear item selections if no changes were made.
Matti Hamalainen <ccr@tnsp.org>
parents: 14
diff changeset
819 }
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
820
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
821 if (remaining > 0) {
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
822 statusMsg("Not enough space! <b>"+ remaining +" of "+ selected.length +"</b> items left without slots!");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
823 return;
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
824 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
825
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
826 statusMsg("AutoMoved " + selected.length + " items to containers.");
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
827 }
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
828
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
829
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
830 function serializePHP(obj)
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
831 {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
832 var res;
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
833
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
834 if (obj == undefined)
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
835 return null;
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
836
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
837 switch (typeof(obj)) {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
838 case "array":
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
839 res = "[";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
840 for (var i = 0; i < obj.length; i++) {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
841 if (i > 0) res += ", ";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
842 res += serializePHP(obj[i]);
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
843 }
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
844 res += "]";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
845 return res;
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
846
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
847 case "string":
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
848 return " '" + escape(obj) + "'";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
849
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
850 case "number":
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
851 return isFinite(obj) ? obj.toString() : null;
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
852
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
853 case "object":
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
854 var o = [];
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
855 for (a in obj) {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
856 if (typeof(obj[a]) != "function") {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
857 o.push('"' + a + '": ' + serializePHP(obj[a]));
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
858 }
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
859 }
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
860 if (o.length > 0)
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
861 return " {" + o.join(",") + "} ";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
862 else
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
863 return " {} ";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
864
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
865 case "boolean":
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
866 return obj ? "true" : "false";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
867
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
868 default:
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
869 return obj.toString();
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
870 }
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
871 }
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
872
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
873
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
874 var edit_modes = ['batmud', 'tf', 'save'];
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
875
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
876 function createInit(mode)
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
877 {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
878 for (i = 0; i < edit_modes.length; i++) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
879 var o = document.getElementById("options_"+edit_modes[i]);
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
880 if (o != null) {
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
881 o.style.display = (edit_modes[i] == mode) ? "block" : "none";
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
882 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
883 }
18
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
884
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
885 if (mode == "save") {
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
886 var tmp = { "containers": list_containers, "items": list_items };
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
887 viewCommands(true, serializePHP(tmp));
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
888 /*
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
889 var o = document.getElementById("lol");
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
890 o.style.display = "block";
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
891 o.innerHTML = serializePHP(tmp);
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
892 */
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
893 return;
716329d47372 Serialization and saveblob generation. Not complete yet.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
894 }
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
895 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
896
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
897
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
898 function expandCmd(cmd, item, name)
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
899 {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
900 var str = cmd.replace(/\$1/g, item);
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
901 return str.replace(/\$2/g, name);
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
902 }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
903
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
904
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
905 function createCommands(mode)
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
906 {
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
907 if (list_containers.length == 0) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
908 statusMsg("No container configurations defined!");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
909 return;
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
910 }
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
911
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
912 var str = "";
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
913 for (var i = 0; i < list_containers.length; i++) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
914 var container = list_containers[i];
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
915 var counts = [];
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
916 var curr = [];
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
917
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
918 for (var n = 0; n < container.items.length; n++) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
919 var cnt = container.getCountByName(container.items[n]);
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
920 counts[container.items[n]] = cnt;
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
921 curr[container.items[n]] = 1;
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
922 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
923
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
924 var cmd_autoclose = document.getElementById("cmd_autoclose").checked;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
925 var cmd_delim = document.getElementById("cmd_delim").value;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
926 var cmd_prefix = document.getElementById("cmd_prefix").value;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
927 if (cmd_delim == "") cmd_delim = ";";
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
928 var cmd_cmd = document.getElementById("cmd_cmd").value;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
929 var cmd_seq = document.getElementById("cmd_sequence").checked;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
930 var s = "";
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
931
6
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
932 for (var n = 0; n < container.items.length; n++) {
2fb901161013 s/Chest/Container/g
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
933 var item = container.items[n];
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
934 var tmp = ""+item;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
935
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
936 if (counts[item] > 1) {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
937 tmp += " " + curr[item];
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
938 curr[item]++;
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
939 }
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
940
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
941 if (mode == "batmud") {
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
942 if (cmd_seq) {
8
5e1cdf22d647 Cleanups, fixes, added a global "reset" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 7
diff changeset
943 s += expandCmd(cmd_cmd, tmp, container.name) + "\n";
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
944 } else {
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
945 if (s != "") s += ",";
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
946 s += tmp;
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
947 }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
948 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
949 }
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
950
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
951 if (mode == "batmud") {
14
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
952 if (!cmd_seq) str += "command "+ cmd_prefix + container.name +" ";
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
953 if (cmd_autoclose) str += "open "+ container.name + cmd_delim;
7
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
954 if (!cmd_seq) str += expandCmd(cmd_cmd, s, container.name);
6ff1ee9122b2 Work more on generalization of the process.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
955 else str += s;
14
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
956 if (cmd_autoclose) str += cmd_delim +"close "+ container.name;
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
957 str += "\n";
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
958 }
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
959 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
960
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
961 viewCommands(true, str);
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
962 }
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
963
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
964 function viewCommands(state, str)
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
965 {
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
966 var o = document.getElementById("commands");
2
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
967 o.style.display = state ? "block" : "none";
666d475c8f92 Fixes, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
968 var o = document.getElementById("command_data");
1
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
969 o.innerHTML = str;
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
970 }
77d78ef45ed2 Lots of work.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
971
13
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
972
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
973 initContainers();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
974 initItems();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
975 initSettings();
1edbabcbcdbd Cleanups, and AutoMove(tm) functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
976 updatePage();
0
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
977 -->
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
978 </script>
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
979 <?
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
980 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
981
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
982 if ($errorSet) {
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
983 echo "<h2>An error occured</h2>\n".
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
984 "<p>".$errorMsg."</p>";
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
985 }
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
986
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
987 printPageFooter();
332b25bb4e36 Initial import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
988 ?>