deleted: src/www/log_screen.html
deleted: src/www/main_screen modified: src/www/portable.html deleted: src/www/settings
This commit is contained in:
parent
aa417bd470
commit
7e0cf674bb
@ -1,64 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Minecraft Logs</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
<body class="bg-gray-100 flex justify-center items-center h-screen">
|
||||
|
||||
<div class="bg-white shadow-lg rounded-xl p-6 w-96 text-center">
|
||||
<h2 class="text-2xl font-semibold text-gray-700">Minecraft Logs</h2>
|
||||
|
||||
<!-- Log Output -->
|
||||
<div id="log-container" class="mt-4 p-2 h-48 overflow-auto bg-gray-200 rounded text-left text-sm text-gray-800 font-mono">
|
||||
<p>[INFO] Initializing Minecraft...</p>
|
||||
</div>
|
||||
|
||||
<!-- Stop & Back Buttons -->
|
||||
<div class="mt-4 flex gap-2">
|
||||
<button onclick="stopMinecraft()"
|
||||
class="w-full bg-red-500 hover:bg-red-600 text-white font-bold py-2 px-4 rounded transition">
|
||||
❌ Stop
|
||||
</button>
|
||||
<button onclick="goBack()"
|
||||
class="w-full bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded transition">
|
||||
⬅ Back
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<p class="mt-4 text-sm text-gray-500">Minecraft Launcher v1.0</p>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function addLog(message) {
|
||||
const logContainer = document.getElementById("log-container");
|
||||
const newLog = document.createElement("p");
|
||||
newLog.innerText = message;
|
||||
logContainer.appendChild(newLog);
|
||||
logContainer.scrollTop = logContainer.scrollHeight;
|
||||
}
|
||||
|
||||
function stopMinecraft() {
|
||||
addLog("[ERROR] Minecraft process terminated.");
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
window.location.href = "index.html"; // Back to launcher
|
||||
}
|
||||
|
||||
// Simulating logs
|
||||
setInterval(() => {
|
||||
const messages = [
|
||||
"[INFO] Loading assets...",
|
||||
"[INFO] Connecting to server...",
|
||||
"[WARN] High memory usage detected...",
|
||||
"[INFO] Game launched successfully!",
|
||||
];
|
||||
addLog(messages[Math.floor(Math.random() * messages.length)]);
|
||||
}, 2000);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,51 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Select Version</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
<body class="bg-gray-100 flex justify-center items-center h-screen">
|
||||
|
||||
<div class="bg-white shadow-lg rounded-xl p-6 w-96 text-center">
|
||||
<h2 class="text-2xl font-semibold text-gray-700">Select Minecraft Version</h2>
|
||||
|
||||
<!-- Version Dropdown -->
|
||||
<select id="mc-version" class="mt-4 w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500">
|
||||
<option value="latest">Latest Release</option>
|
||||
<option value="1.20.1">1.20.1</option>
|
||||
<option value="1.19.4">1.19.4</option>
|
||||
<option value="1.18.2">1.18.2</option>
|
||||
<option value="1.16.5">1.16.5</option>
|
||||
<option value="1.12.2">1.12.2 (Modding)</option>
|
||||
</select>
|
||||
|
||||
<!-- Play Button -->
|
||||
<button onclick="selectVersion()"
|
||||
class="mt-4 w-full bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded transition">
|
||||
▶ Play Minecraft
|
||||
</button>
|
||||
|
||||
<!-- Back to Launcher -->
|
||||
<button onclick="goBack()"
|
||||
class="mt-3 w-full bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded transition">
|
||||
⬅ Back to Launcher
|
||||
</button>
|
||||
|
||||
<p class="mt-4 text-sm text-gray-500">Minecraft Launcher v1.0</p>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function selectVersion() {
|
||||
const version = document.getElementById('mc-version').value;
|
||||
alert(Launching Minecraft ${version});
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
alert("Returning to Launcher...");
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -158,6 +158,29 @@
|
||||
</div>
|
||||
|
||||
<div class="flex justify-center items-center w-screen h-screen">
|
||||
<div id="logs-section" class="xsection bg-white shadow-lg rounded-xl p-6 w-96 text-center hidden">
|
||||
<h2 class="text-2xl font-semibold text-gray-700">Minecraft Logs</h2>
|
||||
|
||||
<!-- Log Output -->
|
||||
<div id="log-container" class="mt-4 p-2 h-48 overflow-auto bg-gray-200 rounded text-left text-sm text-gray-800 font-mono">
|
||||
<p>[INFO] Initializing Minecraft...</p>
|
||||
</div>
|
||||
|
||||
<!-- Stop & Back Buttons -->
|
||||
<div class="mt-4 flex gap-2">
|
||||
<button onclick="stopMinecraft()"
|
||||
class="w-full bg-red-500 hover:bg-red-600 text-white font-bold py-2 px-4 rounded transition">
|
||||
Kill
|
||||
</button>
|
||||
<button
|
||||
class="w-full bg-gray-500 hover:bg-gray-600 text-white font-bold py-2 px-4 rounded transition">
|
||||
Copy logs
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<p class="mt-4 text-sm text-gray-500">alterdekim</p>
|
||||
</div>
|
||||
|
||||
<div id="loading-section" class="xsection bg-white shadow-lg rounded-xl p-6 w-96 text-center hidden">
|
||||
<h2 class="text-2xl font-semibold text-gray-700">Launching Minecraft</h2>
|
||||
|
||||
|
100
src/www/settings
100
src/www/settings
@ -1,100 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Launcher Settings</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
<body class="bg-gray-100 flex justify-center items-center h-screen">
|
||||
<div class="bg-white shadow-lg rounded-xl p-6 w-96 text-center">
|
||||
<h2 class="text-2xl font-semibold text-gray-700">Launcher Settings</h2>
|
||||
|
||||
<!-- Tabs -->
|
||||
<div class="mt-4 flex justify-around text-gray-600">
|
||||
<button onclick="showSection('launcher')" class="py-2 px-4 focus:text-green-500">🚀 Launcher</button>
|
||||
<button onclick="showSection('minecraft')" class="py-2 px-4 focus:text-green-500">🎮 Minecraft</button>
|
||||
<button onclick="showSection('java')" class="py-2 px-4 focus:text-green-500"><i class="fa fa-fan"></i> Java</button>
|
||||
<button onclick="showSection('versions')" class="py-2 px-4 focus:text-green-500">📦 Versions</button>
|
||||
</div>
|
||||
|
||||
<!-- Sections -->
|
||||
<div id="launcher" class="mt-4">
|
||||
<h3 class="text-lg font-semibold text-gray-700">🚀 Launcher Settings</h3>
|
||||
<label class="block mt-3 text-gray-600">Auto-update:</label>
|
||||
<select class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-green-500">
|
||||
<option>Enabled</option>
|
||||
<option>Disabled</option>
|
||||
</select>
|
||||
|
||||
<label class="block mt-3 text-gray-600">UI Theme:</label>
|
||||
<select class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-green-500">
|
||||
<option>Light</option>
|
||||
<option>Dark</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div id="minecraft" class="mt-4 hidden">
|
||||
<h3 class="text-lg font-semibold text-gray-700">🎮 Minecraft Settings</h3>
|
||||
<label class="block mt-3 text-gray-600">Game Directory:</label>
|
||||
<input type="text" placeholder="/path/to/minecraft" class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-green-500">
|
||||
|
||||
<label class="block mt-3 text-gray-600">RAM Allocation:</label>
|
||||
<input type="range" min="1024" max="16384" step="512" class="w-full">
|
||||
|
||||
<label class="block mt-3 text-gray-600">Enable Mods:</label>
|
||||
<input type="checkbox" class="ml-2">
|
||||
</div>
|
||||
|
||||
<div id="java" class="mt-4 hidden">
|
||||
<h3 class="text-lg font-semibold text-gray-700">☕ Java Settings</h3>
|
||||
<label class="block mt-3 text-gray-600">Java Path:</label>
|
||||
<input type="text" placeholder="/path/to/java" class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-green-500">
|
||||
|
||||
<label class="block mt-3 text-gray-600">Custom JVM Arguments:</label>
|
||||
<textarea class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-green-500" rows="2">-Xmx4G -Xms2G</textarea>
|
||||
</div>
|
||||
|
||||
<div id="versions" class="mt-4 hidden">
|
||||
<h3 class="text-lg font-semibold text-gray-700">📦 Version Settings</h3>
|
||||
<label class="block mt-3 text-gray-600">Show Experimental Versions:</label>
|
||||
<input type="checkbox" class="ml-2">
|
||||
|
||||
<label class="block mt-3 text-gray-600">Show Snapshots:</label>
|
||||
<input type="checkbox" class="ml-2">
|
||||
</div>
|
||||
|
||||
<!-- Save & Back Buttons -->
|
||||
<div class="mt-6 flex gap-2">
|
||||
<button onclick="saveSettings()"
|
||||
class="w-1/2 bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded transition">
|
||||
💾 Save
|
||||
</button>
|
||||
<button onclick="goBack()"
|
||||
class="w-1/2 bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded transition">
|
||||
⬅ Back
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<p class="mt-4 text-sm text-gray-500">Minecraft Launcher v1.0</p>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function showSection(section) {
|
||||
document.querySelectorAll("div[id]").forEach(div => div.classList.add("hidden"));
|
||||
document.getElementById(section).classList.remove("hidden");
|
||||
}
|
||||
|
||||
function saveSettings() {
|
||||
alert("Settings saved successfully!");
|
||||
// In Rust, this should write to a config file.
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
window.location.href = "index.html";
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user