2020-01-21 03:22:18 +01:00
|
|
|
module main
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
import gg
|
2020-01-21 03:22:18 +01:00
|
|
|
import gx
|
2020-03-07 14:14:37 +01:00
|
|
|
import os
|
2020-01-21 03:22:18 +01:00
|
|
|
|
|
|
|
const (
|
2020-10-18 08:48:13 +02:00
|
|
|
win_width = 600
|
2020-01-21 03:22:18 +01:00
|
|
|
win_height = 300
|
|
|
|
)
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
mut:
|
2020-10-18 08:48:13 +02:00
|
|
|
gg &gg.Context
|
2020-08-02 17:01:07 +02:00
|
|
|
image gg.Image
|
2020-01-21 03:22:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-10-18 08:48:13 +02:00
|
|
|
mut app := &App{
|
|
|
|
gg: 0
|
|
|
|
}
|
|
|
|
app.gg = gg.new_context({
|
2020-01-21 03:22:18 +01:00
|
|
|
bg_color: gx.white
|
|
|
|
width: win_width
|
|
|
|
height: win_height
|
|
|
|
use_ortho: true // This is needed for 2D drawing
|
|
|
|
create_window: true
|
2020-08-04 01:26:56 +02:00
|
|
|
window_title: 'Rectangles'
|
2020-01-21 03:22:18 +01:00
|
|
|
frame_fn: frame
|
|
|
|
user_data: app
|
2020-08-05 03:15:37 +02:00
|
|
|
init_fn: init_images
|
2020-10-18 08:48:13 +02:00
|
|
|
})
|
2020-08-05 18:56:01 +02:00
|
|
|
app.image = app.gg.create_image(os.resource_abs_path('logo.png'))
|
2020-01-21 03:22:18 +01:00
|
|
|
app.gg.run()
|
|
|
|
}
|
|
|
|
|
2020-08-05 03:15:37 +02:00
|
|
|
fn init_images(mut app App) {
|
2020-10-18 08:48:13 +02:00
|
|
|
// app.image = gg.create_image('logo.png')
|
2020-08-04 01:26:56 +02:00
|
|
|
}
|
|
|
|
|
2020-08-02 17:01:07 +02:00
|
|
|
fn frame(app &App) {
|
|
|
|
app.gg.begin()
|
2020-01-21 03:22:18 +01:00
|
|
|
app.draw()
|
2020-08-02 17:01:07 +02:00
|
|
|
app.gg.end()
|
2020-01-21 03:22:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (app &App) draw() {
|
2020-10-18 08:48:13 +02:00
|
|
|
// app.gg.draw_text_def(200,20, 'hello world!')
|
|
|
|
// app.gg.draw_text_def(300,300, 'привет')
|
2020-01-21 03:22:18 +01:00
|
|
|
app.gg.draw_rect(10, 10, 100, 30, gx.blue)
|
2020-08-02 17:01:07 +02:00
|
|
|
app.gg.draw_empty_rect(110, 150, 80, 40, gx.black)
|
2020-10-18 08:48:13 +02:00
|
|
|
app.gg.draw_image(230, 30, app.image.width, app.image.height, app.image)
|
2020-01-21 03:22:18 +01:00
|
|
|
}
|