File size: 2,546 Bytes
bd1c40e
0a8c67b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bd1c40e
 
0a8c67b
 
bd1c40e
1616045
0a8c67b
 
bd1c40e
0a8c67b
bd1c40e
0a8c67b
bd1c40e
 
 
0a8c67b
bd1c40e
0a8c67b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bd1c40e
 
0a8c67b
bd1c40e
 
0a8c67b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bd1c40e
0a8c67b
 
bd1c40e
0a8c67b
 
bd1c40e
 
0a8c67b
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
import gradio as gr
from PIL import Image, ImageDraw

# Configurações gerais
GRID_SIZE = 32  # Tamanho da grade
PIXEL_SIZE = 20  # Tamanho de cada pixel no desenho
CANVAS_SIZE = GRID_SIZE * PIXEL_SIZE  # Tamanho total do canvas
FRAME_COUNT = 4  # Número de frames padrão na animação


# Função para criar uma imagem em branco
def create_blank_frame():
    return Image.new("RGB", (GRID_SIZE, GRID_SIZE), color="white")


# Função para desenhar no frame
def draw_pixel(frame, x, y, color):
    draw = ImageDraw.Draw(frame)
    draw.rectangle(
        [x, y, x + 1, y + 1], fill=color
    )  # Cada pixel é um pequeno quadrado 1x1
    return frame


# Função para converter frames em um GIF
def create_animation(frames, duration):
    gif_path = "animation.gif"
    frames[0].save(
        gif_path,
        save_all=True,
        append_images=frames[1:],
        duration=duration,
        loop=0,
    )
    return gif_path


# Função principal do editor
def editor(frames, frame_index, x, y, color, duration):
    frame = frames[frame_index]
    frame = draw_pixel(frame, x, y, color)
    frames[frame_index] = frame

    gif_path = create_animation(frames, duration)

    return gif_path, frames


# Inicializa frames em branco
initial_frames = [create_blank_frame() for _ in range(FRAME_COUNT)]


# Interface com Gradio
with gr.Blocks() as app:
    gr.Markdown("# Editor de Sprites e Animação")

    with gr.Row():
        canvas = gr.Image(label="Canvas", type="pil", tool=None)

    with gr.Row():
        with gr.Column():
            gr.Markdown("### Ferramentas de Desenho")
            x = gr.Slider(0, GRID_SIZE - 1, step=1, label="Posição X")
            y = gr.Slider(0, GRID_SIZE - 1, step=1, label="Posição Y")
            color = gr.ColorPicker(label="Cor", value="#ff0000")
            frame_index = gr.Slider(
                0, FRAME_COUNT - 1, step=1, label="Frame Atual"
            )
            duration = gr.Slider(50, 500, step=10, label="Duração (ms)", value=100)

        with gr.Column():
            gr.Markdown("### Animação")
            animation_output = gr.Image(label="Prévia da Animação")

    with gr.Row():
        update_button = gr.Button("Atualizar Frame")
        save_button = gr.Button("Salvar Animação")

    # Estados
    frames_state = gr.State(value=initial_frames)

    # Atualizar o frame
    update_button.click(
        editor,
        inputs=[frames_state, frame_index, x, y, color, duration],
        outputs=[animation_output, frames_state],
    )

app.launch()