Mercurial > games > semicongine
annotate src/semicongine.nim @ 639:977392dc055f
add: windows audio, not super smooth, maybe replace with directsound?
| author | Sam <sam@basx.dev> |
|---|---|
| date | Tue, 02 May 2023 10:37:11 -0700 |
| parents | c2f04f016104 |
| children | 659992f14dd6 |
| rev | line source |
|---|---|
|
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
1 import semicongine/audio |
|
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
2 import semicongine/color |
| 577 | 3 import semicongine/config |
| 588 | 4 import semicongine/engine |
| 577 | 5 import semicongine/entity |
|
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
6 import semicongine/events |
| 577 | 7 import semicongine/gpu_data |
| 8 import semicongine/math | |
|
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
9 import semicongine/mesh |
|
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
10 import semicongine/renderer |
| 577 | 11 import semicongine/platform/window |
| 12 import semicongine/vulkan | |
|
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
13 |
|
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
14 export audio |
|
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
15 export color |
| 577 | 16 export config |
| 588 | 17 export engine |
| 577 | 18 export entity |
|
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
19 export events |
| 577 | 20 export gpu_data |
| 21 export math | |
|
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
22 export mesh |
|
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
23 export renderer |
|
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
517
diff
changeset
|
24 export window |
| 577 | 25 export vulkan |
