go-opengl-pixel/window.go

361 lines
8.4 KiB
Go
Raw Normal View History

2016-11-23 16:12:23 -06:00
package pixel
import (
2016-11-24 08:13:05 -06:00
"image/color"
2016-11-23 17:43:00 -06:00
"sync"
2016-11-23 16:12:23 -06:00
"github.com/faiface/pixel/pixelgl"
"github.com/go-gl/glfw/v3.2/glfw"
"github.com/pkg/errors"
)
2016-11-24 07:27:43 -06:00
// WindowConfig is convenience structure for specifying all possible properties of a window.
// Properties are chosen in such a way, that you usually only need to set a few of them - defaults
// (zeros) should usually be sensible.
//
// Note that you always need to set the width and the height of a window.
2016-11-23 16:12:23 -06:00
type WindowConfig struct {
// Title at the top of a window.
Title string
// Width of a window in pixels.
Width float64
// Height of a window in pixels.
Height float64
// If set to nil, a window will be windowed. Otherwise it will be fullscreen on the specified monitor.
Fullscreen *Monitor
// Whether a window is resizable.
Resizable bool
// If set to true, the window will be initially invisible.
Hidden bool
// Undecorated window ommits the borders and decorations (close button, etc.).
2016-11-23 16:12:23 -06:00
Undecorated bool
// If set to true, a window will not get focused upon showing up.
Unfocused bool
// Whether a window is maximized.
Maximized bool
// VSync (vertical synchronization) synchronizes window's framerate with the framerate of the monitor.
VSync bool
// Number of samples for multi-sample anti-aliasing (edge-smoothing).
// Usual values are 0, 2, 4, 8 (powers of 2 and not much more than this).
2016-11-23 16:12:23 -06:00
MSAASamples int
}
2016-11-24 07:27:43 -06:00
// Window is a window handler. Use this type to manipulate a window (input, drawing, ...).
2016-11-23 16:12:23 -06:00
type Window struct {
2016-12-01 18:20:54 -06:00
window *glfw.Window
config WindowConfig
defaultShader *pixelgl.Shader
2016-11-24 15:06:51 -06:00
// need to save these to correctly restore a fullscreen window
restore struct {
xpos, ypos, width, height int
}
2016-11-23 16:12:23 -06:00
}
2016-11-24 07:27:43 -06:00
// NewWindow creates a new window with it's properties specified in the provided config.
//
// If window creation fails, an error is returned.
2016-11-23 16:12:23 -06:00
func NewWindow(config WindowConfig) (*Window, error) {
bool2int := map[bool]int{
true: glfw.True,
false: glfw.False,
}
w := &Window{config: config}
err := pixelgl.DoErr(func() error {
2016-11-25 16:26:27 -06:00
err := glfw.Init()
if err != nil {
return err
}
2016-11-25 16:12:01 -06:00
2016-11-23 16:12:23 -06:00
glfw.WindowHint(glfw.ContextVersionMajor, 3)
glfw.WindowHint(glfw.ContextVersionMinor, 3)
glfw.WindowHint(glfw.OpenGLProfile, glfw.OpenGLCoreProfile)
glfw.WindowHint(glfw.OpenGLForwardCompatible, glfw.True)
glfw.WindowHint(glfw.Resizable, bool2int[config.Resizable])
glfw.WindowHint(glfw.Visible, bool2int[!config.Hidden])
glfw.WindowHint(glfw.Decorated, bool2int[!config.Undecorated])
glfw.WindowHint(glfw.Focused, bool2int[!config.Unfocused])
glfw.WindowHint(glfw.Maximized, bool2int[config.Maximized])
glfw.WindowHint(glfw.Samples, config.MSAASamples)
2016-11-24 15:06:51 -06:00
w.window, err = glfw.CreateWindow(int(config.Width), int(config.Height), config.Title, nil, nil)
2016-11-23 16:12:23 -06:00
if err != nil {
return err
}
2016-11-23 16:12:23 -06:00
return nil
})
if err != nil {
return nil, errors.Wrap(err, "creating window failed")
}
2016-11-24 15:06:51 -06:00
w.SetFullscreen(config.Fullscreen)
2016-12-01 18:20:54 -06:00
w.defaultShader, err = pixelgl.NewShader(w, defaultUniformFormat, defaultVertexShader, defaultFragmentShader)
if err != nil {
w.Delete()
return nil, errors.Wrap(err, "creating window failed")
}
2016-11-23 16:12:23 -06:00
return w, nil
}
// Delete destroys a window. The window can't be used any further.
func (w *Window) Delete() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Destroy()
})
})
}
2016-11-24 07:27:43 -06:00
// Clear clears the window with a color.
2016-11-24 08:13:05 -06:00
func (w *Window) Clear(c color.Color) {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Clear(colorToRGBA(c))
})
2016-11-23 16:25:45 -06:00
}
2016-11-24 07:27:43 -06:00
// Update swaps buffers and polls events.
2016-11-23 16:12:23 -06:00
func (w *Window) Update() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
if w.config.VSync {
glfw.SwapInterval(1)
}
w.window.SwapBuffers()
glfw.PollEvents()
})
2016-11-23 16:12:23 -06:00
})
2016-11-24 15:06:51 -06:00
}
// SetTitle changes the title of a window.
func (w *Window) SetTitle(title string) {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.SetTitle(title)
})
2016-11-24 15:06:51 -06:00
})
}
// SetSize resizes a window to the specified size in pixels.
// In case of a fullscreen window, it changes the resolution of that window.
func (w *Window) SetSize(width, height float64) {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.SetSize(int(width), int(height))
})
2016-11-24 15:06:51 -06:00
})
}
// Size returns the size of the client area of a window (the part you can draw on).
func (w *Window) Size() (width, height float64) {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
wi, hi := w.window.GetSize()
width = float64(wi)
height = float64(hi)
})
2016-11-24 15:06:51 -06:00
})
return width, height
}
// Show makes a window visible if it was hidden.
func (w *Window) Show() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Show()
})
2016-11-24 15:06:51 -06:00
})
}
// Hide hides a window if it was visible.
func (w *Window) Hide() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Hide()
})
2016-11-24 15:06:51 -06:00
})
}
// SetFullscreen sets a window fullscreen on a given monitor. If the monitor is nil, the window will be resored to windowed instead.
//
// Note, that there is nothing about the resolution of the fullscreen window. The window is automatically set to the monitor's
// resolution. If you want a different resolution, you need to set it manually with SetSize method.
func (w *Window) SetFullscreen(monitor *Monitor) {
if w.Monitor() != monitor {
if monitor == nil {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.SetMonitor(
nil,
w.restore.xpos,
w.restore.ypos,
w.restore.width,
w.restore.height,
0,
)
})
2016-11-24 15:06:51 -06:00
})
} else {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.restore.xpos, w.restore.ypos = w.window.GetPos()
w.restore.width, w.restore.height = w.window.GetSize()
width, height := monitor.Size()
refreshRate := monitor.RefreshRate()
w.window.SetMonitor(
monitor.monitor,
0,
0,
int(width),
int(height),
int(refreshRate),
)
})
2016-11-24 15:06:51 -06:00
})
}
}
}
// IsFullscreen returns true if the window is in the fullscreen mode.
func (w *Window) IsFullscreen() bool {
return w.Monitor() != nil
}
// Monitor returns a monitor a fullscreen window is on. If the window is not fullscreen, this function returns nil.
func (w *Window) Monitor() *Monitor {
var monitor *glfw.Monitor
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
monitor = pixelgl.DoVal(func() interface{} {
return w.window.GetMonitor()
}).(*glfw.Monitor)
})
2016-11-24 15:06:51 -06:00
if monitor == nil {
return nil
}
return &Monitor{
monitor: monitor,
}
2016-11-23 16:12:23 -06:00
}
// Focus brings a window to the front and sets input focus.
func (w *Window) Focus() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Focus()
})
})
2016-11-24 15:06:51 -06:00
}
// Focused returns true if a window has input focus.
func (w *Window) Focused() bool {
var focused bool
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
focused = pixelgl.DoVal(func() interface{} {
return w.window.GetAttrib(glfw.Focused) == glfw.True
}).(bool)
})
return focused
2016-11-24 15:06:51 -06:00
}
// Maximize puts a windowed window to a maximized state.
func (w *Window) Maximize() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Maximize()
})
2016-11-24 15:06:51 -06:00
})
}
// Restore restores a windowed window from a maximized state.
func (w *Window) Restore() {
2016-11-28 16:26:56 -06:00
w.Do(func(pixelgl.Context) {
pixelgl.Do(func() {
w.window.Restore()
})
2016-11-24 15:06:51 -06:00
})
}
var currentWindow struct {
sync.Mutex
handler *Window
}
2016-11-23 16:12:23 -06:00
// Do makes the context of this window current, if it's not already, and executes sub.
2016-11-28 16:26:56 -06:00
func (w *Window) Do(sub func(pixelgl.Context)) {
currentWindow.Lock()
defer currentWindow.Unlock()
if currentWindow.handler != w {
2016-11-23 17:43:00 -06:00
pixelgl.Do(func() {
2016-11-23 16:25:45 -06:00
w.window.MakeContextCurrent()
pixelgl.Init()
2016-11-23 17:43:00 -06:00
})
currentWindow.handler = w
2016-11-23 17:43:00 -06:00
}
2016-11-23 16:12:23 -06:00
2016-11-28 16:26:56 -06:00
sub(pixelgl.Context{})
2016-11-23 16:12:23 -06:00
}
2016-12-01 18:20:54 -06:00
var defaultUniformFormat = pixelgl.UniformFormat{
"camera": {Purpose: pixelgl.Camera, Type: pixelgl.Mat3},
"transform": {Purpose: pixelgl.Transform, Type: pixelgl.Mat3},
"isTexture": {Purpose: pixelgl.IsTexture, Type: pixelgl.Int},
}
var defaultVertexShader = `
#version 330 core
layout (location = 0) in vec2 position;
layout (location = 1) in vec4 color;
layout (location = 2) in vec2 texCoord;
out vec4 Color;
out vec2 TexCoord;
uniform mat3 camera;
uniform mat3 transform;
void main() {
gl_Position = vec4((camera * transform * vec3(position.x, position.y, 1.0)).xy, 0.0, 1.0);
Color = color;
TexCoord = texCoord;
}
`
var defaultFragmentShader = `
#version 330 core
in vec4 Color;
in vec2 TexCoord;
out vec4 color;
uniform int isTexture;
uniform sampler2D tex;
void main() {
if (isTexture != 0) {
color = Color * texture(tex, vec2(TexCoord.x, 1 - TexCoord.y));
} else {
color = Color;
}
}
`