File size: 8,873 Bytes
8b2d146
b98dc44
f22af82
 
b98dc44
 
 
 
 
f22af82
b98dc44
 
 
 
 
 
 
 
 
 
 
21582cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f22af82
b98dc44
f22af82
 
 
b98dc44
 
f22af82
b98dc44
 
 
2e20ef4
 
 
 
 
 
 
 
 
 
c64b92d
 
 
 
 
2e20ef4
 
 
 
 
 
 
 
 
 
 
 
 
 
c64b92d
 
2e20ef4
 
 
 
 
 
 
 
 
c64b92d
2e20ef4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c64b92d
2e20ef4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b14be0c
2e20ef4
 
 
b16d98a
b98dc44
 
f22af82
 
2e20ef4
 
 
 
 
 
940fa81
2e20ef4
b16d98a
2e20ef4
b14be0c
 
2e20ef4
 
 
b98dc44
 
f22af82
b98dc44
 
2e20ef4
c64b92d
 
 
 
 
 
 
 
2e20ef4
c64b92d
2e20ef4
 
 
 
 
 
 
 
 
 
 
 
c64b92d
2e20ef4
 
 
 
 
 
 
c64b92d
 
 
 
2e20ef4
 
 
21582cd
 
2e20ef4
940fa81
2e20ef4
 
 
 
f22af82
21582cd
 
 
 
 
 
 
 
 
 
 
 
 
 
f22af82
21582cd
 
 
f22af82
 
21582cd
f22af82
b98dc44
 
 
216bae4
b98dc44
940fa81
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
import os, re, time, json, datetime, requests, gradio as gr

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 1. ๊ธฐ๋ณธ ์„ค์ • โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
BEST_FILE, PER_PAGE = "best_games.json", 9

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 2. BEST ๋ฐ์ดํ„ฐ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def _init_best():
    if not os.path.exists(BEST_FILE):
        json.dump([], open(BEST_FILE, "w"))

def _load_best():
    try:
        data = json.load(open(BEST_FILE))
        for it in data:
            if "ts" not in it:
                it["ts"] = int(it.get("timestamp", time.time()))
        return data
    except Exception as e:
        print(f"BEST ๋ฐ์ดํ„ฐ ๋กœ๋“œ ์˜ค๋ฅ˜: {e}")
        return []

