annotate tests/test_font.nim @ 799:7ce4e28c71dd

fix: a few assert, comments, names; add: collider from pointlist, fix: gltf import
author Sam <sam@basx.dev>
date Wed, 06 Sep 2023 00:03:51 +0700
parents d65b62812d34
children 6cc16b62e497
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
1 import std/unicode
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
2 import std/tables
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
3
726
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
4 import semicongine
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
5
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
6 proc main() =
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
7 var font = loadFont("DejaVuSans.ttf", color=newVec4f(1, 0.5, 0.5, 1), resolution=20)
791
43432dad4797 did: remove some stuff from the heap, maybe nicer?
Sam <sam@basx.dev>
parents: 777
diff changeset
8
43432dad4797 did: remove some stuff from the heap, maybe nicer?
Sam <sam@basx.dev>
parents: 777
diff changeset
9 var textbox = initTextbox(32, font, "".toRunes)
792
d65b62812d34 did: undid using meshes as values, ref is much better, fix a few things, fix a few huge performance issues
Sam <sam@basx.dev>
parents: 791
diff changeset
10 var scene = Scene(name: "main")
d65b62812d34 did: undid using meshes as values, ref is much better, fix a few things, fix a few huge performance issues
Sam <sam@basx.dev>
parents: 791
diff changeset
11 scene.add textbox
d65b62812d34 did: undid using meshes as values, ref is much better, fix a few things, fix a few huge performance issues
Sam <sam@basx.dev>
parents: 791
diff changeset
12 textbox.mesh.transform = scale(0.01, 0.01)
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
13 var engine = initEngine("Test fonts")
791
43432dad4797 did: remove some stuff from the heap, maybe nicer?
Sam <sam@basx.dev>
parents: 777
diff changeset
14 engine.initRenderer()
792
d65b62812d34 did: undid using meshes as values, ref is much better, fix a few things, fix a few huge performance issues
Sam <sam@basx.dev>
parents: 791
diff changeset
15 scene.addShaderGlobal("perspective", Unit4F32)
791
43432dad4797 did: remove some stuff from the heap, maybe nicer?
Sam <sam@basx.dev>
parents: 777
diff changeset
16 engine.addScene(scene)
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
17
726
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
18 while engine.updateInputs() == Running and not engine.keyIsDown(Escape):
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
19 if engine.windowWasResized():
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
20 var winSize = engine.getWindow().size
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
21 scene.setShaderGlobal("perspective", orthoWindowAspect(winSize[1] / winSize[0]))
792
d65b62812d34 did: undid using meshes as values, ref is much better, fix a few things, fix a few huge performance issues
Sam <sam@basx.dev>
parents: 791
diff changeset
22 textbox.mesh.transform = scale(0.01 * (winSize[1] / winSize[0]), 0.01)
733
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
23 for c in [Key.A, Key.B, Key.C, Key.D, Key.E, Key.F, Key.G, Key.H, Key.I, Key.J, Key.K, Key.L, Key.M, Key.N, Key.O, Key.P, Key.Q, Key.R, Key.S, Key.T, Key.U, Key.V, Key.W, Key.X, Key.Y, Key.Z]:
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
24 if engine.keyWasPressed(c):
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
25 if engine.keyIsDown(ShiftL) or engine.keyIsDown(ShiftR):
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
26 textbox.text = textbox.text & ($c).toRunes
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
27 else:
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
28 textbox.text = textbox.text & ($c).toRunes[0].toLower()
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
29 if engine.keyWasPressed(Space):
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
30 textbox.text = textbox.text & " ".toRunes[0]
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
31 if engine.keyWasPressed(Backspace) and textbox.text.len > 0:
07c755e65a4a add: final font-rendering, API changes fixed
Sam <sam@basx.dev>
parents: 726
diff changeset
32 textbox.text = textbox.text[0 ..< ^1]
726
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
33 engine.renderScene(scene)
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
34 engine.destroy()
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
35
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
36
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
37 when isMainModule:
443791a202c8 add: font-test
Sam <sam@basx.dev>
parents:
diff changeset
38 main()