Spaces:
Running
Running
File size: 14,317 Bytes
f265ff5 c0f5b84 f265ff5 c0f5b84 f265ff5 9f9622d f265ff5 c0f5b84 f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 2783bba f265ff5 0a0dfe3 2783bba f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 2783bba 0a0dfe3 f265ff5 0a0dfe3 f265ff5 2783bba f265ff5 2783bba f265ff5 2783bba f265ff5 2783bba f265ff5 2783bba 0a0dfe3 2783bba f265ff5 2783bba f265ff5 2783bba f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 c0f5b84 f265ff5 9f9622d f265ff5 9f9622d c0f5b84 f265ff5 bf30843 f265ff5 c0f5b84 f265ff5 c0f5b84 9f9622d f265ff5 bf30843 2783bba f265ff5 bf30843 f265ff5 bf30843 f265ff5 9f9622d bf30843 c0f5b84 f265ff5 2783bba c0f5b84 f265ff5 2783bba 9f9622d 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 9f9622d f265ff5 0a0dfe3 f265ff5 0a0dfe3 2783bba 0a0dfe3 9f9622d 2783bba 0a0dfe3 c0f5b84 0a0dfe3 f265ff5 0a0dfe3 f265ff5 9f9622d f265ff5 9f9622d 2783bba 0a0dfe3 f265ff5 0a0dfe3 f265ff5 0a0dfe3 9f9622d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
import streamlit as st # π Streamlit magic
import streamlit.components.v1 as components # πΌοΈ Embed custom HTML/JS
import os # π File operations
import json # π JSON encoding/decoding
import pandas as pd # π DataFrame handling
import uuid # π Unique IDs
import math # β Math utils
import time # β³ Time utilities
from gamestate import GameState # πΌ Shared game-state singleton
# π Page setup
st.set_page_config(page_title="Infinite World Builder", layout="wide")
# π Constants for world dimensions & CSV schema
SAVE_DIR = "saved_worlds"
PLOT_WIDTH = 50.0 # βοΈ Plot width in world units
PLOT_DEPTH = 50.0 # βοΈ Plot depth in world units
CSV_COLUMNS = [
'obj_id', 'type',
'pos_x', 'pos_y', 'pos_z',
'rot_x', 'rot_y', 'rot_z', 'rot_order'
]
# π¨ Model categories and types
MODEL_CATEGORIES = {
"None": ["None"],
"Buildings": [
"Simple House",
"Cyberpunk Wall Panel",
"Modular Hab Block",
"MegaCorp Skyscraper",
"Castle Wall Section",
"Wooden Door",
"House Roof Section",
"Concrete Bunker Wall",
"Damaged House Facade"
],
"Nature": [
"Tree",
"Rock",
"Pine Tree",
"Boulder",
"Alien Plant",
"Floating Rock Platform",
"Rubble Pile"
],
"Props": [
"Fence Post",
"Rooftop AC Unit",
"Holographic Window Display",
"Jersey Barrier",
"Oil Drum",
"Canned Food",
"Treasure Chest",
"Wall Torch",
"Bone Pile"
],
"Characters": [
"King Figure",
"Soldier Figure",
"Mage Figure",
"Zombie Figure",
"Survivor Figure",
"Dwarf Miner Figure",
"Undead Knight Figure",
"Hero Figure"
],
"Vehicles": [
"Wooden Cart",
"Ballista",
"Siege Tower",
"Buggy Frame",
"Motorbike",
"Hover Bike",
"APC",
"Sand Boat"
],
"Weapons": [
"Makeshift Machete",
"Pistol Body",
"Scope Attachment",
"Laser Pistol",
"Energy Sword",
"Dwarven Axe",
"Magic Staff"
],
"Effects": [
"Candle Flame",
"Dust Cloud",
"Blood Splat Decal",
"Burning Barrel Fire",
"Warp Tunnel Effect",
"Laser Beam",
"Gold Sparkle",
"Steam Vent"
]
}
# ποΈ Ensure directory for plots exists
os.makedirs(SAVE_DIR, exist_ok=True)
@st.cache_data(ttl=3600) # π Cache for 1h
def load_plot_metadata():
# π Scan SAVE_DIR for plot CSVs
try:
plot_files = [f for f in os.listdir(SAVE_DIR)
if f.endswith(".csv") and f.startswith("plot_X")]
except FileNotFoundError:
st.error(f"Folder '{SAVE_DIR}' missing! π¨")
return []
except Exception as e:
st.error(f"Error reading '{SAVE_DIR}': {e}")
return []
parsed = []
for fn in plot_files:
try:
parts = fn[:-4].split('_') # strip .csv
gx = int(parts[1][1:]) # X index
gz = int(parts[2][1:]) # Z index
name = " ".join(parts[3:]) if len(parts)>3 else f"Plot({gx},{gz})"
parsed.append({
'id': fn[:-4],
'filename': fn,
'grid_x': gx,
'grid_z': gz,
'name': name,
'x_offset': gx * PLOT_WIDTH,
'z_offset': gz * PLOT_DEPTH
})
except Exception:
st.warning(f"Skip invalid file: {fn}")
parsed.sort(key=lambda p: (p['grid_x'], p['grid_z']))
return parsed
def load_plot_objects(filename, x_offset, z_offset):
# π₯ Load objects from a plot CSV and shift by offsets
path = os.path.join(SAVE_DIR, filename)
try:
df = pd.read_csv(path)
# π‘οΈ Ensure essentials exist
if not all(c in df.columns for c in ['type','pos_x','pos_y','pos_z']):
st.warning(f"Missing cols in {filename} π§")
return []
# π Guarantee obj_id
df['obj_id'] = df.get('obj_id', pd.Series([str(uuid.uuid4()) for _ in df.index]))
# π Fill missing rotation
for col, default in [('rot_x',0.0),('rot_y',0.0),('rot_z',0.0),('rot_order','XYZ')]:
if col not in df.columns:
df[col] = default
objs = []
for _, row in df.iterrows():
o = row.to_dict()
o['pos_x'] += x_offset
o['pos_z'] += z_offset
objs.append(o)
return objs
except FileNotFoundError:
st.error(f"CSV not found: {filename}")
return []
except pd.errors.EmptyDataError:
return []
except Exception as e:
st.error(f"Load error {filename}: {e}")
return []
def save_plot_data(filename, objects_list, px, pz):
# πΎ Save list of new objects relative to plot origin
path = os.path.join(SAVE_DIR, filename)
if not isinstance(objects_list, list):
st.error("π Invalid data format for save")
return False
rel = []
for o in objects_list:
pos = o.get('position', {})
rot = o.get('rotation', {})
typ = o.get('type','Unknown')
oid = o.get('obj_id', str(uuid.uuid4()))
# π Skip bad objects
if not all(k in pos for k in ['x','y','z']) or typ=='Unknown':
continue
rel.append({
'obj_id': oid, 'type': typ,
'pos_x': pos['x']-px, 'pos_y': pos['y'], 'pos_z': pos['z']-pz,
'rot_x': rot.get('_x',0.0), 'rot_y': rot.get('_y',0.0),
'rot_z': rot.get('_z',0.0), 'rot_order': rot.get('_order','XYZ')
})
try:
pd.DataFrame(rel, columns=CSV_COLUMNS).to_csv(path, index=False)
st.success(f"π Saved {len(rel)} to {filename}")
return True
except Exception as e:
st.error(f"Save failed: {e}")
return False
# π Singleton for global world state
@st.cache_resource
def get_game_state():
return GameState(save_dir=SAVE_DIR, csv_filename="world_state.csv")
game_state = get_game_state()
# π§ Session state defaults
st.session_state.setdefault('selected_object','None')
st.session_state.setdefault('selected_category','None')
st.session_state.setdefault('new_plot_name','')
st.session_state.setdefault('js_save_data_result',None)
st.session_state.setdefault('custom_scale', 1.0)
st.session_state.setdefault('custom_rotation_y', 0)
# π Load everything
plots_metadata = load_plot_metadata()
all_initial_objects = []
for p in plots_metadata:
all_initial_objects += load_plot_objects(p['filename'], p['x_offset'], p['z_offset'])
# π₯οΈ Sidebar UI
with st.sidebar:
st.title("ποΈ World Controls")
st.header("π Navigate Plots")
cols = st.columns(2)
i = 0
for p in sorted(plots_metadata, key=lambda x:(x['grid_x'],x['grid_z'])):
label = f"β‘οΈ {p['name']} ({p['grid_x']},{p['grid_z']})"
if cols[i].button(label, key=f"nav_{p['id']}"):
try:
from streamlit_js_eval import streamlit_js_eval
js = f"teleportPlayer({p['x_offset']+PLOT_WIDTH/2},{p['z_offset']+PLOT_DEPTH/2});"
streamlit_js_eval(js_code=js, key=f"tp_{p['id']}")
except Exception as e:
st.error(f"TP fail: {e}")
i = (i+1)%2
st.markdown("---")
st.header("π² Place Objects")
# π Category selector
category_list = list(MODEL_CATEGORIES.keys())
selected_category = st.selectbox(
"Category:",
category_list,
index=category_list.index(st.session_state.selected_category) if st.session_state.selected_category in category_list else 0,
key="selected_category_widget"
)
if selected_category != st.session_state.selected_category:
st.session_state.selected_category = selected_category
if st.session_state.selected_category != "None":
# Default to first item in the new category
st.session_state.selected_object = MODEL_CATEGORIES[selected_category][0]
# πΌοΈ Object selector within the category
if selected_category in MODEL_CATEGORIES:
object_list = MODEL_CATEGORIES[selected_category]
current_object = st.session_state.selected_object
if current_object not in object_list:
current_object = object_list[0]
selected_object = st.selectbox(
"Select:",
object_list,
index=object_list.index(current_object) if current_object in object_list else 0,
key="selected_object_widget"
)
if selected_object != st.session_state.selected_object:
st.session_state.selected_object = selected_object
# βοΈ Scale slider (not shown for the None selection)
if st.session_state.selected_object != "None":
st.session_state.custom_scale = st.slider(
"Scale:",
min_value=0.2,
max_value=3.0,
value=st.session_state.custom_scale,
step=0.1,
key="scale_slider"
)
# π Rotation slider (Y-axis)
st.session_state.custom_rotation_y = st.slider(
"Rotation:",
min_value=0,
max_value=359,
value=st.session_state.custom_rotation_y,
step=15,
key="rotation_slider"
)
st.markdown("---")
st.header("πΎ Save Work")
if st.button("πΎ Save Current Work", key="save_button"):
from streamlit_js_eval import streamlit_js_eval
streamlit_js_eval(js_code="getSaveDataAndPosition();", key="js_save_processor")
st.rerun()
# π New plot naming
with st.expander("Create Named Plot"):
st.text_input("New Plot Name:", key="new_plot_name")
if st.button("Create at Current Position"):
if st.session_state.new_plot_name.strip():
from streamlit_js_eval import streamlit_js_eval
streamlit_js_eval(js_code="getSaveDataForNamedPlot();", key="named_plot_processor")
st.rerun()
# π¨ Handle incoming save data
raw = st.session_state.get("js_save_processor")
if raw:
st.info("π¬ Got save data!")
ok=False
try:
pay = json.loads(raw) if isinstance(raw,str) else raw
pos, objs = pay.get('playerPosition'), pay.get('objectsToSave')
if isinstance(objs,list) and pos:
gx, gz = math.floor(pos['x']/PLOT_WIDTH), math.floor(pos['z']/PLOT_DEPTH)
fn = f"plot_X{gx}_Z{gz}.csv"
if save_plot_data(fn, objs, gx*PLOT_WIDTH, gz*PLOT_DEPTH):
load_plot_metadata.clear()
try:
from streamlit_js_eval import streamlit_js_eval
streamlit_js_eval(js_code="resetNewlyPlacedObjects();", key="reset_js")
except:
pass
game_state.update_state(objs)
ok=True
if not ok:
st.error("β Save error")
except Exception as e:
st.error(f"Err: {e}")
st.session_state.js_save_processor=None
if ok: st.rerun()
# π¨ Handle named plot data
named_raw = st.session_state.get("named_plot_processor")
if named_raw:
st.info("π¬ Got data for named plot!")
ok=False
try:
pay = json.loads(named_raw) if isinstance(named_raw,str) else named_raw
pos, objs = pay.get('playerPosition'), pay.get('objectsToSave')
if isinstance(objs,list) and pos and st.session_state.new_plot_name.strip():
gx, gz = math.floor(pos['x']/PLOT_WIDTH), math.floor(pos['z']/PLOT_DEPTH)
name = st.session_state.new_plot_name.strip().replace(' ', '_')
fn = f"plot_X{gx}_Z{gz}_{name}.csv"
if save_plot_data(fn, objs, gx*PLOT_WIDTH, gz*PLOT_DEPTH):
load_plot_metadata.clear()
try:
from streamlit_js_eval import streamlit_js_eval
streamlit_js_eval(js_code="resetNewlyPlacedObjects();", key="reset_js")
except:
pass
game_state.update_state(objs)
ok=True
st.session_state.new_plot_name = ""
if not ok:
st.error("β Named plot save error")
except Exception as e:
st.error(f"Named plot err: {e}")
st.session_state.named_plot_processor=None
if ok: st.rerun()
# π Main view
st.header("π Infinite Shared 3D World")
st.caption("β‘οΈ Explore, click to build, πΎ to save!")
# π Inject state into JS
state = {
"ALL_INITIAL_OBJECTS": all_initial_objects,
"PLOTS_METADATA": plots_metadata,
"SELECTED_OBJECT_TYPE": st.session_state.selected_object,
"CUSTOM_SCALE": st.session_state.custom_scale,
"CUSTOM_ROTATION_Y": st.session_state.custom_rotation_y * (math.pi / 180), # Convert to radians
"PLOT_WIDTH": PLOT_WIDTH,
"PLOT_DEPTH": PLOT_DEPTH,
"GAME_STATE": game_state.get_state()
}
try:
with open('index.html','r',encoding='utf-8') as f:
html = f.read()
script = f"""
<script>
window.ALL_INITIAL_OBJECTS = {json.dumps(state['ALL_INITIAL_OBJECTS'])};
window.PLOTS_METADATA = {json.dumps(state['PLOTS_METADATA'])};
window.SELECTED_OBJECT_TYPE = {json.dumps(state['SELECTED_OBJECT_TYPE'])};
window.CUSTOM_SCALE = {json.dumps(state['CUSTOM_SCALE'])};
window.CUSTOM_ROTATION_Y = {json.dumps(state['CUSTOM_ROTATION_Y'])};
window.PLOT_WIDTH = {json.dumps(state['PLOT_WIDTH'])};
window.PLOT_DEPTH = {json.dumps(state['PLOT_DEPTH'])};
window.GAME_STATE = {json.dumps(state['GAME_STATE'])};
console.log('π State injected!', {{
objs: window.ALL_INITIAL_OBJECTS.length,
plots: window.PLOTS_METADATA.length,
gs: window.GAME_STATE.length,
scale: window.CUSTOM_SCALE,
rotation: window.CUSTOM_ROTATION_Y
}});
</script>
"""
html = html.replace('</head>', script + '\n</head>', 1)
components.html(html, height=750, scrolling=False)
except FileNotFoundError:
st.error("β index.html missing!")
except Exception as e:
st.error(f"π± HTML inject failed: {e}") |