2022-03-01 22:58:58 +01:00
|
|
|
Class {
|
|
|
|
#name : #DiyaText,
|
|
|
|
#superclass : #Diya2DNode,
|
|
|
|
#instVars : [
|
|
|
|
'fontStyle',
|
|
|
|
'fontSize',
|
2022-03-03 19:19:40 +01:00
|
|
|
'fontName',
|
2022-03-04 20:28:38 +01:00
|
|
|
'data',
|
2022-03-06 19:50:19 +01:00
|
|
|
'style',
|
|
|
|
'wrap'
|
2022-03-01 22:58:58 +01:00
|
|
|
],
|
2022-03-03 19:19:40 +01:00
|
|
|
#pools : [
|
|
|
|
'FT2Types'
|
|
|
|
],
|
2022-03-01 22:58:58 +01:00
|
|
|
#category : #'Diya-Graphics'
|
|
|
|
}
|
|
|
|
|
2022-03-03 19:19:40 +01:00
|
|
|
{ #category : #'as yet unclassified' }
|
|
|
|
DiyaText class >> data: string [
|
|
|
|
^ (self new) data: string; yourself
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
|
|
DiyaText class >> data: string shader: s [
|
|
|
|
^ (self with:s) data: string; yourself
|
|
|
|
]
|
|
|
|
|
2022-03-01 22:58:58 +01:00
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> data [
|
|
|
|
^ data
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> data: anObject [
|
2022-03-06 19:50:19 +01:00
|
|
|
data := anObject.
|
|
|
|
dirty := true
|
2022-03-01 22:58:58 +01:00
|
|
|
]
|
|
|
|
|
2022-03-03 19:19:40 +01:00
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> draw [
|
|
|
|
data ifNil: [ ^self ].
|
2022-03-06 12:07:20 +01:00
|
|
|
self shader
|
2022-03-08 23:30:01 +01:00
|
|
|
setUniform: #u_texture_type value: self texture format.
|
2022-03-03 19:19:40 +01:00
|
|
|
"configure vao vbo for texture QUAD"
|
2022-03-06 18:33:10 +01:00
|
|
|
self texture setup.
|
2022-03-06 12:07:20 +01:00
|
|
|
context texture0 setImage2D: self texture.
|
2022-03-06 18:33:10 +01:00
|
|
|
context texture0 active.
|
2022-03-03 19:19:40 +01:00
|
|
|
context vao enableAttribute: 0.
|
2022-03-04 20:28:38 +01:00
|
|
|
OpenGLVertexArray vertexAttributePointerIndex: 0 size:4 type: GL_FLOAT normalized: GL_FALSE stride: 16 pointer: nil .
|
2022-03-16 01:32:01 +01:00
|
|
|
context vbo data: GL_ARRAY_BUFFER data: vbuffer usage: GL_STATIC_DRAW.
|
|
|
|
OpenGL drawArrays: GL_TRIANGLES first:0 count: ((vbuffer size) >> 2).
|
2022-03-03 19:19:40 +01:00
|
|
|
context vao disableAttribute: 0.
|
|
|
|
"reset value"
|
2022-03-06 18:33:10 +01:00
|
|
|
self texture drop.
|
2022-03-03 19:19:40 +01:00
|
|
|
|
|
|
|
]
|
|
|
|
|
2022-03-06 12:07:20 +01:00
|
|
|
{ #category : #accessing }
|
2022-03-06 19:50:19 +01:00
|
|
|
DiyaText >> drawText [
|
|
|
|
|vertices index tex2D offset|
|
2022-03-06 18:33:10 +01:00
|
|
|
index := 1.
|
2022-03-06 19:50:19 +01:00
|
|
|
offset := 0@0.
|
2022-03-06 18:33:10 +01:00
|
|
|
tex2D := self texture.
|
2022-03-06 19:50:19 +01:00
|
|
|
1 to: data size do: [ :i|
|
2022-03-16 01:32:01 +01:00
|
|
|
vertices := self getCharsVerticesAt:i offset: offset on: tex2D.
|
2022-03-06 18:33:10 +01:00
|
|
|
vertices do: [
|
2022-03-06 19:50:19 +01:00
|
|
|
:e| vbuffer at: index put:e.
|
2022-03-06 18:33:10 +01:00
|
|
|
index := index + 1.
|
|
|
|
].
|
2022-03-16 01:32:01 +01:00
|
|
|
(offset x > self extent x and: wrap not) ifTrue: [ ^self ].
|
|
|
|
(offset y negated > self extent y) ifTrue: [ ^self ].
|
2022-03-06 12:07:20 +01:00
|
|
|
].
|
2022-03-03 19:19:40 +01:00
|
|
|
]
|
|
|
|
|
2022-03-16 01:32:01 +01:00
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> extent: v [
|
|
|
|
bbox := Rectangle origin: 0@0 corner: v.
|
|
|
|
dirty := true
|
|
|
|
]
|
|
|
|
|
2022-03-03 19:19:40 +01:00
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> fontName [
|
|
|
|
^ fontName
|
|
|
|
]
|
|
|
|
|
2022-03-06 19:50:19 +01:00
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaText >> fontName: name style: face size: size [
|
|
|
|
name ifNotNil: [ fontName := name ].
|
|
|
|
face ifNotNil: [ fontStyle := face ].
|
|
|
|
fontSize := size.
|
|
|
|
style := DiyaFontManager uniqueInstance style: self fontStyle from: self fontName.
|
|
|
|
dirty := true.
|
2022-03-03 19:19:40 +01:00
|
|
|
]
|
|
|
|
|
2022-03-01 22:58:58 +01:00
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> fontSize [
|
|
|
|
^ fontSize
|
|
|
|
]
|
|
|
|
|
2022-03-06 19:50:19 +01:00
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaText >> fontSize: size [
|
|
|
|
self fontName: nil style:nil size: size
|
2022-03-01 22:58:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> fontStyle [
|
|
|
|
^ fontStyle
|
|
|
|
]
|
|
|
|
|
2022-03-06 12:07:20 +01:00
|
|
|
{ #category : #accessing }
|
2022-03-16 01:32:01 +01:00
|
|
|
DiyaText >> getCharsVerticesAt:i offset: offset on: tex2D [
|
|
|
|
|x y w h glyph gsize c |
|
|
|
|
c := (data at:i) asciiValue.
|
2022-03-06 12:07:20 +01:00
|
|
|
c = (Character space asciiValue) ifTrue:[
|
2022-03-06 18:33:10 +01:00
|
|
|
offset setX: (offset x + (tex2D spacing ) ) setY: offset y.
|
2022-03-16 01:32:01 +01:00
|
|
|
wrap ifTrue: [
|
|
|
|
(offset x + ((self nextSpaceFrom: i + 1) * (tex2D spacing))) > (self extent x) ifTrue: [
|
|
|
|
offset setX: 0.0 setY: (offset y )- (tex2D linespace)].
|
|
|
|
].
|
2022-03-06 18:33:10 +01:00
|
|
|
^ {}.
|
2022-03-06 12:07:20 +01:00
|
|
|
].
|
|
|
|
glyph := tex2D getGlyph: c.
|
2022-03-06 18:33:10 +01:00
|
|
|
gsize := glyph extent.
|
|
|
|
((offset x > self extent x) and: (gsize x > 0)) ifTrue:[
|
2022-03-06 19:50:19 +01:00
|
|
|
wrap ifFalse: [ ^ { } ].
|
|
|
|
offset setX: 0.0 setY: (offset y )- (tex2D linespace).
|
|
|
|
offset y negated > self extent y ifTrue:[^{}].
|
|
|
|
].
|
2022-03-06 18:33:10 +01:00
|
|
|
x := offset x + (glyph bearing x).
|
|
|
|
y := offset y - (tex2D cellh).
|
|
|
|
w := (gsize x).
|
|
|
|
h := (gsize y).
|
|
|
|
offset setX: (offset x + (glyph advance x)) setY: offset y.
|
2022-03-06 12:07:20 +01:00
|
|
|
^{x. y + h. glyph texcoord origin x. glyph texcoord origin y.
|
|
|
|
x. y. glyph texcoord origin x. glyph texcoord corner y.
|
|
|
|
x + w. y. glyph texcoord corner x. glyph texcoord corner y.
|
|
|
|
x. y + h. glyph texcoord origin x. glyph texcoord origin y.
|
|
|
|
x + w. y. glyph texcoord corner x. glyph texcoord corner y.
|
|
|
|
x + w. y + h. glyph texcoord corner x. glyph texcoord origin y. }.
|
|
|
|
]
|
|
|
|
|
2022-03-01 22:58:58 +01:00
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaText >> initialize [
|
|
|
|
super initialize.
|
2022-03-06 19:50:19 +01:00
|
|
|
self fontName: 'Ubuntu' style:'Regular' size: 16.
|
2022-03-01 22:58:58 +01:00
|
|
|
data := nil.
|
2022-03-06 19:50:19 +01:00
|
|
|
wrap := false.
|
2022-03-16 01:32:01 +01:00
|
|
|
bbox := nil
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
|
|
DiyaText >> nextSpaceFrom: index [
|
|
|
|
index to: (data size) do: [:i|
|
|
|
|
(data at: i) = (Character space) ifTrue:[^i - index].
|
|
|
|
].
|
|
|
|
^ 0
|
2022-03-01 22:58:58 +01:00
|
|
|
]
|
2022-03-06 12:07:20 +01:00
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaText >> texture [
|
|
|
|
^style textureOf: self fontSize
|
|
|
|
]
|
2022-03-06 19:50:19 +01:00
|
|
|
|
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaText >> update [
|
2022-03-16 01:32:01 +01:00
|
|
|
bbox ifNil: [ ^false ].
|
2022-03-06 19:50:19 +01:00
|
|
|
vbuffer ifNotNil: [vbuffer free].
|
|
|
|
vbuffer := FFIExternalArray externalNewType: GLfloat size: data size * 24.
|
|
|
|
vbuffer autoRelease.
|
|
|
|
self drawText.
|
|
|
|
^true
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaText >> wordWrap: aBool [
|
|
|
|
wrap := aBool.
|
|
|
|
dirty := true
|
|
|
|
]
|