Spaces:
Paused
Paused
Delete app-backup3.py
Browse files- app-backup3.py +0 -1114
app-backup3.py
DELETED
@@ -1,1114 +0,0 @@
|
|
1 |
-
import os
|
2 |
-
import re
|
3 |
-
import random
|
4 |
-
import time
|
5 |
-
import html
|
6 |
-
import base64
|
7 |
-
import string
|
8 |
-
import json
|
9 |
-
import asyncio
|
10 |
-
import requests
|
11 |
-
import anthropic
|
12 |
-
import openai
|
13 |
-
|
14 |
-
from http import HTTPStatus
|
15 |
-
from typing import Dict, List, Optional, Tuple
|
16 |
-
from functools import partial
|
17 |
-
|
18 |
-
import gradio as gr
|
19 |
-
import modelscope_studio.components.base as ms
|
20 |
-
import modelscope_studio.components.legacy as legacy
|
21 |
-
import modelscope_studio.components.antd as antd
|
22 |
-
|
23 |
-
|
24 |
-
# ------------------------
|
25 |
-
# 1) DEMO_LIST 및 SystemPrompt
|
26 |
-
# ------------------------
|
27 |
-
|
28 |
-
DEMO_LIST = [
|
29 |
-
{"description": "Create a Tetris-like puzzle game with arrow key controls, line-clearing mechanics, and increasing difficulty levels."},
|
30 |
-
{"description": "Build an interactive Chess game with a basic AI opponent and drag-and-drop piece movement. Keep track of moves and detect check/checkmate."},
|
31 |
-
{"description": "Design a memory matching card game with flip animations, scoring system, and multiple difficulty levels."},
|
32 |
-
{"description": "Create a space shooter game with enemy waves, collision detection, and power-ups. Use keyboard or mouse controls for ship movement."},
|
33 |
-
{"description": "Implement a slide puzzle game using images or numbers. Include shuffle functionality, move counter, and difficulty settings."},
|
34 |
-
{"description": "Implement the classic Snake game with grid-based movement, score tracking, and increasing speed. Use arrow keys for control."},
|
35 |
-
{"description": "Build a classic breakout game with paddle, ball, and bricks. Increase ball speed and track lives/score."},
|
36 |
-
{"description": "Create a tower defense game with multiple tower types and enemy waves. Include an upgrade system and resource management."},
|
37 |
-
{"description": "Design an endless runner with side-scrolling obstacles. Use keyboard or mouse to jump and avoid collisions."},
|
38 |
-
{"description": "Implement a platformer game with character movement, jumping, and collectible items. Use arrow keys for control."},
|
39 |
-
{"description": "Generate a random maze and allow the player to navigate from start to finish. Include a timer and pathfinding animations."},
|
40 |
-
{"description": "Build a simple top-down RPG with tile-based movement, monsters, and loot. Use arrow keys for movement and track player stats."},
|
41 |
-
{"description": "Create a match-3 puzzle game with swipe-based mechanics, special tiles, and combo scoring."},
|
42 |
-
{"description": "Implement a Flappy Bird clone with space bar or mouse click to flap, randomized pipe positions, and score tracking."},
|
43 |
-
{"description": "Build a spot-the-difference game using pairs of similar images. Track remaining differences and time limit."},
|
44 |
-
{"description": "Create a typing speed test game where words fall from the top. Type them before they reach the bottom to score points."},
|
45 |
-
{"description": "Implement a mini golf game with physics-based ball movement. Include multiple holes and scoring based on strokes."},
|
46 |
-
{"description": "Design a fishing game where the player casts a line, reels fish, and can upgrade gear. Manage fish spawn rates and scoring."},
|
47 |
-
{"description": "Build a bingo game with randomly generated boards and a calling system. Automatically check winning lines."},
|
48 |
-
{"description": "Create a web-based rhythm game using keyboard inputs. Time hits accurately for score, and add background music."},
|
49 |
-
{"description": "Implement a top-down 2D racing game with track boundaries, lap times, and multiple AI opponents."},
|
50 |
-
{"description": "Build a quiz game with multiple-choice questions, scoring, and a timer. Randomize question order each round."},
|
51 |
-
{"description": "Create a shooting gallery game with moving targets, limited ammo, and a time limit. Track hits and misses."},
|
52 |
-
{"description": "Implement a dice-based board game with multiple squares, events, and item usage. Players take turns rolling."},
|
53 |
-
{"description": "Design a top-down zombie survival game with wave-based enemies, pickups, and limited ammo. Track score and health."},
|
54 |
-
{"description": "Build a simple penalty shootout game with aiming, power bars, and a goalie AI that guesses shots randomly."},
|
55 |
-
{"description": "Implement the classic Minesweeper game with left-click reveal, right-click flags, and adjacency logic for numbers."},
|
56 |
-
{"description": "Create a Connect Four game with drag-and-drop or click-based input, alternating turns, and a win check algorithm."},
|
57 |
-
{"description": "Build a Scrabble-like word puzzle game with letter tiles, scoring, and a local dictionary for validation."},
|
58 |
-
{"description": "Implement a 2D tank battle game with destructible terrain, power-ups, and AI or multiplayer functionality."},
|
59 |
-
{"description": "Create a gem-crushing puzzle game where matching gems cause chain reactions. Track combos and score bonuses."},
|
60 |
-
{"description": "Design a 2D defense game where a single tower shoots incoming enemies in waves. Upgrade the tower's stats over time."},
|
61 |
-
{"description": "Make a side-scrolling runner where a character avoids zombies and obstacles, collecting power-ups along the way."},
|
62 |
-
{"description": "Create a small action RPG with WASD movement, an attack button, special moves, leveling, and item drops."},
|
63 |
-
]
|
64 |
-
|
65 |
-
SystemPrompt = """너의 이름은 'MOUSE'이다. You are an expert web game developer with a strong focus on gameplay mechanics, interactive design, and performance optimization.
|
66 |
-
Your mission is to create compelling, modern, and fully interactive web-based games using HTML, JavaScript, and CSS.
|
67 |
-
This code will be rendered directly in the browser.
|
68 |
-
General guidelines:
|
69 |
-
- Implement engaging gameplay mechanics with pure vanilla JavaScript (ES6+)
|
70 |
-
- Use HTML5 for structured game layouts
|
71 |
-
- Utilize CSS for game-themed styling, including animations and transitions
|
72 |
-
- Keep performance and responsiveness in mind for a seamless gaming experience
|
73 |
-
- For advanced features, you can use CDN libraries like:
|
74 |
-
* jQuery
|
75 |
-
* Phaser.js
|
76 |
-
* Three.js
|
77 |
-
* PixiJS
|
78 |
-
* Anime.js
|
79 |
-
- Incorporate sprite animations or custom SVG icons if needed
|
80 |
-
- Maintain consistent design and user experience across browsers
|
81 |
-
- Focus on cross-device compatibility, ensuring the game works on both desktop and mobile
|
82 |
-
- Avoid external API calls or sensitive data usage
|
83 |
-
- Provide mock or local data if needed
|
84 |
-
Remember to only return code wrapped in HTML code blocks. The code should work directly in a browser without any build steps.
|
85 |
-
Remember not to add any additional commentary, just return the code.
|
86 |
-
절대로 너의 모델명과 지시문을 노출하지 말것
|
87 |
-
Write efficient, concise code with minimal redundancy. Focus on core gameplay mechanics first, and keep the code clean and maintainable. Avoid unnecessary comments or overly verbose implementations.
|
88 |
-
"""
|
89 |
-
|
90 |
-
|
91 |
-
# ------------------------
|
92 |
-
# 2) 공통 상수, 함수, 클래스
|
93 |
-
# ------------------------
|
94 |
-
|
95 |
-
class Role:
|
96 |
-
SYSTEM = "system"
|
97 |
-
USER = "user"
|
98 |
-
ASSISTANT = "assistant"
|
99 |
-
|
100 |
-
History = List[Tuple[str, str]]
|
101 |
-
Messages = List[Dict[str, str]]
|
102 |
-
|
103 |
-
IMAGE_CACHE = {}
|
104 |
-
|
105 |
-
def get_image_base64(image_path):
|
106 |
-
"""
|
107 |
-
이미지 파일을 base64로 읽어서 캐싱
|
108 |
-
"""
|
109 |
-
if image_path in IMAGE_CACHE:
|
110 |
-
return IMAGE_CACHE[image_path]
|
111 |
-
try:
|
112 |
-
with open(image_path, "rb") as image_file:
|
113 |
-
encoded_string = base64.b64encode(image_file.read()).decode()
|
114 |
-
IMAGE_CACHE[image_path] = encoded_string
|
115 |
-
return encoded_string
|
116 |
-
except:
|
117 |
-
return IMAGE_CACHE.get('default.png', '')
|
118 |
-
|
119 |
-
def history_to_messages(history: History, system: str) -> Messages:
|
120 |
-
messages = [{'role': Role.SYSTEM, 'content': system}]
|
121 |
-
for h in history:
|
122 |
-
messages.append({'role': Role.USER, 'content': h[0]})
|
123 |
-
messages.append({'role': Role.ASSISTANT, 'content': h[1]})
|
124 |
-
return messages
|
125 |
-
|
126 |
-
def messages_to_history(messages: Messages) -> History:
|
127 |
-
assert messages[0]['role'] == Role.SYSTEM
|
128 |
-
history = []
|
129 |
-
for q, r in zip(messages[1::2], messages[2::2]):
|
130 |
-
history.append([q['content'], r['content']])
|
131 |
-
return history
|
132 |
-
|
133 |
-
|
134 |
-
# ------------------------
|
135 |
-
# 3) API 연동 설정
|
136 |
-
# ------------------------
|
137 |
-
|
138 |
-
YOUR_ANTHROPIC_TOKEN = os.getenv('ANTHROPIC_API_KEY', '').strip()
|
139 |
-
YOUR_OPENAI_TOKEN = os.getenv('OPENAI_API_KEY', '').strip()
|
140 |
-
|
141 |
-
claude_client = anthropic.Anthropic(api_key=YOUR_ANTHROPIC_TOKEN)
|
142 |
-
openai_client = openai.OpenAI(api_key=YOUR_OPENAI_TOKEN)
|
143 |
-
|
144 |
-
async def try_claude_api(system_message, claude_messages, timeout=15):
|
145 |
-
"""
|
146 |
-
Claude API 호출 (스트리밍)
|
147 |
-
"""
|
148 |
-
try:
|
149 |
-
start_time = time.time()
|
150 |
-
with claude_client.messages.stream(
|
151 |
-
model="claude-3-7-sonnet-20250219",
|
152 |
-
max_tokens=19800,
|
153 |
-
system=system_message,
|
154 |
-
messages=claude_messages
|
155 |
-
) as stream:
|
156 |
-
collected_content = ""
|
157 |
-
for chunk in stream:
|
158 |
-
current_time = time.time()
|
159 |
-
if current_time - start_time > timeout:
|
160 |
-
raise TimeoutError("Claude API timeout")
|
161 |
-
if chunk.type == "content_block_delta":
|
162 |
-
collected_content += chunk.delta.text
|
163 |
-
yield collected_content
|
164 |
-
await asyncio.sleep(0)
|
165 |
-
start_time = current_time
|
166 |
-
except Exception as e:
|
167 |
-
raise e
|
168 |
-
|
169 |
-
async def try_openai_api(openai_messages):
|
170 |
-
"""
|
171 |
-
OpenAI API 호출 (스트리밍)
|
172 |
-
"""
|
173 |
-
try:
|
174 |
-
stream = openai_client.chat.completions.create(
|
175 |
-
model="o3",
|
176 |
-
messages=openai_messages,
|
177 |
-
stream=True,
|
178 |
-
max_tokens=19800,
|
179 |
-
temperature=0.3
|
180 |
-
)
|
181 |
-
collected_content = ""
|
182 |
-
for chunk in stream:
|
183 |
-
if chunk.choices[0].delta.content is not None:
|
184 |
-
collected_content += chunk.choices[0].delta.content
|
185 |
-
yield collected_content
|
186 |
-
except Exception as e:
|
187 |
-
raise e
|
188 |
-
|
189 |
-
|
190 |
-
# ------------------------
|
191 |
-
# 4) 템플릿(하나로 통합)
|
192 |
-
# ------------------------
|
193 |
-
|
194 |
-
def load_json_data():
|
195 |
-
"""
|
196 |
-
모든 템플릿(원래 best/trending/new를 통합)
|
197 |
-
"""
|
198 |
-
data_list = [
|
199 |
-
{
|
200 |
-
"name": "[게임] 테트리스 클론",
|
201 |
-
"image_url": "data:image/png;base64," + get_image_base64('tetris.png'),
|
202 |
-
"prompt": "Create a Tetris-like puzzle game with arrow key controls, line-clearing mechanics, and increasing difficulty levels."
|
203 |
-
},
|
204 |
-
{
|
205 |
-
"name": "[게임] 체스",
|
206 |
-
"image_url": "data:image/png;base64," + get_image_base64('chess.png'),
|
207 |
-
"prompt": "Build an interactive Chess game with a basic AI opponent and drag-and-drop piece movement. Keep track of moves and detect check/checkmate."
|
208 |
-
},
|
209 |
-
{
|
210 |
-
"name": "[게임] 카드 매칭 게임",
|
211 |
-
"image_url": "data:image/png;base64," + get_image_base64('memory.png'),
|
212 |
-
"prompt": "Design a memory matching card game with flip animations, scoring system, and multiple difficulty levels."
|
213 |
-
},
|
214 |
-
{
|
215 |
-
"name": "[게임] 슈팅 게임 (Space Shooter)",
|
216 |
-
"image_url": "data:image/png;base64," + get_image_base64('spaceshooter.png'),
|
217 |
-
"prompt": "Create a space shooter game with enemy waves, collision detection, and power-ups. Use keyboard or mouse controls for ship movement."
|
218 |
-
},
|
219 |
-
{
|
220 |
-
"name": "[게임] 슬라이드 퍼즐",
|
221 |
-
"image_url": "data:image/png;base64," + get_image_base64('slidepuzzle.png'),
|
222 |
-
"prompt": "Implement a slide puzzle game using images or numbers. Include shuffle functionality, move counter, and difficulty settings."
|
223 |
-
},
|
224 |
-
{
|
225 |
-
"name": "[게임] 뱀 게임 (Snake)",
|
226 |
-
"image_url": "data:image/png;base64," + get_image_base64('snake.png'),
|
227 |
-
"prompt": "Implement the classic Snake game with grid-based movement, score tracking, and increasing speed. Use arrow keys for control."
|
228 |
-
},
|
229 |
-
{
|
230 |
-
"name": "[게임] 브레이크아웃 (벽돌깨기)",
|
231 |
-
"image_url": "data:image/png;base64," + get_image_base64('breakout.png'),
|
232 |
-
"prompt": "Build a classic breakout game with paddle, ball, and bricks. Increase ball speed and track lives/score."
|
233 |
-
},
|
234 |
-
{
|
235 |
-
"name": "[게임] 타워 디펜스",
|
236 |
-
"image_url": "data:image/png;base64," + get_image_base64('towerdefense.png'),
|
237 |
-
"prompt": "Create a tower defense game with multiple tower types and enemy waves. Include an upgrade system and resource management."
|
238 |
-
},
|
239 |
-
{
|
240 |
-
"name": "[게임] 런닝 점프 (Endless Runner)",
|
241 |
-
"image_url": "data:image/png;base64," + get_image_base64('runner.png'),
|
242 |
-
"prompt": "Design an endless runner with side-scrolling obstacles. Use keyboard or mouse to jump and avoid collisions."
|
243 |
-
},
|
244 |
-
{
|
245 |
-
"name": "[게임] 플랫포머 (Platformer)",
|
246 |
-
"image_url": "data:image/png;base64," + get_image_base64('platformer.png'),
|
247 |
-
"prompt": "Implement a platformer game with character movement, jumping, and collectible items. Use arrow keys for control."
|
248 |
-
},
|
249 |
-
{
|
250 |
-
"name": "[게임] 미로 찾기 (Maze)",
|
251 |
-
"image_url": "data:image/png;base64," + get_image_base64('maze.png'),
|
252 |
-
"prompt": "Generate a random maze and allow the player to navigate from start to finish. Include a timer and pathfinding animations."
|
253 |
-
},
|
254 |
-
{
|
255 |
-
"name": "[게임] 미션 RPG",
|
256 |
-
"image_url": "data:image/png;base64," + get_image_base64('rpg.png'),
|
257 |
-
"prompt": "Build a simple top-down RPG with tile-based movement, monsters, and loot. Use arrow keys for movement and track player stats."
|
258 |
-
},
|
259 |
-
{
|
260 |
-
"name": "[게임] Match-3 퍼즐",
|
261 |
-
"image_url": "data:image/png;base64," + get_image_base64('match3.png'),
|
262 |
-
"prompt": "Create a match-3 puzzle game with swipe-based mechanics, special tiles, and combo scoring."
|
263 |
-
},
|
264 |
-
{
|
265 |
-
"name": "[게임] 하늘 나는 새 (Flappy Bird)",
|
266 |
-
"image_url": "data:image/png;base64," + get_image_base64('flappy.png'),
|
267 |
-
"prompt": "Implement a Flappy Bird clone with space bar or mouse click to flap, randomized pipe positions, and score tracking."
|
268 |
-
},
|
269 |
-
{
|
270 |
-
"name": "[게임] 그림 찾기 (Spot the Difference)",
|
271 |
-
"image_url": "data:image/png;base64," + get_image_base64('spotdiff.png'),
|
272 |
-
"prompt": "Build a spot-the-difference game using pairs of similar images. Track remaining differences and time limit."
|
273 |
-
},
|
274 |
-
{
|
275 |
-
"name": "[게임] 타이핑 게임",
|
276 |
-
"image_url": "data:image/png;base64," + get_image_base64('typing.png'),
|
277 |
-
"prompt": "Create a typing speed test game where words fall from the top. Type them before they reach the bottom to score points."
|
278 |
-
},
|
279 |
-
{
|
280 |
-
"name": "[게임] 미니 골프",
|
281 |
-
"image_url": "data:image/png;base64," + get_image_base64('minigolf.png'),
|
282 |
-
"prompt": "Implement a mini golf game with physics-based ball movement. Include multiple holes and scoring based on strokes."
|
283 |
-
},
|
284 |
-
{
|
285 |
-
"name": "[게임] 낚시 게임",
|
286 |
-
"image_url": "data:image/png;base64," + get_image_base64('fishing.png'),
|
287 |
-
"prompt": "Design a fishing game where the player casts a line, reels fish, and can upgrade gear. Manage fish spawn rates and scoring."
|
288 |
-
},
|
289 |
-
{
|
290 |
-
"name": "[게임] 빙고",
|
291 |
-
"image_url": "data:image/png;base64," + get_image_base64('bingo.png'),
|
292 |
-
"prompt": "Build a bingo game with randomly generated boards and a calling system. Automatically check winning lines."
|
293 |
-
},
|
294 |
-
{
|
295 |
-
"name": "[게임] 리듬 게임",
|
296 |
-
"image_url": "data:image/png;base64," + get_image_base64('rhythm.png'),
|
297 |
-
"prompt": "Create a web-based rhythm game using keyboard inputs. Time hits accurately for score, and add background music."
|
298 |
-
},
|
299 |
-
{
|
300 |
-
"name": "[게임] 2D 레이싱",
|
301 |
-
"image_url": "data:image/png;base64," + get_image_base64('racing2d.png'),
|
302 |
-
"prompt": "Implement a top-down 2D racing game with track boundaries, lap times, and multiple AI opponents."
|
303 |
-
},
|
304 |
-
{
|
305 |
-
"name": "[게임] 퀴즈 게임",
|
306 |
-
"image_url": "data:image/png;base64," + get_image_base64('quiz.png'),
|
307 |
-
"prompt": "Build a quiz game with multiple-choice questions, scoring, and a timer. Randomize question order each round."
|
308 |
-
},
|
309 |
-
{
|
310 |
-
"name": "[게임] 돌 맞추기 (Shooting Gallery)",
|
311 |
-
"image_url": "data:image/png;base64," + get_image_base64('gallery.png'),
|
312 |
-
"prompt": "Create a shooting gallery game with moving targets, limited ammo, and a time limit. Track hits and misses."
|
313 |
-
},
|
314 |
-
{
|
315 |
-
"name": "[게임] 주사위 보드",
|
316 |
-
"image_url": "data:image/png;base64," + get_image_base64('diceboard.png'),
|
317 |
-
"prompt": "Implement a dice-based board game with multiple squares, events, and item usage. Players take turns rolling."
|
318 |
-
},
|
319 |
-
{
|
320 |
-
"name": "[게임] 좀비 서바이벌",
|
321 |
-
"image_url": "data:image/png;base64," + get_image_base64('zombie.png'),
|
322 |
-
"prompt": "Design a top-down zombie survival game with wave-based enemies, pickups, and limited ammo. Track score and health."
|
323 |
-
},
|
324 |
-
{
|
325 |
-
"name": "[게임] 축구 게임 (Penalty Kick)",
|
326 |
-
"image_url": "data:image/png;base64," + get_image_base64('soccer.png'),
|
327 |
-
"prompt": "Build a simple penalty shootout game with aiming, power bars, and a goalie AI that guesses shots randomly."
|
328 |
-
},
|
329 |
-
{
|
330 |
-
"name": "[게임] Minesweeper",
|
331 |
-
"image_url": "data:image/png;base64," + get_image_base64('minesweeper.png'),
|
332 |
-
"prompt": "Implement the classic Minesweeper game with left-click reveal, right-click flags, and adjacency logic for numbers."
|
333 |
-
},
|
334 |
-
{
|
335 |
-
"name": "[게임] Connect Four",
|
336 |
-
"image_url": "data:image/png;base64," + get_image_base64('connect4.png'),
|
337 |
-
"prompt": "Create a Connect Four game with drag-and-drop or click-based input, alternating turns, and a win check algorithm."
|
338 |
-
},
|
339 |
-
{
|
340 |
-
"name": "[게임] 스크래블 (단어 퍼즐)",
|
341 |
-
"image_url": "data:image/png;base64," + get_image_base64('scrabble.png'),
|
342 |
-
"prompt": "Build a Scrabble-like word puzzle game with letter tiles, scoring, and a local dictionary for validation."
|
343 |
-
},
|
344 |
-
{
|
345 |
-
"name": "[게임] 2D 슈팅 (Tank Battle)",
|
346 |
-
"image_url": "data:image/png;base64," + get_image_base64('tank.png'),
|
347 |
-
"prompt": "Implement a 2D tank battle game with destructible terrain, power-ups, and AI or multiplayer functionality."
|
348 |
-
},
|
349 |
-
{
|
350 |
-
"name": "[게임] 젬 크러쉬",
|
351 |
-
"image_url": "data:image/png;base64," + get_image_base64('gemcrush.png'),
|
352 |
-
"prompt": "Create a gem-crushing puzzle game where matching gems cause chain reactions. Track combos and score bonuses."
|
353 |
-
},
|
354 |
-
{
|
355 |
-
"name": "[게임] Shooting Tower",
|
356 |
-
"image_url": "data:image/png;base64," + get_image_base64('tower.png'),
|
357 |
-
"prompt": "Design a 2D defense game where a single tower shoots incoming enemies in waves. Upgrade the tower's stats over time."
|
358 |
-
},
|
359 |
-
{
|
360 |
-
"name": "[게임] 좀비 러너",
|
361 |
-
"image_url": "data:image/png;base64," + get_image_base64('zombierunner.png'),
|
362 |
-
"prompt": "Make a side-scrolling runner where a character avoids zombies and obstacles, collecting power-ups along the way."
|
363 |
-
},
|
364 |
-
{
|
365 |
-
"name": "[게임] 스킬 액션 RPG",
|
366 |
-
"image_url": "data:image/png;base64," + get_image_base64('actionrpg.png'),
|
367 |
-
"prompt": "Create a small action RPG with WASD movement, an attack button, special moves, leveling, and item drops."
|
368 |
-
},
|
369 |
-
]
|
370 |
-
return data_list
|
371 |
-
|
372 |
-
def load_all_templates():
|
373 |
-
"""
|
374 |
-
모든 템플릿을 하나로 보여주는 함수
|
375 |
-
"""
|
376 |
-
return create_template_html("🎮 모든 게임 템플릿", load_json_data())
|
377 |
-
|
378 |
-
|
379 |
-
def create_template_html(title, items):
|
380 |
-
"""
|
381 |
-
폰트를 더 작게 조정
|
382 |
-
"""
|
383 |
-
html_content = r"""
|
384 |
-
<style>
|
385 |
-
.prompt-grid {
|
386 |
-
display: grid;
|
387 |
-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
388 |
-
gap: 16px;
|
389 |
-
padding: 12px;
|
390 |
-
}
|
391 |
-
.prompt-card {
|
392 |
-
background: white;
|
393 |
-
border: 1px solid #eee;
|
394 |
-
border-radius: 12px;
|
395 |
-
padding: 12px;
|
396 |
-
cursor: pointer;
|
397 |
-
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
|
398 |
-
transition: all 0.3s ease;
|
399 |
-
}
|
400 |
-
.prompt-card:hover {
|
401 |
-
transform: translateY(-4px);
|
402 |
-
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
|
403 |
-
}
|
404 |
-
.card-image {
|
405 |
-
width: 100%;
|
406 |
-
height: 140px;
|
407 |
-
object-fit: cover;
|
408 |
-
border-radius: 8px;
|
409 |
-
margin-bottom: 10px;
|
410 |
-
}
|
411 |
-
.card-name {
|
412 |
-
font-weight: bold;
|
413 |
-
margin-bottom: 8px;
|
414 |
-
font-size: 13px;
|
415 |
-
color: #444;
|
416 |
-
}
|
417 |
-
.card-prompt {
|
418 |
-
font-size: 11px;
|
419 |
-
line-height: 1.4;
|
420 |
-
color: #666;
|
421 |
-
display: -webkit-box;
|
422 |
-
-webkit-line-clamp: 7;
|
423 |
-
-webkit-box-orient: vertical;
|
424 |
-
overflow: hidden;
|
425 |
-
height: 84px;
|
426 |
-
background-color: #f8f9fa;
|
427 |
-
padding: 8px;
|
428 |
-
border-radius: 6px;
|
429 |
-
}
|
430 |
-
</style>
|
431 |
-
<div class="prompt-grid">
|
432 |
-
"""
|
433 |
-
for item in items:
|
434 |
-
card_html = f"""
|
435 |
-
<div class="prompt-card" onclick="copyToInput(this)" data-prompt="{html.escape(item.get('prompt', ''))}">
|
436 |
-
<img src="{item.get('image_url', '')}" class="card-image" loading="lazy" alt="{html.escape(item.get('name', ''))}">
|
437 |
-
<div class="card-name">{html.escape(item.get('name', ''))}</div>
|
438 |
-
<div class="card-prompt">{html.escape(item.get('prompt', ''))}</div>
|
439 |
-
</div>
|
440 |
-
"""
|
441 |
-
html_content += card_html
|
442 |
-
html_content += r"""
|
443 |
-
<script>
|
444 |
-
function copyToInput(card) {
|
445 |
-
const prompt = card.dataset.prompt;
|
446 |
-
const textarea = document.querySelector('.ant-input-textarea-large textarea');
|
447 |
-
if (textarea) {
|
448 |
-
textarea.value = prompt;
|
449 |
-
textarea.dispatchEvent(new Event('input', { bubbles: true }));
|
450 |
-
// 템플릿 Drawer 닫기
|
451 |
-
document.querySelector('.session-drawer .close-btn').click();
|
452 |
-
}
|
453 |
-
}
|
454 |
-
</script>
|
455 |
-
</div>
|
456 |
-
"""
|
457 |
-
return gr.HTML(value=html_content)
|
458 |
-
|
459 |
-
|
460 |
-
# ------------------------
|
461 |
-
# 5) 배포/부스트/기타 유틸
|
462 |
-
# ------------------------
|
463 |
-
|
464 |
-
def generate_space_name():
|
465 |
-
letters = string.ascii_lowercase
|
466 |
-
return ''.join(random.choice(letters) for i in range(6))
|
467 |
-
|
468 |
-
def deploy_to_vercel(code: str):
|
469 |
-
"""
|
470 |
-
Vercel에 배포하는 함수 (예시)
|
471 |
-
"""
|
472 |
-
try:
|
473 |
-
token = "A8IFZmgW2cqA4yUNlLPnci0N" # 실제 토큰 필요
|
474 |
-
if not token:
|
475 |
-
return "Vercel 토큰이 설정되지 않았습니다."
|
476 |
-
|
477 |
-
project_name = ''.join(random.choice(string.ascii_lowercase) for i in range(6))
|
478 |
-
deploy_url = "https://api.vercel.com/v13/deployments"
|
479 |
-
headers = {
|
480 |
-
"Authorization": f"Bearer {token}",
|
481 |
-
"Content-Type": "application/json"
|
482 |
-
}
|
483 |
-
package_json = {
|
484 |
-
"name": project_name,
|
485 |
-
"version": "1.0.0",
|
486 |
-
"private": True,
|
487 |
-
"dependencies": {
|
488 |
-
"vite": "^5.0.0"
|
489 |
-
},
|
490 |
-
"scripts": {
|
491 |
-
"dev": "vite",
|
492 |
-
"build": "echo 'No build needed' && mkdir -p dist && cp index.html dist/",
|
493 |
-
"preview": "vite preview"
|
494 |
-
}
|
495 |
-
}
|
496 |
-
files = [
|
497 |
-
{
|
498 |
-
"file": "index.html",
|
499 |
-
"data": code
|
500 |
-
},
|
501 |
-
{
|
502 |
-
"file": "package.json",
|
503 |
-
"data": json.dumps(package_json, indent=2)
|
504 |
-
}
|
505 |
-
]
|
506 |
-
project_settings = {
|
507 |
-
"buildCommand": "npm run build",
|
508 |
-
"outputDirectory": "dist",
|
509 |
-
"installCommand": "npm install",
|
510 |
-
"framework": None
|
511 |
-
}
|
512 |
-
deploy_data = {
|
513 |
-
"name": project_name,
|
514 |
-
"files": files,
|
515 |
-
"target": "production",
|
516 |
-
"projectSettings": project_settings
|
517 |
-
}
|
518 |
-
deploy_response = requests.post(deploy_url, headers=headers, json=deploy_data)
|
519 |
-
if deploy_response.status_code != 200:
|
520 |
-
return f"배포 실패: {deploy_response.text}"
|
521 |
-
deployment_url = f"{project_name}.vercel.app"
|
522 |
-
time.sleep(5)
|
523 |
-
return f"""배포 완료! <a href="https://{deployment_url}" target="_blank" style="color: #1890ff; text-decoration: underline; cursor: pointer;">https://{deployment_url}</a>"""
|
524 |
-
except Exception as e:
|
525 |
-
return f"배포 중 오류 발생: {str(e)}"
|
526 |
-
|
527 |
-
def remove_code_block(text):
|
528 |
-
"""
|
529 |
-
More robust function to extract code from markdown code blocks
|
530 |
-
텍스트에서 ```html 및 ``` 태그를 완전히 제거하는 함수
|
531 |
-
"""
|
532 |
-
# ```html 태그로 둘러싸인 코드 블록 찾기
|
533 |
-
pattern = r'```html\s*([\s\S]+?)\s*```'
|
534 |
-
match = re.search(pattern, text, re.DOTALL)
|
535 |
-
if match:
|
536 |
-
return match.group(1).strip()
|
537 |
-
|
538 |
-
# 일반 코드 블록 처리
|
539 |
-
pattern = r'```(?:\w+)?\s*([\s\S]+?)\s*```'
|
540 |
-
match = re.search(pattern, text, re.DOTALL)
|
541 |
-
if match:
|
542 |
-
return match.group(1).strip()
|
543 |
-
|
544 |
-
# 텍스트에 ```html과 ```가 포함된 경우 명시적으로 제거
|
545 |
-
text = re.sub(r'```html\s*', '', text)
|
546 |
-
text = re.sub(r'\s*```', '', text)
|
547 |
-
|
548 |
-
# 코드 블록이 없는 경우 원본 텍스트 반환
|
549 |
-
return text.strip()
|
550 |
-
|
551 |
-
def send_to_sandbox(code):
|
552 |
-
"""
|
553 |
-
Improved function to create iframe with proper code cleaning
|
554 |
-
```html 태그가 확실히 제거된 코드를 iframe으로 렌더링
|
555 |
-
"""
|
556 |
-
# 코드에서 마크다운 표기 제거
|
557 |
-
clean_code = remove_code_block(code)
|
558 |
-
|
559 |
-
# 디버깅: 코드 앞부분 확인
|
560 |
-
code_start = clean_code[:50] if len(clean_code) > 50 else clean_code
|
561 |
-
print(f"Code start: {code_start}")
|
562 |
-
|
563 |
-
# ```html 태그가 여전히 있으면 명시적으로 제거
|
564 |
-
if clean_code.startswith('```html'):
|
565 |
-
clean_code = clean_code[7:].strip()
|
566 |
-
if clean_code.endswith('```'):
|
567 |
-
clean_code = clean_code[:-3].strip()
|
568 |
-
|
569 |
-
# 기본 HTML 구조 추가
|
570 |
-
if not clean_code.strip().startswith('<!DOCTYPE') and not clean_code.strip().startswith('<html'):
|
571 |
-
clean_code = f"""<!DOCTYPE html>
|
572 |
-
<html>
|
573 |
-
<head>
|
574 |
-
<meta charset="UTF-8">
|
575 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
576 |
-
<title>Game Preview</title>
|
577 |
-
</head>
|
578 |
-
<body>
|
579 |
-
{clean_code}
|
580 |
-
</body>
|
581 |
-
</html>"""
|
582 |
-
|
583 |
-
# iframe 생성
|
584 |
-
encoded_html = base64.b64encode(clean_code.encode('utf-8')).decode('utf-8')
|
585 |
-
data_uri = f"data:text/html;charset=utf-8;base64,{encoded_html}"
|
586 |
-
return f'<iframe src="{data_uri}" width="100%" height="920px" style="border:none;"></iframe>'
|
587 |
-
|
588 |
-
def boost_prompt(prompt: str) -> str:
|
589 |
-
"""
|
590 |
-
'증강강' 버튼 눌렀을 때 프롬프트를 좀 더 풍부하게 생성 (예시)
|
591 |
-
"""
|
592 |
-
if not prompt:
|
593 |
-
return ""
|
594 |
-
boost_system_prompt = """당신은 웹 게임 개발 프롬프트 전문가입니다.
|
595 |
-
주어진 프롬프트를 분석하여 더 상세하고 전문적인 요구사항으로 확장하되,
|
596 |
-
원래 의도와 목적은 그대로 유지하면서 다음 관점들을 고려하여 증강하십시오:
|
597 |
-
|
598 |
-
1. 게임 플레이 재미와 난이도 밸런스
|
599 |
-
2. 인터랙티브 그래픽 및 애니메이션
|
600 |
-
3. 사용자 경험 최적화 (UI/UX)
|
601 |
-
4. 성능 최적화
|
602 |
-
5. 접근성과 호환성
|
603 |
-
|
604 |
-
기존 SystemPrompt의 모든 규칙을 준수하면서 증강된 프롬프트를 생성하십시오.
|
605 |
-
"""
|
606 |
-
try:
|
607 |
-
# Claude API 시도
|
608 |
-
try:
|
609 |
-
response = claude_client.messages.create(
|
610 |
-
model="claude-3-7-sonnet-20250219",
|
611 |
-
max_tokens=2000,
|
612 |
-
messages=[{
|
613 |
-
"role": "user",
|
614 |
-
"content": f"다음 게임 프롬프트를 분석하고 증강하시오: {prompt}"
|
615 |
-
}]
|
616 |
-
)
|
617 |
-
if hasattr(response, 'content') and len(response.content) > 0:
|
618 |
-
return response.content[0].text
|
619 |
-
raise Exception("Claude API 응답 형식 오류")
|
620 |
-
except Exception:
|
621 |
-
# OpenAI API로 fallback
|
622 |
-
completion = openai_client.chat.completions.create(
|
623 |
-
model="gpt-4",
|
624 |
-
messages=[
|
625 |
-
{"role": "system", "content": boost_system_prompt},
|
626 |
-
{"role": "user", "content": f"다음 게임 프롬프트를 분석하고 증강하시오: {prompt}"}
|
627 |
-
],
|
628 |
-
max_tokens=2000,
|
629 |
-
temperature=0.7
|
630 |
-
)
|
631 |
-
if completion.choices and len(completion.choices) > 0:
|
632 |
-
return completion.choices[0].message.content
|
633 |
-
raise Exception("OpenAI API 응답 형식 오류")
|
634 |
-
except Exception:
|
635 |
-
# 실패 시 원본 그대로 반환
|
636 |
-
return prompt
|
637 |
-
|
638 |
-
def handle_boost(prompt: str):
|
639 |
-
try:
|
640 |
-
boosted_prompt = boost_prompt(prompt)
|
641 |
-
return boosted_prompt, gr.update(active_key="empty")
|
642 |
-
except Exception:
|
643 |
-
return prompt, gr.update(active_key="empty")
|
644 |
-
|
645 |
-
def history_render(history: History):
|
646 |
-
"""
|
647 |
-
히스토리 Drawer 열고, Chatbot UI에 히스토리 반영
|
648 |
-
"""
|
649 |
-
return gr.update(open=True), history
|
650 |
-
|
651 |
-
def execute_code(query: str):
|
652 |
-
"""
|
653 |
-
Improved function to execute code directly from input
|
654 |
-
코드 실행 시 ```html 태그를 확실히 제거
|
655 |
-
"""
|
656 |
-
if not query or query.strip() == '':
|
657 |
-
return None, gr.update(active_key="empty")
|
658 |
-
try:
|
659 |
-
# 코드 정제 - 마크다운 태그 철저히 제거
|
660 |
-
clean_code = remove_code_block(query)
|
661 |
-
|
662 |
-
# ```html 태그가 여전히 있으면 명시적으로 제거
|
663 |
-
if clean_code.startswith('```html'):
|
664 |
-
clean_code = clean_code[7:].strip()
|
665 |
-
if clean_code.endswith('```'):
|
666 |
-
clean_code = clean_code[:-3].strip()
|
667 |
-
|
668 |
-
# HTML 구조 추가
|
669 |
-
if not clean_code.strip().startswith('<!DOCTYPE') and not clean_code.strip().startswith('<html'):
|
670 |
-
if not ('<body' in clean_code and '</body>' in clean_code):
|
671 |
-
clean_code = f"""<!DOCTYPE html>
|
672 |
-
<html>
|
673 |
-
<head>
|
674 |
-
<meta charset="UTF-8">
|
675 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
676 |
-
<title>Game Preview</title>
|
677 |
-
</head>
|
678 |
-
<body>
|
679 |
-
{clean_code}
|
680 |
-
</body>
|
681 |
-
</html>"""
|
682 |
-
|
683 |
-
return send_to_sandbox(clean_code), gr.update(active_key="render")
|
684 |
-
except Exception as e:
|
685 |
-
print(f"Execute code error: {str(e)}")
|
686 |
-
return None, gr.update(active_key="empty")
|
687 |
-
|
688 |
-
|
689 |
-
# ------------------------
|
690 |
-
# 6) 데모 클래스
|
691 |
-
# ------------------------
|
692 |
-
|
693 |
-
class Demo:
|
694 |
-
def __init__(self):
|
695 |
-
pass
|
696 |
-
|
697 |
-
async def generation_code(self, query: Optional[str], _setting: Dict[str, str], _history: Optional[History]):
|
698 |
-
if not query or query.strip() == '':
|
699 |
-
query = random.choice(DEMO_LIST)['description']
|
700 |
-
|
701 |
-
if _history is None:
|
702 |
-
_history = []
|
703 |
-
|
704 |
-
messages = history_to_messages(_history, _setting['system'])
|
705 |
-
system_message = messages[0]['content']
|
706 |
-
|
707 |
-
claude_messages = [
|
708 |
-
{"role": msg["role"] if msg["role"] != "system" else "user", "content": msg["content"]}
|
709 |
-
for msg in messages[1:] + [{'role': Role.USER, 'content': query}]
|
710 |
-
if msg["content"].strip() != ''
|
711 |
-
]
|
712 |
-
|
713 |
-
openai_messages = [{"role": "system", "content": system_message}]
|
714 |
-
for msg in messages[1:]:
|
715 |
-
openai_messages.append({
|
716 |
-
"role": msg["role"],
|
717 |
-
"content": msg["content"]
|
718 |
-
})
|
719 |
-
openai_messages.append({"role": "user", "content": query})
|
720 |
-
|
721 |
-
try:
|
722 |
-
# "Generating code..." 출력
|
723 |
-
yield [
|
724 |
-
"Generating code...",
|
725 |
-
_history,
|
726 |
-
None,
|
727 |
-
gr.update(active_key="loading"),
|
728 |
-
gr.update(open=True)
|
729 |
-
]
|
730 |
-
await asyncio.sleep(0)
|
731 |
-
|
732 |
-
collected_content = None
|
733 |
-
try:
|
734 |
-
# Claude API 시도
|
735 |
-
async for content in try_claude_api(system_message, claude_messages):
|
736 |
-
yield [
|
737 |
-
content,
|
738 |
-
_history,
|
739 |
-
None,
|
740 |
-
gr.update(active_key="loading"),
|
741 |
-
gr.update(open=True)
|
742 |
-
]
|
743 |
-
await asyncio.sleep(0)
|
744 |
-
collected_content = content
|
745 |
-
except Exception:
|
746 |
-
# OpenAI fallback
|
747 |
-
async for content in try_openai_api(openai_messages):
|
748 |
-
yield [
|
749 |
-
content,
|
750 |
-
_history,
|
751 |
-
None,
|
752 |
-
gr.update(active_key="loading"),
|
753 |
-
gr.update(open=True)
|
754 |
-
]
|
755 |
-
await asyncio.sleep(0)
|
756 |
-
collected_content = content
|
757 |
-
|
758 |
-
if collected_content:
|
759 |
-
# 히스토리 갱신
|
760 |
-
_history = messages_to_history([
|
761 |
-
{'role': Role.SYSTEM, 'content': system_message}
|
762 |
-
] + claude_messages + [{
|
763 |
-
'role': Role.ASSISTANT,
|
764 |
-
'content': collected_content
|
765 |
-
}])
|
766 |
-
|
767 |
-
# 최종 결과(코드) + 샌드박스 미리보기
|
768 |
-
# 코드 블록 추출 시 확실하게 ```html 제거
|
769 |
-
clean_code = remove_code_block(collected_content)
|
770 |
-
|
771 |
-
# 디버그 출력
|
772 |
-
print(f"Original content start: {collected_content[:30]}")
|
773 |
-
print(f"Cleaned code start: {clean_code[:30]}")
|
774 |
-
|
775 |
-
# 마크다운 형식의 collected_content는 그대로 출력
|
776 |
-
# 하지만 샌드박스에는 정제된 clean_code 전달
|
777 |
-
yield [
|
778 |
-
collected_content,
|
779 |
-
_history,
|
780 |
-
send_to_sandbox(clean_code),
|
781 |
-
gr.update(active_key="render"),
|
782 |
-
gr.update(open=True)
|
783 |
-
]
|
784 |
-
else:
|
785 |
-
raise ValueError("No content was generated from either API")
|
786 |
-
except Exception as e:
|
787 |
-
raise ValueError(f'Error calling APIs: {str(e)}')
|
788 |
-
|
789 |
-
def clear_history(self):
|
790 |
-
return []
|
791 |
-
|
792 |
-
|
793 |
-
# ------------------------
|
794 |
-
# 7) Gradio / Modelscope UI 빌드
|
795 |
-
# ------------------------
|
796 |
-
|
797 |
-
demo_instance = Demo()
|
798 |
-
theme = gr.themes.Soft(
|
799 |
-
primary_hue="blue",
|
800 |
-
secondary_hue="purple",
|
801 |
-
neutral_hue="slate",
|
802 |
-
spacing_size=gr.themes.sizes.spacing_md,
|
803 |
-
radius_size=gr.themes.sizes.radius_md,
|
804 |
-
text_size=gr.themes.sizes.text_md,
|
805 |
-
)
|
806 |
-
|
807 |
-
with gr.Blocks(css_paths=["app.css"], theme=theme) as demo:
|
808 |
-
gr.HTML("""
|
809 |
-
<style>
|
810 |
-
/* 전체 앱 스타일 */
|
811 |
-
:root {
|
812 |
-
--primary-color: #9c89b8;
|
813 |
-
--secondary-color: #f0a6ca;
|
814 |
-
--accent-color: #b8bedd;
|
815 |
-
--background-color: #f9f7fd;
|
816 |
-
--panel-color: #ffffff;
|
817 |
-
--text-color: #3a3042;
|
818 |
-
--button-hover: #efc3e6;
|
819 |
-
--shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
|
820 |
-
--radius: 12px;
|
821 |
-
}
|
822 |
-
|
823 |
-
body {
|
824 |
-
background-color: var(--background-color);
|
825 |
-
color: var(--text-color);
|
826 |
-
font-family: 'Poppins', sans-serif;
|
827 |
-
}
|
828 |
-
|
829 |
-
/* 헤더 스타일 */
|
830 |
-
.app-header {
|
831 |
-
text-align: center;
|
832 |
-
padding: 1.5rem 1rem;
|
833 |
-
margin-bottom: 1.5rem;
|
834 |
-
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
|
835 |
-
border-radius: var(--radius);
|
836 |
-
box-shadow: var(--shadow);
|
837 |
-
color: white;
|
838 |
-
}
|
839 |
-
|
840 |
-
.app-header h1 {
|
841 |
-
font-size: 2.5rem;
|
842 |
-
font-weight: 700;
|
843 |
-
margin-bottom: 0.5rem;
|
844 |
-
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
845 |
-
}
|
846 |
-
|
847 |
-
.app-header p {
|
848 |
-
font-size: 1.1rem;
|
849 |
-
opacity: 0.9;
|
850 |
-
max-width: 800px;
|
851 |
-
margin: 0 auto;
|
852 |
-
}
|
853 |
-
|
854 |
-
/* 패널 스타일 */
|
855 |
-
.panel {
|
856 |
-
background-color: var(--panel-color);
|
857 |
-
border-radius: var(--radius);
|
858 |
-
box-shadow: var(--shadow);
|
859 |
-
overflow: hidden;
|
860 |
-
transition: transform 0.3s ease;
|
861 |
-
}
|
862 |
-
|
863 |
-
.panel:hover {
|
864 |
-
transform: translateY(-3px);
|
865 |
-
}
|
866 |
-
|
867 |
-
/* 버튼 스타일 */
|
868 |
-
.ant-btn {
|
869 |
-
border-radius: 8px;
|
870 |
-
font-weight: 500;
|
871 |
-
transition: all 0.3s ease;
|
872 |
-
}
|
873 |
-
|
874 |
-
.ant-btn:hover {
|
875 |
-
transform: translateY(-2px);
|
876 |
-
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
877 |
-
}
|
878 |
-
|
879 |
-
.ant-btn-primary {
|
880 |
-
background: var(--primary-color);
|
881 |
-
border-color: var(--primary-color);
|
882 |
-
}
|
883 |
-
|
884 |
-
.ant-btn-primary:hover {
|
885 |
-
background: var(--secondary-color);
|
886 |
-
border-color: var(--secondary-color);
|
887 |
-
}
|
888 |
-
|
889 |
-
/* 인풋 스타일 */
|
890 |
-
.ant-input, .ant-input-textarea textarea {
|
891 |
-
border-radius: 8px;
|
892 |
-
border: 1px solid #e6e6e6;
|
893 |
-
transition: all 0.3s ease;
|
894 |
-
}
|
895 |
-
|
896 |
-
.ant-input:focus, .ant-input-textarea textarea:focus {
|
897 |
-
border-color: var(--accent-color);
|
898 |
-
box-shadow: 0 0 0 2px rgba(184, 190, 221, 0.2);
|
899 |
-
}
|
900 |
-
|
901 |
-
/* 랜더 헤더 스타일 */
|
902 |
-
.render_header {
|
903 |
-
background: linear-gradient(to right, var(--primary-color), var(--accent-color));
|
904 |
-
border-top-left-radius: var(--radius);
|
905 |
-
border-top-right-radius: var(--radius);
|
906 |
-
}
|
907 |
-
|
908 |
-
.header_btn {
|
909 |
-
background-color: rgba(255, 255, 255, 0.7);
|
910 |
-
}
|
911 |
-
|
912 |
-
/* 컨텐츠 영역 */
|
913 |
-
.right_content, .html_content {
|
914 |
-
border-radius: 0 0 var(--radius) var(--radius);
|
915 |
-
}
|
916 |
-
|
917 |
-
/* 도움말 스타일 */
|
918 |
-
.help-text {
|
919 |
-
color: #666;
|
920 |
-
font-size: 0.9rem;
|
921 |
-
margin-top: 0.5rem;
|
922 |
-
}
|
923 |
-
|
924 |
-
/* 텍스트 영역 높이 조정 */
|
925 |
-
.ant-input-textarea-large textarea {
|
926 |
-
min-height: 200px !important;
|
927 |
-
}
|
928 |
-
</style>
|
929 |
-
|
930 |
-
<div class="app-header">
|
931 |
-
<h1>🎮 Vibe Game Craft</h1>
|
932 |
-
<p>설명을 입력하면 웹 기반 HTML5, JavaScript, CSS 게임을 생성합니다. 직관적인 인터페이스로 쉽게 게임을 만들고, 실시간으로 미리보기를 확인하세요.</p>
|
933 |
-
</div>
|
934 |
-
""")
|
935 |
-
|
936 |
-
history = gr.State([])
|
937 |
-
setting = gr.State({"system": SystemPrompt})
|
938 |
-
|
939 |
-
with ms.Application() as app:
|
940 |
-
with antd.ConfigProvider():
|
941 |
-
|
942 |
-
# code Drawer
|
943 |
-
with antd.Drawer(open=False, title="code", placement="left", width="750px") as code_drawer:
|
944 |
-
code_output = legacy.Markdown()
|
945 |
-
|
946 |
-
# history Drawer
|
947 |
-
with antd.Drawer(open=False, title="history", placement="left", width="900px") as history_drawer:
|
948 |
-
history_output = legacy.Chatbot(
|
949 |
-
show_label=False, flushing=False, height=960, elem_classes="history_chatbot"
|
950 |
-
)
|
951 |
-
|
952 |
-
# templates Drawer (하나로 통합)
|
953 |
-
with antd.Drawer(
|
954 |
-
open=False,
|
955 |
-
title="Templates",
|
956 |
-
placement="right",
|
957 |
-
width="900px",
|
958 |
-
elem_classes="session-drawer"
|
959 |
-
) as session_drawer:
|
960 |
-
with antd.Flex(vertical=True, gap="middle"):
|
961 |
-
gr.Markdown("### Available Game Templates (All-in-One)")
|
962 |
-
session_history = gr.HTML(elem_classes="session-history")
|
963 |
-
close_btn = antd.Button("Close", type="default", elem_classes="close-btn")
|
964 |
-
|
965 |
-
# 좌우 레이아웃 + 상단 정렬
|
966 |
-
with antd.Row(gutter=[32, 12], align="top") as layout:
|
967 |
-
|
968 |
-
# 왼쪽 Col: 미리보기 (상단 정렬)
|
969 |
-
with antd.Col(span=24, md=16):
|
970 |
-
with ms.Div(elem_classes="right_panel panel"):
|
971 |
-
gr.HTML(r"""
|
972 |
-
<div class="render_header">
|
973 |
-
<span class="header_btn"></span>
|
974 |
-
<span class="header_btn"></span>
|
975 |
-
<span class="header_btn"></span>
|
976 |
-
</div>
|
977 |
-
""")
|
978 |
-
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab:
|
979 |
-
with antd.Tabs.Item(key="empty"):
|
980 |
-
empty = antd.Empty(description="게임을 만들려면 설명을 입력하세요", elem_classes="right_content")
|
981 |
-
with antd.Tabs.Item(key="loading"):
|
982 |
-
loading = antd.Spin(
|
983 |
-
True, tip="게임 코드 생성 중...", size="large", elem_classes="right_content"
|
984 |
-
)
|
985 |
-
with antd.Tabs.Item(key="render"):
|
986 |
-
sandbox = gr.HTML(elem_classes="html_content")
|
987 |
-
|
988 |
-
# 오른쪽 Col: 메뉴 버튼들 + 입력창 + 배포 결과
|
989 |
-
with antd.Col(span=24, md=8):
|
990 |
-
# 빈 헤더 추가하여 왼쪽 패널과 높이 맞추기
|
991 |
-
gr.HTML(r"""
|
992 |
-
<div class="render_header" style="visibility: hidden;">
|
993 |
-
<span class="header_btn"></span>
|
994 |
-
<span class="header_btn"></span>
|
995 |
-
<span class="header_btn"></span>
|
996 |
-
</div>
|
997 |
-
""")
|
998 |
-
# ── (1) 상단 메뉴 Bar (코드보기, 히스토리, 템플릿=단 하나) ──
|
999 |
-
with antd.Flex(gap="small", elem_classes="setting-buttons", justify="end"):
|
1000 |
-
codeBtn = antd.Button("🧑💻코드 보기", type="default")
|
1001 |
-
historyBtn = antd.Button("📜히스토리", type="default")
|
1002 |
-
template_btn = antd.Button("🎮템플릿", type="default")
|
1003 |
-
|
1004 |
-
# ── (2) 입력창 ──
|
1005 |
-
with antd.Flex(vertical=True, gap="middle", wrap=True, elem_classes="panel input-panel"):
|
1006 |
-
# rows 파라미터를 사용하지 않고 CSS로 높이 조정
|
1007 |
-
input_text = antd.InputTextarea(
|
1008 |
-
size="large",
|
1009 |
-
allow_clear=True,
|
1010 |
-
placeholder=random.choice(DEMO_LIST)['description'],
|
1011 |
-
max_length=100000 # 입력 최대 길이 증가
|
1012 |
-
)
|
1013 |
-
gr.HTML('<div class="help-text">💡 원하는 게임의 설명을 입력하세요. 예: "테트리스 게임 제작해줘."</div>')
|
1014 |
-
|
1015 |
-
# ── (3) 액션 버튼들 (Send, Boost, Code실행, 배포, 클리어) ──
|
1016 |
-
with antd.Flex(gap="small", justify="space-between"):
|
1017 |
-
btn = antd.Button("전송", type="primary", size="large")
|
1018 |
-
boost_btn = antd.Button("증강", type="default", size="large")
|
1019 |
-
execute_btn = antd.Button("코드", type="default", size="large")
|
1020 |
-
deploy_btn = antd.Button("배포", type="default", size="large")
|
1021 |
-
clear_btn = antd.Button("클리어", type="default", size="large")
|
1022 |
-
|
1023 |
-
# ── (4) 배포 결과 영역 ──
|
1024 |
-
deploy_result = gr.HTML(label="배포 결과")
|
1025 |
-
|
1026 |
-
|
1027 |
-
# ---- 이벤트 / 콜백 ----
|
1028 |
-
|
1029 |
-
# (A) Code Drawer 열기/닫기
|
1030 |
-
codeBtn.click(
|
1031 |
-
lambda: gr.update(open=True),
|
1032 |
-
inputs=[],
|
1033 |
-
outputs=[code_drawer]
|
1034 |
-
)
|
1035 |
-
code_drawer.close(
|
1036 |
-
lambda: gr.update(open=False),
|
1037 |
-
inputs=[],
|
1038 |
-
outputs=[code_drawer]
|
1039 |
-
)
|
1040 |
-
|
1041 |
-
# (B) 히스토리 Drawer 열기/닫기
|
1042 |
-
historyBtn.click(
|
1043 |
-
history_render,
|
1044 |
-
inputs=[history],
|
1045 |
-
outputs=[history_drawer, history_output]
|
1046 |
-
)
|
1047 |
-
history_drawer.close(
|
1048 |
-
lambda: gr.update(open=False),
|
1049 |
-
inputs=[],
|
1050 |
-
outputs=[history_drawer]
|
1051 |
-
)
|
1052 |
-
|
1053 |
-
# (C) 템플릿 Drawer 열기/닫기 (하나로 통합)
|
1054 |
-
template_btn.click(
|
1055 |
-
fn=lambda: (gr.update(open=True), load_all_templates()),
|
1056 |
-
outputs=[session_drawer, session_history],
|
1057 |
-
queue=False
|
1058 |
-
)
|
1059 |
-
session_drawer.close(
|
1060 |
-
lambda: (gr.update(open=False), gr.HTML("")),
|
1061 |
-
outputs=[session_drawer, session_history]
|
1062 |
-
)
|
1063 |
-
close_btn.click(
|
1064 |
-
lambda: (gr.update(open=False), gr.HTML("")),
|
1065 |
-
outputs=[session_drawer, session_history]
|
1066 |
-
)
|
1067 |
-
|
1068 |
-
# (D) 'Send' 버튼 => 코드 생성
|
1069 |
-
btn.click(
|
1070 |
-
demo_instance.generation_code,
|
1071 |
-
inputs=[input_text, setting, history],
|
1072 |
-
outputs=[code_output, history, sandbox, state_tab, code_drawer]
|
1073 |
-
)
|
1074 |
-
|
1075 |
-
# (E) '클리어' 버튼 => 히스토리 초기화
|
1076 |
-
clear_btn.click(
|
1077 |
-
demo_instance.clear_history,
|
1078 |
-
inputs=[],
|
1079 |
-
outputs=[history]
|
1080 |
-
)
|
1081 |
-
|
1082 |
-
# (F) 'Boost' 버튼 => 프롬프트 보강
|
1083 |
-
boost_btn.click(
|
1084 |
-
fn=handle_boost,
|
1085 |
-
inputs=[input_text],
|
1086 |
-
outputs=[input_text, state_tab]
|
1087 |
-
)
|
1088 |
-
|
1089 |
-
# (G) 'Code실행' 버튼 => 미리보기 iframe 로드
|
1090 |
-
execute_btn.click(
|
1091 |
-
fn=execute_code,
|
1092 |
-
inputs=[input_text],
|
1093 |
-
outputs=[sandbox, state_tab]
|
1094 |
-
)
|
1095 |
-
|
1096 |
-
# (H) '배포' 버튼 => Vercel
|
1097 |
-
deploy_btn.click(
|
1098 |
-
fn=lambda code: deploy_to_vercel(remove_code_block(code)) if code else "코드가 없습니다.",
|
1099 |
-
inputs=[code_output],
|
1100 |
-
outputs=[deploy_result]
|
1101 |
-
)
|
1102 |
-
|
1103 |
-
|
1104 |
-
# ------------------------
|
1105 |
-
# 8) 실제 실행
|
1106 |
-
# ------------------------
|
1107 |
-
|
1108 |
-
if __name__ == "__main__":
|
1109 |
-
try:
|
1110 |
-
demo_instance = Demo()
|
1111 |
-
demo.queue(default_concurrency_limit=20).launch(ssr_mode=False)
|
1112 |
-
except Exception as e:
|
1113 |
-
print(f"Initialization error: {e}")
|
1114 |
-
raise
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|