2015-01-17 04:45:19 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
2015-01-16 19:46:00 +01:00
|
|
|
//
|
|
|
|
// 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 ebiten
|
|
|
|
|
|
|
|
import (
|
|
|
|
"image/color"
|
|
|
|
)
|
|
|
|
|
2015-01-17 04:45:19 +01:00
|
|
|
// A Lines represents the set of lines.
|
|
|
|
type Lines interface {
|
|
|
|
Len() int
|
2015-01-17 15:33:57 +01:00
|
|
|
Points(i int) (x0, y0, x1, y1 int)
|
2015-01-17 04:45:19 +01:00
|
|
|
Color(i int) color.Color
|
|
|
|
}
|
|
|
|
|
|
|
|
type line struct {
|
2015-01-17 15:33:57 +01:00
|
|
|
x0, y0 int
|
|
|
|
x1, y1 int
|
2015-01-17 04:45:19 +01:00
|
|
|
color color.Color
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *line) Len() int {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-01-17 15:33:57 +01:00
|
|
|
func (l *line) Points(i int) (x0, y0, x1, y1 int) {
|
2015-01-17 04:45:19 +01:00
|
|
|
return l.x0, l.y0, l.x1, l.y1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *line) Color(i int) color.Color {
|
|
|
|
return l.color
|
|
|
|
}
|
|
|
|
|
2015-01-17 07:46:56 +01:00
|
|
|
type rectsAsLines struct {
|
|
|
|
Rects
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rectsAsLines) Len() int {
|
|
|
|
return r.Rects.Len() * 4
|
|
|
|
}
|
|
|
|
|
2015-01-17 15:33:57 +01:00
|
|
|
func (r *rectsAsLines) Points(i int) (x0, y0, x1, y1 int) {
|
|
|
|
x, y, w, h := r.Rects.Rect(i / 4)
|
2015-01-17 07:46:56 +01:00
|
|
|
switch i % 4 {
|
|
|
|
case 0:
|
|
|
|
return x, y, x + w, y
|
|
|
|
case 1:
|
2015-01-17 08:09:09 +01:00
|
|
|
return x, y + 1, x, y + h - 1
|
2015-01-17 07:46:56 +01:00
|
|
|
case 2:
|
2015-01-17 08:09:09 +01:00
|
|
|
return x, y + h - 1, x + w, y + h - 1
|
2015-01-17 07:46:56 +01:00
|
|
|
case 3:
|
2015-01-17 08:09:09 +01:00
|
|
|
return x + w - 1, y + 1, x + w - 1, y + h - 1
|
2015-01-17 07:46:56 +01:00
|
|
|
}
|
|
|
|
panic("not reach")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rectsAsLines) Color(i int) color.Color {
|
|
|
|
return r.Rects.Color(i / 4)
|
|
|
|
}
|
|
|
|
|
2015-01-16 19:46:00 +01:00
|
|
|
// A Rects represents the set of rectangles.
|
|
|
|
type Rects interface {
|
|
|
|
Len() int
|
2015-01-17 15:31:09 +01:00
|
|
|
Rect(i int) (x, y, width, height int)
|
2015-01-16 19:46:00 +01:00
|
|
|
Color(i int) color.Color
|
|
|
|
}
|
|
|
|
|
|
|
|
type rect struct {
|
2015-01-17 15:31:09 +01:00
|
|
|
x, y int
|
|
|
|
width, height int
|
2015-01-16 19:46:00 +01:00
|
|
|
color color.Color
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rect) Len() int {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-01-17 15:31:09 +01:00
|
|
|
func (r *rect) Rect(i int) (x, y, width, height int) {
|
2015-01-16 19:46:00 +01:00
|
|
|
return r.x, r.y, r.width, r.height
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rect) Color(i int) color.Color {
|
|
|
|
return r.color
|
|
|
|
}
|