ebiten/examples/highdpi/main.go

113 lines
2.9 KiB
Go
Raw Normal View History

2018-01-03 12:58:45 +01:00
// Copyright 2018 The Ebiten Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
_ "image/jpeg"
"log"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
2018-01-03 12:58:45 +01:00
)
type Game struct {
highDPIImageCh chan *ebiten.Image
highDPIImage *ebiten.Image
}
func NewGame() *Game {
g := &Game{
highDPIImageCh: make(chan *ebiten.Image),
}
2018-01-03 12:58:45 +01:00
2018-01-28 14:39:54 +01:00
// Licensed under Public Domain
// https://commons.wikimedia.org/wiki/File:As08-16-2593.jpg
const url = "https://upload.wikimedia.org/wikipedia/commons/1/1f/As08-16-2593.jpg"
2018-01-29 15:04:11 +01:00
// Load the image asynchronously.
go func() {
2018-03-21 17:19:57 +01:00
img, err := ebitenutil.NewImageFromURL(url)
2018-01-29 15:04:11 +01:00
if err != nil {
log.Fatal(err)
}
g.highDPIImageCh <- img
close(g.highDPIImageCh)
2018-01-29 15:04:11 +01:00
}()
return g
}
func (g *Game) Update() error {
if g.highDPIImage != nil {
return nil
2018-01-29 15:04:11 +01:00
}
// Use select and 'default' clause for non-blocking receiving.
select {
case img := <-g.highDPIImageCh:
g.highDPIImage = img
default:
2018-01-03 12:58:45 +01:00
}
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
if g.highDPIImage == nil {
2018-01-29 15:04:11 +01:00
ebitenutil.DebugPrint(screen, "Loading the image...")
return
2018-01-29 15:04:11 +01:00
}
sw, sh := screen.Bounds().Dx(), screen.Bounds().Dy()
2018-01-03 12:58:45 +01:00
w, h := g.highDPIImage.Bounds().Dx(), g.highDPIImage.Bounds().Dy()
2018-01-03 12:58:45 +01:00
op := &ebiten.DrawImageOptions{}
2018-01-28 13:35:32 +01:00
// Move the images's center to the upper left corner.
op.GeoM.Translate(float64(-w)/2, float64(-h)/2)
2018-01-28 13:35:32 +01:00
// The image is just too big. Adjust the scale.
op.GeoM.Scale(0.25, 0.25)
2018-01-29 15:18:10 +01:00
// Scale the image by the device ratio so that the rendering result can be same
2018-12-03 18:23:25 +01:00
// on various (different-DPI) environments.
scale := ebiten.Monitor().DeviceScaleFactor()
2018-01-03 12:58:45 +01:00
op.GeoM.Scale(scale, scale)
2018-01-28 13:35:32 +01:00
// Move the image's center to the screen's center.
2018-01-03 12:58:45 +01:00
op.GeoM.Translate(float64(sw)/2, float64(sh)/2)
2018-02-13 18:55:51 +01:00
op.Filter = ebiten.FilterLinear
screen.DrawImage(g.highDPIImage, op)
2018-01-03 12:58:45 +01:00
ebitenutil.DebugPrint(screen, fmt.Sprintf("(Init) Device Scale Ratio: %0.2f", scale))
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
// The unit of outsideWidth/Height is device-independent pixels.
// By multiplying them by the device scale factor, we can get a hi-DPI screen size.
s := ebiten.Monitor().DeviceScaleFactor()
return int(float64(outsideWidth) * s), int(float64(outsideHeight) * s)
2018-01-03 12:58:45 +01:00
}
func main() {
ebiten.SetWindowSize(640, 480)
ebiten.SetWindowTitle("High DPI (Ebitengine Demo)")
if err := ebiten.RunGame(NewGame()); err != nil {
2018-01-03 12:58:45 +01:00
log.Fatal(err)
}
}