2017-08-13 17:16:12 +02:00
|
|
|
// Copyright 2017 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 ebitenutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"image/color"
|
|
|
|
"math"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/colormcache"
|
2017-08-13 17:16:12 +02:00
|
|
|
)
|
|
|
|
|
2017-12-03 15:11:39 +01:00
|
|
|
var (
|
2017-12-03 15:39:09 +01:00
|
|
|
emptyImage *ebiten.Image
|
2017-12-03 15:11:39 +01:00
|
|
|
)
|
2017-08-13 17:16:12 +02:00
|
|
|
|
|
|
|
func init() {
|
2019-07-30 16:09:57 +02:00
|
|
|
emptyImage, _ = ebiten.NewImage(1, 1, ebiten.FilterDefault)
|
2017-12-03 15:39:09 +01:00
|
|
|
_ = emptyImage.Fill(color.White)
|
2017-08-13 17:16:12 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 20:14:33 +02:00
|
|
|
// DrawLine draws a line segment on the given destination dst.
|
2017-08-13 17:16:12 +02:00
|
|
|
//
|
2017-08-13 17:45:10 +02:00
|
|
|
// DrawLine is intended to be used mainly for debugging or prototyping purpose.
|
2020-06-29 15:18:40 +02:00
|
|
|
//
|
|
|
|
// DrawLine is not concurrent-safe.
|
2017-08-13 17:16:12 +02:00
|
|
|
func DrawLine(dst *ebiten.Image, x1, y1, x2, y2 float64, clr color.Color) {
|
2017-12-03 15:39:09 +01:00
|
|
|
ew, eh := emptyImage.Size()
|
2017-08-13 17:16:12 +02:00
|
|
|
length := math.Hypot(x2-x1, y2-y1)
|
|
|
|
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Scale(length/float64(ew), 1/float64(eh))
|
|
|
|
op.GeoM.Rotate(math.Atan2(y2-y1, x2-x1))
|
|
|
|
op.GeoM.Translate(x1, y1)
|
2020-06-29 15:18:40 +02:00
|
|
|
op.ColorM = colormcache.ColorToColorM(clr)
|
2018-03-04 14:45:47 +01:00
|
|
|
// Filter must be 'nearest' filter (default).
|
|
|
|
// Linear filtering would make edges blurred.
|
2017-12-03 15:39:09 +01:00
|
|
|
_ = dst.DrawImage(emptyImage, op)
|
2017-08-13 17:16:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// DrawRect draws a rectangle on the given destination dst.
|
|
|
|
//
|
2017-08-13 17:45:10 +02:00
|
|
|
// DrawRect is intended to be used mainly for debugging or prototyping purpose.
|
2020-06-29 15:18:40 +02:00
|
|
|
//
|
|
|
|
// DrawRect is not concurrent-safe.
|
2017-08-13 17:16:12 +02:00
|
|
|
func DrawRect(dst *ebiten.Image, x, y, width, height float64, clr color.Color) {
|
2017-12-03 15:39:09 +01:00
|
|
|
ew, eh := emptyImage.Size()
|
2017-08-13 17:16:12 +02:00
|
|
|
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Scale(width/float64(ew), height/float64(eh))
|
|
|
|
op.GeoM.Translate(x, y)
|
2020-06-29 15:18:40 +02:00
|
|
|
op.ColorM = colormcache.ColorToColorM(clr)
|
2018-03-04 14:45:47 +01:00
|
|
|
// Filter must be 'nearest' filter (default).
|
|
|
|
// Linear filtering would make edges blurred.
|
2017-12-03 15:39:09 +01:00
|
|
|
_ = dst.DrawImage(emptyImage, op)
|
2017-08-13 17:16:12 +02:00
|
|
|
}
|