Mercurial > games > semicongine
annotate README.md @ 559:baaa620887b4
add: more vulkan objects
| author | Sam <sam@basx.dev> |
|---|---|
| date | Mon, 06 Mar 2023 23:50:21 +0700 |
| parents | 21f15523fda0 |
| children | f0ceb8c17d2c |
| rev | line source |
|---|---|
| 502 | 1 Semicongine |
| 2 =========== | |
| 3 | |
| 469 | 4 Hi there |
| 5 | |
| 502 | 6 This is a very simplistic little game engine, mainly trying to wrap around vulkan and the operating system's windowing, input and audio system. |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
7 I am using the last programming language you will ever need, [Nim](https://nim-lang.org/) |
| 502 | 8 |
| 509 | 9 Building |
| 10 -------- | |
| 11 | |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
12 Requires Nim to be installed and ```glslangValidator``` to be downloaded to the |
|
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
13 directory of the main compilation file (e.g. into ```examples/``` in order to |
|
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
14 compile the examples). It can be downloaded at |
|
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
15 https://github.com/KhronosGroup/glslang/releases/. |
|
506
b159fcdd36b9
add: some build instructions for windows
Sam <sam@basx.dev>
parents:
502
diff
changeset
|
16 |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
17 Run ```nim help``` to see a list of available build commands. |
| 509 | 18 |
| 502 | 19 Roadmap |
| 20 ------- | |
| 21 | |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
22 Still tons to do. Making render pipeline and scenegraph somewhat compatible |
|
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
23 seems like it will require quite a bit more of work. Also, audio might require |
|
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
24 quite a bit of work, no experience there. |
| 502 | 25 |
| 26 Rendering: | |
| 27 | |
| 28 - [x] Vertex attributes, vertex data | |
| 29 - [x] Shaders (allow for predefined and custom shaders) | |
| 30 - [x] Uniforms | |
| 31 - [x] Per-instance vertex attributes (required to be able to draw scene graph) | |
| 32 - [ ] Textures | |
| 33 - [ ] Depth buffering | |
| 34 - [ ] Mipmaps | |
| 35 - [ ] Multisampling | |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
36 - [~] Instanced drawing (currently can use instance attributes, but we only support a single instance per draw call) |
| 518 | 37 - [ ] Fullscreen mode + switch between modes |
| 534 | 38 - [x] Fixed framerate |
|
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
518
diff
changeset
|
39 - [ ] Allow multipel Uniform blocks |
| 502 | 40 |
| 41 Build-system: | |
| 42 - [x] move all of Makefile to config.nims | |
| 43 | |
| 44 Asset handling: | |
| 45 - [ ] Mesh files (Wavefront OBJ, MTL) (use something from sketchfab for testing, https://sketchfab.com/) | |
| 46 - [ ] Image files (BMP RGB + BMP Graysscale for transparency) | |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
47 - [ ] Audio files (AU) |
| 502 | 48 |
| 49 Quality improvments: | |
| 50 | |
|
531
140222601389
did: update readme (this single X was a ton of work)
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
51 - [x] Better scenegraph API |
| 502 | 52 - [ ] Better rendering pipeline API |
| 53 | |
| 54 Other: | |
| 55 - [x] Mouse/Keyboard input handling | |
| 56 - [x] X11 | |
| 57 - [x] Win32 | |
| 58 - [ ] Config files ala \*.ini files (use std/parsecfg) | |
| 59 - [ ] Input-mapping configuration | |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
60 - [ ] Audio playing (Alsa, Windows Waveform API?) |
| 502 | 61 |
| 62 Advanced features: | |
| 63 - [ ] Text rendering | |
| 64 - [ ] Animation system | |
| 65 - [ ] Sprite system | |
| 66 - [ ] Particle system | |
|
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
518
diff
changeset
|
67 - [ ] Query and display rendering information from Vulkan |
|
556
21f15523fda0
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
534
diff
changeset
|
68 - [ ] Game controller input handling |
