File size: 8,863 Bytes
f3e82a2
026615f
 
 
61ff302
026615f
 
 
 
 
 
 
 
 
 
 
61ff302
026615f
 
61ff302
026615f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61ff302
 
026615f
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
import os
import json
import re
import 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))
        return [u if isinstance(u, str) else u.get("url") for u in raw] if isinstance(raw, list) else []
    except Exception as e:
        print("BEST ๋กœ๋“œ ์˜ค๋ฅ˜:", e)
        return []


def _save_best(lst):
    try:
        json.dump(lst, open(BEST_FILE, "w"), ensure_ascii=False, indent=2)
        return True
    except Exception as e:
        print("BEST ์ €์žฅ ์˜ค๋ฅ˜:", e)
        return False


# *.hf.space โ†’ Hub URL(์ƒˆ ํƒญ์šฉ) ๋ณ€ํ™˜
def to_hub_space_url(url: str) -> str:
    m = re.match(r"https?://([^-]+)-([^.]+)\.hf\.space(/.*)?", url)
    if m:
        owner, space, _ = m.groups()
        return f"https://huggingface.co/spaces/{owner}/{space}"
    return url


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):
    """iframe์šฉ ์ฃผ์†Œ ๋ณ€ํ™˜"""
    if "huggingface.co/spaces" in url:
        owner, name = url.rstrip("/").split("/spaces/")[1].split("/")[:2]
        return f"https://huggingface.co/spaces/{owner}/{name}/embed", "huggingface", []

    m = re.match(r"https?://([^/]+)\.hf\.space(/.*)?", url)
    if m:
        sub, rest = m.groups()
        static_url = f"https://{sub}.static.hf.space{rest or ''}"
        return static_url, "hfspace", [url]

    return url, "", []


# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 4. HTML ๊ทธ๋ฆฌ๋“œ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def html(cards, pg, total):
    if not cards:
        return "<div style='text-align:center;padding:70px;color:#555;'>ํ‘œ์‹œํ•  ๋ฐฐํฌ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.</div>"

    css = r"""
    <style>
    /* ํŒŒ์Šคํ…” ๋ฐฐ๊ฒฝ */
    body{
        margin:0;padding:0;font-family:Poppins,sans-serif;
        background:linear-gradient(135deg,#fdf4ff 0%,#f6fbff 50%,#fffaf4 100%);
        background-attachment:fixed;
        overflow-x:hidden;overflow-y:auto;
    }
    .container{width:100%;padding:10px 10px var(--bottom-gap,70px);box-sizing:border-box;}
    .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;width:100%;}
    .card{
        background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 10px rgba(0,0,0,0.08);
        height:420px;display:flex;flex-direction:column;position:relative;
    }
    .frame{flex:1;position:relative;overflow:hidden;}
    .frame iframe{
        position:absolute;top:0;left:0;
        width:166.667%;height:166.667%;
        transform:scale(0.6);transform-origin:top left;border:0;
    }
    .frame.huggingface iframe{width:100%!important;height:100%!important;transform:none!important;border:none!important;}
    .frame.hfspace iframe{
        width:200%;height:200%;
        transform:scale(0.5);transform-origin:top left;border:0;
    }
    .foot{height:34px;display:flex;align-items:center;justify-content:center;background:#fafafa;border-top:1px solid #eee;}
    .foot a{font-size:0.85rem;font-weight:600;color:#4a6dd8;text-decoration:none;}
    .foot a:hover{text-decoration:underline;}
    @media(min-width:1200px){.card{height:560px;}}
    @media(max-width:767px){
        .grid{grid-template-columns:1fr;}
        .card{height:480px;}
    }
    </style>"""

    # ๋ฒ„ํŠผ๊ณผ ํ—ค๋” ๋†’์ด๋ฅผ ๊ณ ๋ คํ•ด ์Šคํฌ๋กค ์˜์—ญ ๋™์ ์œผ๋กœ ๊ณ„์‚ฐ
    js = r"""
    <script>
    function adjustGap(){
      const header = document.querySelector('.app-header');
      const buttons = document.querySelector('.button-row');
      const gap = (buttons?.offsetHeight || 60) + 10; // 10px ์—ฌ์œ 
      document.documentElement.style.setProperty('--bottom-gap', gap + 'px');
      const content = document.getElementById('content-area');
      const h = (header?.offsetHeight || 0) + (buttons?.offsetHeight || 60);
      content.style.height = `calc(100vh - ${h}px)`;
    }
    window.addEventListener('load',adjustGap);
    window.addEventListener('resize',adjustGap);
    </script>
    """

    h = css + js + '<div class="container"><div class="grid">'
    for idx, url in enumerate(cards):
        iframe_url, extra_cls, alt_urls = process_url_for_iframe(url)
        frame_class = f"frame {extra_cls}".strip()
        iframe_id = f"iframe-{idx}-{hash(url)%10000}"
        alt_attr = f'data-alternate-urls="{",".join(alt_urls)}"' if alt_urls else ""
        safe_url = to_hub_space_url(url)
        h += f"""
        <div class="card">
          <div class="{frame_class}">
            <iframe id="{iframe_id}" src="{iframe_url}" loading="lazy"
              sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads"
              data-original-url="{url}" {alt_attr}></iframe>
          </div>
          <div class="foot">
            <a href="{safe_url}" target="_blank" rel="noopener noreferrer">โ†— Open in Full Screen (New Tab)</a>
          </div>
        </div>"""
    h += "</div></div>"
    h += f'<div class="page-info">Page {pg} / {total}</div>'
    return h


# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 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>
      <p style="margin:4px 0;font-size:11px;">
        Only high-quality games automatically generated with <b>Vibe Game Craft</b> are showcased here.<br>
        Every game includes its full source code, and anyone can freely copy the <code>index.html</code>
        file from each URL and modify it as desired. All content is released under the <b>Apache&nbsp;2.0</b> license.
      </p>
      <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!important;bottom:0!important;left:0!important;right:0!important;
        height:60px;background:#f0f0f0;padding:10px;text-align:center;
        box-shadow:0 -2px 10px rgba(0,0,0,.05);z-index:10000;
      }
      .button-row button{margin:0 10px;padding:10px 20px;font-size:16px;font-weight:bold;border-radius:50px;}
      #content-area{overflow-y:auto;}
    """

    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()