-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtexture.go
220 lines (184 loc) · 6.62 KB
/
texture.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Copyright (C) 2012-2014 by krepa098. All rights reserved.
// Use of this source code is governed by a zlib-style
// license that can be found in the license.txt file.
package gosfml2
// #include <SFML/Graphics/Texture.h>
// #include <stdlib.h>
import "C"
import (
"errors"
"runtime"
"unsafe"
)
/////////////////////////////////////
/// STRUCTS
/////////////////////////////////////
type Texture struct {
cptr *C.sfTexture
}
/////////////////////////////////////
/// FUNCS
/////////////////////////////////////
// Create a new texture
//
// width: Texture width
// height: Texture height
func NewTexture(width, height uint) (*Texture, error) {
if cptr := C.sfTexture_create(C.uint(width), C.uint(height)); cptr != nil {
texture := &Texture{cptr}
runtime.SetFinalizer(texture, (*Texture).destroy)
return texture, nil
}
return nil, genericError
}
// Create a new texture from an image
//
// file: Path of the image file to load
// area: Area of the source image to load (nil to load the entire image)
func NewTextureFromFile(file string, area *IntRect) (*Texture, error) {
cFile := C.CString(file)
defer C.free(unsafe.Pointer(cFile))
if cptr := C.sfTexture_createFromFile(cFile, area.toCPtr()); cptr != nil {
texture := &Texture{cptr}
runtime.SetFinalizer(texture, (*Texture).destroy)
return texture, nil
}
return nil, genericError
}
// Create a new texture from a file in memory
//
// data: Slice containing the file data
// area: Area of the source image to load (nil to load the entire image)
func NewTextureFromMemory(data []byte, area *IntRect) (*Texture, error) {
if len(data) == 0 {
return nil, errors.New("NewTextureFromMemory: len(data)==0")
}
if cptr := C.sfTexture_createFromMemory(unsafe.Pointer(&data[0]), C.size_t(len(data)), area.toCPtr()); cptr != nil {
texture := &Texture{cptr}
runtime.SetFinalizer(texture, (*Texture).destroy)
return texture, nil
}
return nil, genericError
}
// Create a new texture from an image
//
// image: Image to upload to the texture
// area: Area of the source image to load (nil to load the entire image)
func NewTextureFromImage(image *Image, area *IntRect) (*Texture, error) {
if cptr := C.sfTexture_createFromImage(image.toCPtr(), area.toCPtr()); cptr != nil {
texture := &Texture{cptr}
runtime.SetFinalizer(texture, (*Texture).destroy)
return texture, nil
}
return nil, genericError
}
// Copy an existing texture
func (this *Texture) Copy() *Texture {
texture := &Texture{C.sfTexture_copy(this.cptr)}
runtime.SetFinalizer(texture, (*Texture).destroy)
return texture
}
// Destroy an existing texture
func (this *Texture) destroy() {
globalCtxSetActive(true)
C.sfTexture_destroy(this.cptr)
globalCtxSetActive(false)
}
// Return the size of the texture
func (this *Texture) GetSize() (size Vector2u) {
size.fromC(C.sfTexture_getSize(this.cptr))
return
}
// Copy a texture's pixels to an image
func (this *Texture) CopyToImage() *Image {
return newImageFromPtr(C.sfTexture_copyToImage(this.cptr))
}
// Update a texture from the contents of a window
//
// window: Window to copy to the texture
// x: X offset in the texture where to copy the source pixels
// y: Y offset in the texture where to copy the source pixels
func (this *Texture) UpdateFromWindow(window *Window, x, y uint) {
C.sfTexture_updateFromWindow(this.cptr, window.cptr, C.uint(x), C.uint(y))
}
// Update a texture from the contents of a render-window
//
// renderWindow: Render-window to copy to the texture
// x: X offset in the texture where to copy the source pixels
// y: Y offset in the texture where to copy the source pixels
func (this *Texture) UpdateFromRenderWindow(window *RenderWindow, x, y uint) {
C.sfTexture_updateFromRenderWindow(this.cptr, window.cptr, C.uint(x), C.uint(y))
}
// Update a texture from an image
//
// image: Image to copy to the texture
// x: X offset in the texture where to copy the source pixels
// y: Y offset in the texture where to copy the source pixels
func (this *Texture) UpdateFromImage(image *Image, x, y uint) {
C.sfTexture_updateFromImage(this.cptr, image.toCPtr(), C.uint(x), C.uint(y))
}
// Update a texture from an array of pixels
//
// pixels: Slice of pixels to copy to the texture
// width: Width of the pixel region contained in pixels
// height: Height of the pixel region contained in pixels
// x: X offset in the texture where to copy the source pixels
// y: Y offset in the texture where to copy the source pixels
func (this *Texture) UpdateFromPixels(pixels []byte, width, height, x, y uint) {
if len(pixels) > 0 {
C.sfTexture_updateFromPixels(this.cptr, (*C.sfUint8)(unsafe.Pointer(&pixels[0])), C.uint(width), C.uint(height), C.uint(x), C.uint(y))
}
}
// Enable or disable the smooth filter on a texture
func (this *Texture) SetSmooth(smooth bool) {
C.sfTexture_setSmooth(this.cptr, goBool2C(smooth))
}
// Tell whether the smooth filter is enabled or not for a texture
func (this *Texture) IsSmooth() bool {
return sfBool2Go(C.sfTexture_isSmooth(this.cptr))
}
// Enable or disable repeating for a texture
//
// Repeating is involved when using texture coordinates
// outside the texture rectangle [0, 0, width, height].
// In this case, if repeat mode is enabled, the whole texture
// will be repeated as many times as needed to reach the
// coordinate (for example, if the X texture coordinate is
// 3 * width, the texture will be repeated 3 times).
// If repeat mode is disabled, the "extra space" will instead
// be filled with border pixels.
// Warning: on very old graphics cards, white pixels may appear
// when the texture is repeated. With such cards, repeat mode
// can be used reliably only if the texture has power-of-two
// dimensions (such as 256x128).
// Repeating is disabled by default.
func (this *Texture) SetRepeated(repeated bool) {
C.sfTexture_setRepeated(this.cptr, goBool2C(repeated))
}
// Tell whether a texture is repeated or not
func (this *Texture) IsRepeated() bool {
return sfBool2Go(C.sfTexture_isRepeated(this.cptr))
}
// Get the maximum texture size allowed
func GetMaximumTextureSize() uint {
return uint(C.sfTexture_getMaximumSize())
}
// Bind a texture for rendering
//
// This function is not part of the graphics API, it mustn't be
// used when drawing SFML entities. It must be used only if you
// mix sfTexture with OpenGL code.
//
// texture: Pointer to the texture to bind, can be nil to use no texture
func BindTexture(texture *Texture) {
C.sfTexture_bind(texture.toCPtr())
}
/////////////////////////////////////
/// GO <-> C
/////////////////////////////////////
func (this *Texture) toCPtr() *C.sfTexture {
if this != nil {
return this.cptr
}
return nil
}