2018-02-25 12:16:27 +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 bsp offers binary space partitioning algorithm.
|
|
|
|
package bsp
|
|
|
|
|
2018-03-03 18:33:05 +01:00
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/sync"
|
|
|
|
)
|
|
|
|
|
2018-02-25 12:16:27 +01:00
|
|
|
const (
|
2018-03-03 10:51:52 +01:00
|
|
|
MaxSize = 2048
|
2018-02-26 03:21:50 +01:00
|
|
|
minSize = 1
|
2018-02-25 12:16:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Page struct {
|
|
|
|
root *Node
|
2018-03-03 18:33:05 +01:00
|
|
|
m sync.Mutex
|
2018-02-25 12:16:27 +01:00
|
|
|
}
|
|
|
|
|
2018-03-03 10:51:52 +01:00
|
|
|
func (p *Page) IsEmpty() bool {
|
2018-03-03 18:33:05 +01:00
|
|
|
p.m.Lock()
|
2018-03-03 10:51:52 +01:00
|
|
|
if p.root == nil {
|
2018-03-03 18:33:05 +01:00
|
|
|
p.m.Unlock()
|
2018-03-03 10:51:52 +01:00
|
|
|
return true
|
|
|
|
}
|
2018-03-03 18:33:05 +01:00
|
|
|
r := !p.root.used && p.root.child0 == nil && p.root.child1 == nil
|
|
|
|
p.m.Unlock()
|
|
|
|
return r
|
2018-03-03 10:51:52 +01:00
|
|
|
}
|
|
|
|
|
2018-02-25 12:16:27 +01:00
|
|
|
type Node struct {
|
|
|
|
x int
|
|
|
|
y int
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
|
|
|
|
used bool
|
|
|
|
parent *Node
|
|
|
|
child0 *Node
|
|
|
|
child1 *Node
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) canFree() bool {
|
|
|
|
if n.used {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if n.child0 == nil && n.child1 == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return n.child0.canFree() && n.child1.canFree()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) Region() (x, y, width, height int) {
|
|
|
|
return n.x, n.y, n.width, n.height
|
|
|
|
}
|
|
|
|
|
2018-02-26 03:20:20 +01:00
|
|
|
// square returns a float value indicating how much the given rectangle is close to a square.
|
|
|
|
// If the given rectangle is square, this return 1 (maximum value).
|
|
|
|
// Otherwise, this returns a value in [0, 1).
|
|
|
|
func square(width, height int) float64 {
|
|
|
|
if width == 0 && height == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if width <= height {
|
|
|
|
return float64(width) / float64(height)
|
|
|
|
}
|
|
|
|
return float64(height) / float64(width)
|
|
|
|
}
|
|
|
|
|
2018-02-25 12:16:27 +01:00
|
|
|
func (n *Node) alloc(width, height int) *Node {
|
|
|
|
if n.width < width || n.height < height {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if n.used {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if n.child0 == nil && n.child1 == nil {
|
|
|
|
if n.width == width && n.height == height {
|
|
|
|
n.used = true
|
|
|
|
return n
|
|
|
|
}
|
2018-02-26 03:20:20 +01:00
|
|
|
if square(n.width-width, n.height) >= square(n.width, n.height-height) {
|
2018-02-25 12:16:27 +01:00
|
|
|
// Split vertically
|
|
|
|
n.child0 = &Node{
|
|
|
|
x: n.x,
|
|
|
|
y: n.y,
|
|
|
|
width: width,
|
|
|
|
height: n.height,
|
|
|
|
parent: n,
|
|
|
|
}
|
|
|
|
n.child1 = &Node{
|
|
|
|
x: n.x + width,
|
|
|
|
y: n.y,
|
|
|
|
width: n.width - width,
|
|
|
|
height: n.height,
|
|
|
|
parent: n,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Split holizontally
|
|
|
|
n.child0 = &Node{
|
|
|
|
x: n.x,
|
|
|
|
y: n.y,
|
|
|
|
width: n.width,
|
|
|
|
height: height,
|
|
|
|
parent: n,
|
|
|
|
}
|
|
|
|
n.child1 = &Node{
|
|
|
|
x: n.x,
|
|
|
|
y: n.y + height,
|
|
|
|
width: n.width,
|
|
|
|
height: n.height - height,
|
|
|
|
parent: n,
|
|
|
|
}
|
|
|
|
}
|
2018-02-26 03:26:32 +01:00
|
|
|
return n.child0.alloc(width, height)
|
2018-02-25 12:16:27 +01:00
|
|
|
}
|
|
|
|
if n.child0 == nil || n.child1 == nil {
|
|
|
|
panic("not reached")
|
|
|
|
}
|
|
|
|
if node := n.child0.alloc(width, height); node != nil {
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
if node := n.child1.alloc(width, height); node != nil {
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Alloc(width, height int) *Node {
|
2018-03-03 18:33:05 +01:00
|
|
|
p.m.Lock()
|
2018-02-25 12:16:27 +01:00
|
|
|
if width <= 0 || height <= 0 {
|
|
|
|
panic("bsp: width and height must > 0")
|
|
|
|
}
|
|
|
|
if p.root == nil {
|
|
|
|
p.root = &Node{
|
|
|
|
width: MaxSize,
|
|
|
|
height: MaxSize,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if width < minSize {
|
|
|
|
width = minSize
|
|
|
|
}
|
|
|
|
if height < minSize {
|
|
|
|
height = minSize
|
|
|
|
}
|
2018-03-03 18:33:05 +01:00
|
|
|
n := p.root.alloc(width, height)
|
|
|
|
p.m.Unlock()
|
|
|
|
return n
|
2018-02-25 12:16:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Free(node *Node) {
|
2018-03-03 18:33:05 +01:00
|
|
|
p.m.Lock()
|
|
|
|
p.free(node)
|
|
|
|
p.m.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) free(node *Node) {
|
2018-02-25 12:16:27 +01:00
|
|
|
if node.child0 != nil || node.child1 != nil {
|
|
|
|
panic("bsp: can't free the node including children")
|
|
|
|
}
|
|
|
|
node.used = false
|
|
|
|
if node.parent == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if node.parent.child0 == nil || node.parent.child1 == nil {
|
|
|
|
panic("not reached")
|
|
|
|
}
|
|
|
|
if node.parent.child0.canFree() && node.parent.child1.canFree() {
|
|
|
|
node.parent.child0 = nil
|
|
|
|
node.parent.child1 = nil
|
2018-03-03 18:33:05 +01:00
|
|
|
p.free(node.parent)
|
2018-02-25 12:16:27 +01:00
|
|
|
}
|
|
|
|
}
|