This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathletterbox.go
56 lines (48 loc) · 1.6 KB
/
letterbox.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (c) 2022 Elias Daler
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 3 of the GNU General Public
// License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (
"math"
"golang.org/x/image/math/f64"
"github.com/hajimehoshi/ebiten/v2"
)
type LetterBox struct {
Scale float64
Pos f64.Vec2
}
func CalculateLetterBox(windowSize, screenSize f64.Vec2) LetterBox {
var scale float64
if windowSize[0] < screenSize[1] || windowSize[1] < screenSize[1] {
scaleX := float64(windowSize[0]) / float64(screenSize[0])
scaleY := float64(windowSize[1]) / float64(screenSize[1])
scale = math.Min(scaleX, scaleY)
} else {
scaleX := math.Floor(float64(windowSize[0]) / float64(screenSize[0]))
scaleY := math.Floor(float64(windowSize[1]) / float64(screenSize[1]))
scale = math.Min(scaleX, scaleY)
}
return LetterBox{
Scale: scale,
Pos: f64.Vec2{
math.Floor(float64(windowSize[0])/2. - float64(screenSize[0])*scale/2.),
math.Floor(float64(windowSize[1])/2. - float64(screenSize[1])*scale/2.),
},
}
}
func (l LetterBox) GetTransform() ebiten.GeoM {
m := ebiten.GeoM{}
m.Scale(l.Scale, l.Scale)
m.Translate(l.Pos[0], l.Pos[1])
return m
}