annotate index.php @ 23:35f0c0ce0c51

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