aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/dom')
-rw-r--r--webAO/dom/areaClick.ts10
-rw-r--r--webAO/dom/renderPlayerList.ts50
-rw-r--r--webAO/dom/updatePlayerAreas.ts24
3 files changed, 50 insertions, 34 deletions
diff --git a/webAO/dom/areaClick.ts b/webAO/dom/areaClick.ts
index 19953a5..f7b177e 100644
--- a/webAO/dom/areaClick.ts
+++ b/webAO/dom/areaClick.ts
@@ -1,6 +1,4 @@
import { client } from "../client";
-import { updatePlayerAreas } from "./updatePlayerAreas";
-import { ensureCharIni } from "../client/handleCharacterInfo";
/**
* Triggered when an item on the area list is clicked.
* @param {HTMLElement} el
@@ -14,13 +12,5 @@ export function area_click(el: HTMLElement) {
areaHr.textContent = `switched to ${el.textContent}`;
document.getElementById("client_log")!.appendChild(areaHr);
client.area = Number(el.id.substring(4));
- updatePlayerAreas(client.area);
-
- // Prefetch char.ini for all characters present in the new area
- for (const player of client.players.values()) {
- if (player.area === client.area && player.charId >= 0) {
- ensureCharIni(player.charId);
- }
- }
}
window.area_click = area_click;
diff --git a/webAO/dom/renderPlayerList.ts b/webAO/dom/renderPlayerList.ts
new file mode 100644
index 0000000..43dab64
--- /dev/null
+++ b/webAO/dom/renderPlayerList.ts
@@ -0,0 +1,50 @@
+import { client } from "../client";
+import { AO_HOST } from "../client/aoHost";
+
+export function renderPlayerList() {
+ const list = document.getElementById("client_playerlist") as HTMLTableElement;
+ list.innerHTML = "";
+
+ for (const [playerID, player] of client.playerlist) {
+ const playerRow = list.insertRow();
+ playerRow.id = `client_playerlist_entry${playerID}`;
+
+ const imgCell = playerRow.insertCell(0);
+ imgCell.style.width = "64px";
+ const img = document.createElement("img");
+ if (player.charId >= 0) {
+ const char = client.chars[player.charId];
+ if (char) {
+ const iconExt = client.charicon_extensions[0] || ".png";
+ img.src = `${AO_HOST}characters/${encodeURI(char.name.toLowerCase())}/char_icon${iconExt}`;
+ img.alt = char.name;
+ img.title = char.name;
+ }
+ }
+ imgCell.appendChild(img);
+
+ const charNameCell = playerRow.insertCell(1);
+ charNameCell.textContent =
+ player.charId >= 0 ? `[${playerID}] ${player.charName}` : "";
+
+ const showNameCell = playerRow.insertCell(2);
+ showNameCell.textContent = player.showName;
+
+ const oocNameCell = playerRow.insertCell(3);
+ oocNameCell.textContent = player.name;
+
+ const kickCell = playerRow.insertCell(4);
+ kickCell.style.width = "64px";
+ const kick = document.createElement("button");
+ kick.innerText = "Kick";
+ kick.onclick = () => window.kickPlayer(playerID);
+ kickCell.appendChild(kick);
+
+ const banCell = playerRow.insertCell(5);
+ banCell.style.width = "64px";
+ const ban = document.createElement("button");
+ ban.innerText = "Ban";
+ ban.onclick = () => window.banPlayer(playerID);
+ banCell.appendChild(ban);
+ }
+}
diff --git a/webAO/dom/updatePlayerAreas.ts b/webAO/dom/updatePlayerAreas.ts
deleted file mode 100644
index 99eccf1..0000000
--- a/webAO/dom/updatePlayerAreas.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { client } from "../client";
-import { area_click } from "./areaClick";
-/**
- * Triggered when someone switches areas
- * @param {Number} ownarea
- */
-export function updatePlayerAreas(ownarea: number) {
- for (let i = 0; i < client.areas.length; i++) {
- if (i === ownarea)
- for (let classelement of Array.from(
- document.getElementsByClassName(
- `area${i}`,
- ) as HTMLCollectionOf<HTMLElement>,
- ))
- classelement.style.display = "";
- else
- for (let classelement of Array.from(
- document.getElementsByClassName(
- `area${i}`,
- ) as HTMLCollectionOf<HTMLElement>,
- ))
- classelement.style.display = "none";
- }
-}