Spaces:
Running
Running
File size: 6,281 Bytes
0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 0299d00 61ff302 |
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 |
import os, json, time, datetime, requests, gradio as gr
# โโโโโโโโโโโโโโโโโโโโโ 1. ๊ธฐ๋ณธ ์ค์ โโโโโโโโโโโโโโโโโโโโโ
BEST_FILE, PER_PAGE = "best_games.json", 9 # โถ ํ์ด์ง๋น 9๊ฐ ์ ์ง
# โโโโโโโโโโโโโโโโโโโโโ 2. BEST ๋ฐ์ดํฐ โโโโโโโโโโโโโโโโโโโโ
def _init_best():
if not os.path.exists(BEST_FILE):
json.dump([], open(BEST_FILE, "w"), ensure_ascii=False)
def _load_best():
try:
raw = json.load(open(BEST_FILE))
# URL ๋ฆฌ์คํธ๋ง ๋ฐํ
if isinstance(raw, list):
return [u if isinstance(u, str) else u.get("url") for u in raw]
return []
except Exception as e:
print("BEST ๋ก๋ ์ค๋ฅ:", e)
return []
def _save_best(lst): # URLโ๋ฆฌ์คํธ ์ ์ฅ
try:
json.dump(lst, open(BEST_FILE, "w"), ensure_ascii=False, indent=2)
return True
except Exception as e:
print("BEST ์ ์ฅ ์ค๋ฅ:", e)
return False
def add_url_to_best(url: str):
data = _load_best()
if url in data:
return False
data.insert(0, url)
return _save_best(data)
# โโโโโโโโโโโโโโโโโโโโโ 3. ์ ํธ โโโโโโโโโโโโโโโโโโโโโโโโโโ
def page(lst, pg):
s, e = (pg-1)*PER_PAGE, (pg-1)*PER_PAGE+PER_PAGE
total = (len(lst)+PER_PAGE-1)//PER_PAGE
return lst[s:e], total
def process_url_for_iframe(url):
# Hugging Face Spaces embed ์ฐ์
if "huggingface.co/spaces" in url:
owner, name = url.rstrip("/").split("/spaces/")[1].split("/")[:2]
return f"https://huggingface.co/spaces/{owner}/{name}/embed", True, []
return url, False, []
# โโโโโโโโโโโโโโโโโโโโโ 4. ์นด๋ ๊ทธ๋ฆฌ๋ HTML โโโโโโโโโโโโโโโ
def html(urls, pg, total):
if not urls:
return '<div style="text-align:center;padding:70px;color:#555;">ํ์ํ ๋ฐฐํฌ๊ฐ ์์ต๋๋ค.</div>'
css = r"""
<style>
body{margin:0;font-family:Poppins,sans-serif;background:#f4f5f7;}
.container{padding:16px;}
.grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
gap:16px;
}
.card{
background:#fff;border-radius:10px;overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,.08);
height:480px; /* โ
๊ธฐ๋ณธ ์นด๋ ๋์ด โ */
transition:transform .2s;
}
@media (min-width:1400px){.card{height:640px;} }/* โ
์์ฃผ ํฐ ํ๋ฉด */
@media (max-width:992px) {.card{height:420px;} }/* ํ๋ธ๋ฆฟ */
@media (max-width:600px) {.card{height:360px;} }/* ๋ชจ๋ฐ์ผ */
.card:hover{transform:translateY(-4px);}
.frame{position:relative;width:100%;height:100%;}
.frame iframe{position:absolute;inset:0;width:100%;height:100%;border:none;}
.page-info{text-align:center;color:#777;margin:12px 0;}
</style>"""
body = '<div class="container"><div class="grid">'
for i, origin in enumerate(urls):
src, is_hf, _ = process_url_for_iframe(origin)
body += f"""
<div class="card">
<div class="frame{' huggingface' if is_hf else ''}">
<iframe src="{src}" loading="lazy"></iframe>
</div>
</div>"""
body += "</div></div>"
page_info = f'<div class="page-info">Page {pg} / {total}</div>'
return css + body + page_info
# โโโโโโโโโโโโโโโโโโโโโ 5. Gradio UI โโโโโโโโโโโโโโโโโโโโโ
def build():
_init_best()
header = """
<style>
.app-header{position:sticky;top:0;text-align:center;background:#fff;
padding:16px 0 8px;border-bottom:1px solid #eee;z-index:1100;}
.badge-row{display:inline-flex;gap:8px;margin:8px 0;}
</style>
<div class="app-header">
<h1 style="margin:0;font-size:28px;">๐ฎ Vibe Game Gallery</h1>
<div class="badge-row">
<a href="https://huggingface.co/spaces/openfree/Vibe-Game" target="_blank">
<img src="https://img.shields.io/static/v1?label=huggingface&message=Vibe%20Game%20Craft&color=800080&labelColor=ffa500&logo=huggingface&logoColor=ffff00&style=for-the-badge">
</a>
<a href="https://huggingface.co/spaces/openfree/Game-Gallery" target="_blank">
<img src="https://img.shields.io/static/v1?label=huggingface&message=Game%20Gallery&color=800080&labelColor=ffa500&logo=huggingface&logoColor=ffff00&style=for-the-badge">
</a>
<a href="https://discord.gg/openfreeai" target="_blank">
<img src="https://img.shields.io/static/v1?label=Discord&message=Openfree%20AI&color=0000ff&labelColor=800080&logo=discord&logoColor=white&style=for-the-badge">
</a>
</div>
</div>"""
global_css = """
footer{display:none !important;}
.button-row{position:fixed;bottom:0;left:0;right:0;height:60px;
background:#f0f0f0;padding:10px;text-align:center;
box-shadow:0 -2px 10px rgba(0,0,0,.05);z-index:1000;}
.button-row button{margin:0 10px;padding:10px 20px;font-size:16px;font-weight:bold;border-radius:50px;}
#content-area{overflow-y:auto;height:calc(100vh - 60px - 120px);}
"""
with gr.Blocks(title="Vibe Game Gallery", css=global_css) as demo:
gr.HTML(header)
out = gr.HTML(elem_id="content-area")
with gr.Row(elem_classes="button-row"):
b_prev = gr.Button("โ ์ด์ ", size="lg")
b_next = gr.Button("๋ค์ โถ", size="lg")
bp = gr.State(1)
def render(p=1):
data, tot = page(_load_best(), p)
return html(data, p, tot), p
b_prev.click(lambda p: render(max(1, p-1)), inputs=bp, outputs=[out, bp])
b_next.click(lambda p: render(p+1), inputs=bp, outputs=[out, bp])
demo.load(render, outputs=[out, bp])
return demo
app = build()
if __name__ == "__main__":
app.launch()
|