2020-01-23 21:04:46 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-06-23 04:21:30 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
2019-06-22 20:20:28 +02:00
|
|
|
module gg
|
|
|
|
|
2020-04-26 11:42:44 +02:00
|
|
|
import gx
|
|
|
|
import os
|
2020-06-04 16:05:12 +02:00
|
|
|
import sokol
|
|
|
|
import sokol.sapp
|
|
|
|
import sokol.sgl
|
|
|
|
import sokol.gfx
|
2020-06-04 20:26:18 +02:00
|
|
|
//import gg.ft
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
type FNvoidptr1 fn(voidptr)
|
|
|
|
type FNvoidptr2 fn(voidptr,voidptr)
|
|
|
|
type FNFail fn(string,voidptr)
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
pub struct Config {
|
2019-08-22 23:00:31 +02:00
|
|
|
pub:
|
2020-06-04 16:05:12 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
use_ortho bool
|
|
|
|
retina bool
|
|
|
|
resizable bool
|
|
|
|
user_data voidptr
|
|
|
|
font_size int
|
2019-08-22 23:00:31 +02:00
|
|
|
create_window bool
|
2020-06-04 16:05:12 +02:00
|
|
|
// window_user_ptr voidptr
|
|
|
|
window_title string
|
2020-06-04 19:57:13 +02:00
|
|
|
borderless_window bool
|
2019-08-22 23:00:31 +02:00
|
|
|
always_on_top bool
|
2020-06-04 16:05:12 +02:00
|
|
|
bg_color gx.Color
|
|
|
|
init_fn FNvoidptr1 = voidptr(0)
|
|
|
|
frame_fn FNvoidptr1 = voidptr(0)
|
|
|
|
event_fn FNvoidptr2 = voidptr(0)
|
|
|
|
cleanup_fn FNvoidptr1 = voidptr(0)
|
|
|
|
fail_fn FNFail = voidptr(0)
|
2020-06-04 19:57:13 +02:00
|
|
|
wait_events bool // set this to true for UIs, to save power
|
|
|
|
font_path string
|
2020-06-04 23:51:54 +02:00
|
|
|
fullscreen bool
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub struct Context {
|
2019-08-22 23:00:31 +02:00
|
|
|
pub mut:
|
2020-06-04 20:09:46 +02:00
|
|
|
scale f32 = 1.0 // will get set to 2.0 for retina, will remain 1.0 for normal
|
2020-06-04 16:05:12 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
clear_pass C.sg_pass_action
|
|
|
|
window C.sapp_desc
|
|
|
|
config Config
|
|
|
|
}
|
|
|
|
|
2020-06-04 19:57:13 +02:00
|
|
|
pub struct Size { pub: width int height int }
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn gg_init_sokol_window(user_data voidptr) {
|
2020-06-04 20:26:18 +02:00
|
|
|
mut g := &Context(user_data)
|
2020-06-04 16:05:12 +02:00
|
|
|
desc := C.sg_desc{
|
|
|
|
mtl_device: sapp.metal_get_device()
|
|
|
|
mtl_renderpass_descriptor_cb: sapp.metal_get_renderpass_descriptor
|
|
|
|
mtl_drawable_cb: sapp.metal_get_drawable
|
|
|
|
d3d11_device: sapp.d3d11_get_device()
|
|
|
|
d3d11_device_context: sapp.d3d11_get_device_context()
|
|
|
|
d3d11_render_target_view_cb: sapp.d3d11_get_render_target_view
|
|
|
|
d3d11_depth_stencil_view_cb: sapp.d3d11_get_depth_stencil_view
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2020-06-04 16:05:12 +02:00
|
|
|
gfx.setup(&desc)
|
|
|
|
sgl_desc := C.sgl_desc_t{}
|
|
|
|
sgl.setup(&sgl_desc)
|
2020-06-04 20:09:46 +02:00
|
|
|
g.scale = sapp.dpi_scale()
|
|
|
|
// NB: on older X11, `Xft.dpi` from ~/.Xresources, that sokol uses,
|
|
|
|
// may not be set which leads to sapp.dpi_scale reporting incorrectly 0.0
|
|
|
|
if g.scale < 0.1 {
|
|
|
|
g.scale = 1.0
|
|
|
|
}
|
|
|
|
is_high_dpi := sapp.high_dpi()
|
|
|
|
fb_w := sapp.width()
|
|
|
|
fb_h := sapp.height()
|
|
|
|
println('g.scale=$g.scale is_high_dpi=$is_high_dpi fb_w=$fb_w fb_h=$fb_h')
|
2020-06-04 16:05:12 +02:00
|
|
|
if g.config.init_fn != voidptr(0) {
|
|
|
|
g.config.init_fn( g.config.user_data )
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn gg_frame_fn(user_data voidptr) {
|
2020-06-04 20:26:18 +02:00
|
|
|
mut g := &Context(user_data)
|
2020-06-04 16:05:12 +02:00
|
|
|
if g.config.frame_fn != voidptr(0) {
|
|
|
|
g.config.frame_fn( g.config.user_data )
|
2019-08-22 23:00:31 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-19 13:27:44 +02:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn gg_event_fn(e &C.sapp_event, user_data voidptr){
|
2020-06-04 20:26:18 +02:00
|
|
|
mut g := &Context(user_data)
|
2020-06-04 16:05:12 +02:00
|
|
|
if g.config.event_fn != voidptr(0) {
|
|
|
|
g.config.event_fn(e, g.config.user_data)
|
2019-08-22 23:00:31 +02:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn gg_cleanup_fn(user_data voidptr){
|
2020-06-04 20:26:18 +02:00
|
|
|
mut g := &Context(user_data)
|
2020-06-04 16:05:12 +02:00
|
|
|
if g.config.cleanup_fn != voidptr(0) {
|
|
|
|
g.config.cleanup_fn(g.config.user_data)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn gg_fail_fn(msg charptr, user_data voidptr){
|
2020-06-04 20:26:18 +02:00
|
|
|
mut g := &Context(user_data)
|
2020-06-04 16:05:12 +02:00
|
|
|
vmsg := tos3(msg)
|
|
|
|
if g.config.fail_fn != voidptr(0) {
|
|
|
|
g.config.fail_fn(vmsg, g.config.user_data)
|
|
|
|
}else{
|
|
|
|
eprintln('gg error: $vmsg')
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
//
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn new_context(cfg Config) &Context{
|
|
|
|
mut g := &Context{
|
2020-06-04 16:05:12 +02:00
|
|
|
width: cfg.width
|
|
|
|
height: cfg.height
|
|
|
|
clear_pass: gfx.create_clear_pass( f32(cfg.bg_color.r) / 255.0, f32(cfg.bg_color.g) / 255.0,
|
|
|
|
f32(cfg.bg_color.b) / 255.0, 1.0)
|
|
|
|
config: cfg
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
//C.printf('new_context() %p\n', cfg.user_data)
|
|
|
|
window := C.sapp_desc{
|
|
|
|
user_data: g
|
|
|
|
init_userdata_cb: gg_init_sokol_window
|
|
|
|
frame_userdata_cb: gg_frame_fn
|
|
|
|
event_userdata_cb: gg_event_fn
|
|
|
|
fail_userdata_cb: gg_fail_fn
|
|
|
|
cleanup_userdata_cb: gg_cleanup_fn
|
|
|
|
window_title: cfg.window_title.str
|
|
|
|
html5_canvas_name: cfg.window_title.str
|
|
|
|
width: cfg.width
|
|
|
|
height: cfg.height
|
2020-06-04 20:09:46 +02:00
|
|
|
high_dpi: true
|
2020-06-04 23:51:54 +02:00
|
|
|
fullscreen: cfg.fullscreen
|
2020-06-04 16:05:12 +02:00
|
|
|
}
|
|
|
|
if cfg.use_ortho {}
|
|
|
|
else {}
|
|
|
|
g.window = window
|
|
|
|
return g
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn (gg &Context) run() {
|
2020-06-04 16:05:12 +02:00
|
|
|
sapp.run(&gg.window)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn (ctx &Context) draw_rect(x, y, w, h f32, c gx.Color) {
|
2020-06-04 16:05:12 +02:00
|
|
|
sgl.c4b(c.r, c.g, c.b, 128)
|
|
|
|
sgl.begin_quads()
|
|
|
|
sgl.v2f(x * ctx.scale, y * ctx.scale)
|
|
|
|
sgl.v2f((x + w) * ctx.scale, y * ctx.scale)
|
|
|
|
sgl.v2f((x + w) * ctx.scale, (y + h) * ctx.scale)
|
|
|
|
sgl.v2f(x * ctx.scale, (y + h) * ctx.scale)
|
|
|
|
sgl.end()
|
|
|
|
}
|
|
|
|
|
2020-06-04 23:51:54 +02:00
|
|
|
pub fn (ctx &Context) draw_empty_rect(x, y, w, h f32, c gx.Color) {
|
2020-06-04 16:05:12 +02:00
|
|
|
sgl.c4b(c.r, c.g, c.b, 128)
|
|
|
|
sgl.begin_line_strip()
|
2020-06-04 23:51:54 +02:00
|
|
|
if ctx.scale == 1 {
|
|
|
|
sgl.v2f(x, y)
|
|
|
|
sgl.v2f(x + w, y)
|
|
|
|
sgl.v2f(x + w, y + h)
|
|
|
|
sgl.v2f(x, y + h)
|
|
|
|
sgl.v2f(x, y)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sgl.v2f(x * ctx.scale, y * ctx.scale)
|
|
|
|
sgl.v2f((x + w) * ctx.scale, y * ctx.scale)
|
|
|
|
sgl.v2f((x + w) * ctx.scale, (y + h) * ctx.scale)
|
|
|
|
sgl.v2f(x * ctx.scale, (y + h) * ctx.scale)
|
|
|
|
sgl.v2f(x*ctx.scale, y*ctx.scale)
|
|
|
|
}
|
2020-06-04 16:05:12 +02:00
|
|
|
sgl.end()
|
2020-01-15 22:17:40 +01:00
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
pub fn create_image(file string) u32 {
|
2020-06-04 16:05:12 +02:00
|
|
|
// println('gg create image "$file"')
|
2019-12-04 21:03:12 +01:00
|
|
|
if !os.exists(file) {
|
2019-06-22 20:20:28 +02:00
|
|
|
println('gg create image no such file "$file"')
|
|
|
|
return u32(0)
|
|
|
|
}
|
2020-06-04 16:05:12 +02:00
|
|
|
// img := stbi.load(file)
|
|
|
|
// img.free()
|
|
|
|
return 0 // texture
|
2020-01-09 12:00:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_image_from_memory(buf byteptr) u32 {
|
2020-06-04 16:05:12 +02:00
|
|
|
// texture := gl.gen_texture()
|
|
|
|
// img := stbi.load_from_memory(buf)
|
|
|
|
// img.free()
|
|
|
|
return 0 // texture
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn (gg &Context) begin() {
|
2020-06-04 16:05:12 +02:00
|
|
|
sgl.defaults()
|
|
|
|
sgl.matrix_mode_projection()
|
|
|
|
sgl.ortho(0.0, f32(sapp.width()), f32(sapp.height()), 0.0, -1.0, 1.0)
|
2020-01-27 20:42:32 +01:00
|
|
|
}
|
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn (gg &Context) end() {
|
2020-06-04 16:05:12 +02:00
|
|
|
gfx.begin_default_pass(gg.clear_pass, sapp.width(), sapp.height())
|
|
|
|
sgl.draw()
|
|
|
|
gfx.end_pass()
|
|
|
|
gfx.commit()
|
|
|
|
if gg.config.wait_events {
|
2020-06-04 19:57:13 +02:00
|
|
|
//println('gg: waiting')
|
2020-06-04 16:05:12 +02:00
|
|
|
wait_events()
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-07-20 17:38:00 +02:00
|
|
|
|
2020-06-04 20:26:18 +02:00
|
|
|
pub fn (ctx &Context) draw_line(x, y, x2, y2 f32, color gx.Color) {}
|
2019-07-20 17:38:00 +02:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
fn C.WaitMessage()
|
2020-01-15 22:17:40 +01:00
|
|
|
|
2020-06-04 16:05:12 +02:00
|
|
|
pub fn wait_events() {
|
|
|
|
unsafe {
|
|
|
|
$if macos {
|
|
|
|
# NSEvent *event = [NSApp nextEventMatchingMask:NSEventMaskAny
|
|
|
|
# untilDate:[NSDate distantFuture]
|
|
|
|
# inMode:NSDefaultRunLoopMode
|
|
|
|
# dequeue:YES];
|
|
|
|
# [NSApp sendEvent:event];
|
|
|
|
}
|
|
|
|
$if windows {
|
|
|
|
C.WaitMessage()
|
|
|
|
}
|
|
|
|
}
|
2020-02-03 04:01:39 +01:00
|
|
|
}
|