2020-01-21 05:22:18 +03:00
|
|
|
module main
|
|
|
|
|
2020-06-04 17:05:12 +03:00
|
|
|
import gg
|
2020-01-21 05:22:18 +03:00
|
|
|
import gx
|
2020-03-07 16:14:37 +03:00
|
|
|
import os
|
2020-01-21 05:22:18 +03:00
|
|
|
|
|
|
|
const (
|
2020-10-18 09:48:13 +03:00
|
|
|
win_width = 600
|
2020-01-21 05:22:18 +03:00
|
|
|
win_height = 300
|
|
|
|
)
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
mut:
|
2022-09-15 07:59:31 +03:00
|
|
|
gg &gg.Context = unsafe { nil }
|
2022-12-21 19:33:19 +03:00
|
|
|
image int // gg.Image
|
2020-01-21 05:22:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-10-18 09:48:13 +03:00
|
|
|
mut app := &App{
|
|
|
|
gg: 0
|
|
|
|
}
|
2021-04-20 17:16:35 +03:00
|
|
|
app.gg = gg.new_context(
|
2020-01-21 05:22:18 +03:00
|
|
|
bg_color: gx.white
|
|
|
|
width: win_width
|
|
|
|
height: win_height
|
|
|
|
create_window: true
|
2020-08-04 02:26:56 +03:00
|
|
|
window_title: 'Rectangles'
|
2020-01-21 05:22:18 +03:00
|
|
|
frame_fn: frame
|
|
|
|
user_data: app
|
2020-08-05 04:15:37 +03:00
|
|
|
init_fn: init_images
|
2021-04-20 17:16:35 +03:00
|
|
|
)
|
2021-12-06 10:53:46 +03:00
|
|
|
mut logo_path := os.resource_abs_path(os.join_path('..', 'assets', 'logo.png'))
|
2023-03-29 20:04:41 +03:00
|
|
|
app.image = app.gg.create_image(logo_path)!.id
|
2020-01-21 05:22:18 +03:00
|
|
|
app.gg.run()
|
|
|
|
}
|
|
|
|
|
2020-08-05 04:15:37 +03:00
|
|
|
fn init_images(mut app App) {
|
2020-10-18 09:48:13 +03:00
|
|
|
// app.image = gg.create_image('logo.png')
|
2020-08-04 02:26:56 +03:00
|
|
|
}
|
|
|
|
|
2020-08-02 18:01:07 +03:00
|
|
|
fn frame(app &App) {
|
|
|
|
app.gg.begin()
|
2020-01-21 05:22:18 +03:00
|
|
|
app.draw()
|
2020-08-02 18:01:07 +03:00
|
|
|
app.gg.end()
|
2020-01-21 05:22:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (app &App) draw() {
|
2020-10-18 09:48:13 +03:00
|
|
|
// app.gg.draw_text_def(200,20, 'hello world!')
|
|
|
|
// app.gg.draw_text_def(300,300, 'привет')
|
2021-12-23 14:31:25 +03:00
|
|
|
app.gg.draw_rect_filled(10, 10, 100, 30, gx.blue)
|
|
|
|
app.gg.draw_rect_empty(110, 150, 80, 40, gx.black)
|
2022-12-21 22:03:47 +03:00
|
|
|
app.gg.draw_image_by_id(230, 30, 200, 200, app.image)
|
2020-01-21 05:22:18 +03:00
|
|
|
}
|