def _save_best(data):
    try:
        json.dump(data, open(BEST_FILE, "w"))
        return True
    except Exception as e:
        print(f"BEST ๋ฐ์ดํ„ฐ ์ €์žฅ ์˜ค๋ฅ˜: {e}")
        return False

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 3. URL ์ถ”๊ฐ€ ๊ธฐ๋Šฅ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def add_url_to_best(title, url):
    """์‚ฌ์šฉ์ž๊ฐ€ ์ œ๊ณตํ•œ URL์„ BEST ๋ชฉ๋ก์— ์ถ”๊ฐ€ํ•ฉ๋‹ˆ๋‹ค."""
    try:
        # ํ˜„์žฌ BEST ๋ฐ์ดํ„ฐ ๋กœ๋“œ
        data = _load_best()
        
        # URL์ด ์ด๋ฏธ ์กด์žฌํ•˜๋Š”์ง€ ํ™•์ธ
        for item in data:
            if item.get("url") == url:
                print(f"URL์ด ์ด๋ฏธ ์กด์žฌํ•ฉ๋‹ˆ๋‹ค: {url}")
                return False
        
        # ์ƒˆ ํ•ญ๋ชฉ ์ถ”๊ฐ€
        new_item = {
            "title": title,
            "url": url,
            "ts": int(time.time()),
            "projectId": "",  # ์‚ฌ์šฉ์ž๊ฐ€ ์ง์ ‘ ์ถ”๊ฐ€ํ•˜๋ฏ€๋กœ projectId ์—†์Œ
            "deploymentId": ""  # ์‚ฌ์šฉ์ž๊ฐ€ ์ง์ ‘ ์ถ”๊ฐ€ํ•˜๋ฏ€๋กœ deploymentId ์—†์Œ
        }
        
        data.append(new_item)
        
        # ์‹œ๊ฐ„์ˆœ์œผ๋กœ ์ •๋ ฌ
        data = sorted(data, key=lambda x: x["ts"], reverse=True)
        
        # ์ €์žฅ
        if _save_best(data):
            print(f"URL์ด ์„ฑ๊ณต์ ์œผ๋กœ ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค: {url}")
            return True
        return False
    except Exception as e:
        print(f"URL ์ถ”๊ฐ€ ์˜ค๋ฅ˜: {str(e)}")
        return False

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 4. ํŽ˜์ด์ง€๋„ค์ด์…˜ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def page(lst, pg):
    s = (pg-1) * PER_PAGE
    e = s + PER_PAGE
    total = (len(lst) + PER_PAGE - 1) // PER_PAGE
    return lst[s:e], total

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 5. 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: #f0f0f0;
        overflow: hidden;
    }
    .container {
        position: fixed; /* Changed from relative to fixed */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
        padding: 10px;
        overflow: hidden;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        height: calc(100vh - 70px); /* Fixed height calculation */
        overflow: hidden;
    }
    .card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: 100%; /* Prevent expansion */
    }
    .hdr {
        padding: 8px 12px;
        background: rgba(255,255,255,.95);
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
        z-index: 10;
    }
    .ttl {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .date {
        margin-top: 2px;
        font-size: 0.75rem;
        color: #777;
    }
    .frame {
        flex: 1;
        position: relative;
        overflow: hidden; /* Prevent content overflow */
    }
    .frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 142.857%;
        height: 142.857%;
        transform: scale(0.7);
        transform-origin: top left;
        border: 0;
    }
    .foot {
        padding: 6px 12px;
        background: rgba(255,255,255,.95);
        text-align: right;
        flex-shrink: 0;
        border-top: 1px solid #f0f0f0;
        z-index: 10;
    }
    .link {
        font-size: 0.8rem;
        font-weight: 600;
        color: #4a6dd8;
        text-decoration: none;
    }

    /* ๋ฒ„ํŠผ ์ปจํ…Œ์ด๋„ˆ */
    .button-area {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f0f0f0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 100;
    }
    
    /* ํŽ˜์ด์ง€ ์ •๋ณด */
    .page-info {
        position: fixed;
        bottom: 5px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.8rem;
        color: #777;
        z-index: 101;
    }
    </style>"""
    
    h = css + """
    <div class="container">
        <div class="grid">
    """
    
    for c in cards:
        date = datetime.datetime.fromtimestamp(int(c["ts"])).strftime("%Y-%m-%d")
        h += f"""
        <div class="card">
          <div class="hdr"><p class="ttl">{c['title']}</p><p class="date">{date}</p></div>
          <div class="frame"><iframe src="{c['url']}" loading="lazy"
               allow="accelerometer; camera; encrypted-media; gyroscope;"></iframe></div>
          <div class="foot"><a class="link" href="{c['url']}" target="_blank">์›๋ณธโ†—</a></div>
        </div>"""
    
    h += """
        </div>
    </div>
    """
    
    # ํŽ˜์ด์ง€ ์ •๋ณด
    h += f'<div class="page-info">Page {pg} / {total}</div>'
    
    return h

# โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 6. Gradio Blocks UI โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
def build():
    _init_best()
    with gr.Blocks(title="Vibe Game Craft", css="""
        /* Fix container sizing and prevent scrolling */
        html, body, .gradio-container {
            height: 100vh !important;
            overflow: hidden !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        footer {display: none !important;}
        
        .button-row {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            background: #f0f0f0 !important;
            padding: 10px !important;
            text-align: center !important;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05) !important;
            margin: 0 !important;
            z-index: 1000 !important;
        }
        
        .button-row button {
            margin: 0 10px !important;
            padding: 10px 20px !important;
            font-size: 16px !important;
            font-weight: bold !important;
            border-radius: 50px !important;
        }
        
        /* Fix component height */
        #component-0 {
            height: calc(100vh - 60px) !important;
            overflow: hidden !important;
        }
    """) as demo:
        # ์ƒํƒœ ๋ฐ ์ถœ๋ ฅ
        bp = gr.State(1) 
        out = gr.HTML()
        
        # ํŽ˜์ด์ง€ ๋„ค๋น„๊ฒŒ์ด์…˜ (๋งจ ์•„๋ž˜ ๊ณ ์ •)
        with gr.Row(elem_classes="button-row"):
            b_prev = gr.Button("โ—€ ์ด์ „", size="lg")
            b_next = gr.Button("๋‹ค์Œ โ–ถ", size="lg")
        
        def show_best(p=1): 
            d, t = page(_load_best(), p)
            return html(d, p, t), p
        
        def prev(b):
            b = max(1, b-1)
            h, _ = show_best(b)
            return h, b
        
        def nxt(b):
            maxp = (len(_load_best()) + PER_PAGE - 1) // PER_PAGE
            b = min(maxp, b+1)
            h, _ = show_best(b)
            return h, b
        
        # ์ด๋ฒคํŠธ ์—ฐ๊ฒฐ
        b_prev.click(prev, inputs=[bp], outputs=[out, bp])
        b_next.click(nxt, inputs=[bp], outputs=[out, bp])
        
        # ์ดˆ๊ธฐ ๋กœ๋“œ
        demo.load(show_best, outputs=[out, bp])
    
    return demo

app = build()

if __name__ == "__main__":
    app.launch()