Mercurial > games > semicongine
annotate README.md @ 101:f0ceb8c17d2c
add: really need telemetry at some point
author | Sam <sam@basx.dev> |
---|---|
date | Fri, 17 Mar 2023 01:11:43 +0700 |
parents | 8011e4d6372d |
children | 40ff2453855e |
rev | line source |
---|---|
41 | 1 Semicongine |
2 =========== | |
3 | |
8 | 4 Hi there |
5 | |
41 | 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. |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
7 I am using the last programming language you will ever need, [Nim](https://nim-lang.org/) |
41 | 8 |
48 | 9 Building |
10 -------- | |
11 | |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
12 Requires Nim to be installed and ```glslangValidator``` to be downloaded to the |
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
13 directory of the main compilation file (e.g. into ```examples/``` in order to |
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
14 compile the examples). It can be downloaded at |
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
15 https://github.com/KhronosGroup/glslang/releases/. |
45 | 16 |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
17 Run ```nim help``` to see a list of available build commands. |
48 | 18 |
41 | 19 Roadmap |
20 ------- | |
21 | |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
22 Still tons to do. Making render pipeline and scenegraph somewhat compatible |
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
23 seems like it will require quite a bit more of work. Also, audio might require |
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
24 quite a bit of work, no experience there. |
41 | 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 | |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
36 - [~] Instanced drawing (currently can use instance attributes, but we only support a single instance per draw call) |
57 | 37 - [ ] Fullscreen mode + switch between modes |
73 | 38 - [x] Fixed framerate |
41 | 39 |
40 Build-system: | |
41 - [x] move all of Makefile to config.nims | |
42 | |
43 Asset handling: | |
44 - [ ] Mesh files (Wavefront OBJ, MTL) (use something from sketchfab for testing, https://sketchfab.com/) | |
45 - [ ] Image files (BMP RGB + BMP Graysscale for transparency) | |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
46 - [ ] Audio files (AU) |
41 | 47 |
48 Quality improvments: | |
49 | |
70
02bc1232905c
did: update readme (this single X was a ton of work)
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
50 - [x] Better scenegraph API |
41 | 51 - [ ] Better rendering pipeline API |
52 | |
53 Other: | |
54 - [x] Mouse/Keyboard input handling | |
55 - [x] X11 | |
56 - [x] Win32 | |
57 - [ ] Config files ala \*.ini files (use std/parsecfg) | |
58 - [ ] Input-mapping configuration | |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
59 - [ ] Audio playing (Alsa, Windows Waveform API?) |
101 | 60 - [ ] Telemetry |
41 | 61 |
62 Advanced features: | |
101 | 63 - [ ] Allow multipel Uniform blocks? |
41 | 64 - [ ] Text rendering |
65 - [ ] Animation system | |
66 - [ ] Sprite system | |
67 - [ ] Particle system | |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
57
diff
changeset
|
68 - [ ] Query and display rendering information from Vulkan |
95
8011e4d6372d
add: consistent way to define platform-specific code
Sam <sam@basx.dev>
parents:
73
diff
changeset
|
69 - [ ] Game controller input handling |