basilisk-engine 0.2.7__cp310-cp310-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of basilisk-engine might be problematic. Click here for more details.
- basilisk/__init__.py +1 -0
- basilisk/basilisk.cpython-310-darwin.so +0 -0
- basilisk/basilisk.pyi +536 -0
- basilisk/shaders/default.frag +15 -0
- basilisk/shaders/default.vert +19 -0
- basilisk/shaders/default2D.frag +11 -0
- basilisk/shaders/default2D.vert +16 -0
- basilisk/shaders/frame.frag +11 -0
- basilisk/shaders/frame.vert +11 -0
- basilisk/shaders/include/material.glsl +52 -0
- basilisk/shaders/include/texture.glsl +11 -0
- basilisk/shaders/instance.frag +30 -0
- basilisk/shaders/instance.vert +27 -0
- basilisk/shaders/instance2D.frag +14 -0
- basilisk/shaders/instance2D.vert +20 -0
- basilisk/shaders/test.frag +15 -0
- basilisk/shaders/test.vert +11 -0
- basilisk_engine-0.2.7.dist-info/METADATA +86 -0
- basilisk_engine-0.2.7.dist-info/RECORD +28 -0
- basilisk_engine-0.2.7.dist-info/WHEEL +6 -0
- include/GLFW/glfw3.h +5912 -0
- include/GLFW/glfw3native.h +628 -0
- lib/cmake/glfw3/glfw3Config.cmake +1 -0
- lib/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
- lib/cmake/glfw3/glfw3Targets-release.cmake +19 -0
- lib/cmake/glfw3/glfw3Targets.cmake +107 -0
- lib/libglfw3.a +0 -0
- lib/pkgconfig/glfw3.pc +13 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#version 330 core
|
|
2
|
+
|
|
3
|
+
#include "include/material.glsl"
|
|
4
|
+
#include "include/texture.glsl"
|
|
5
|
+
|
|
6
|
+
in vec3 position;
|
|
7
|
+
in vec2 uv;
|
|
8
|
+
in vec3 normal;
|
|
9
|
+
flat in Material material;
|
|
10
|
+
|
|
11
|
+
uniform sampler2D uTexture;
|
|
12
|
+
uniform vec3 uCameraPosition;
|
|
13
|
+
uniform vec3 uViewDirection;
|
|
14
|
+
|
|
15
|
+
out vec4 fragColor;
|
|
16
|
+
|
|
17
|
+
void main() {
|
|
18
|
+
vec3 N = normalize(normal);
|
|
19
|
+
vec3 L = normalize(vec3(.5, 1.0, .25));
|
|
20
|
+
vec3 V = normalize(uCameraPosition - position);
|
|
21
|
+
vec3 H = normalize(L + V);
|
|
22
|
+
|
|
23
|
+
float ambient = 0.1;
|
|
24
|
+
float diffuse = max(dot(N, L), 0.0);
|
|
25
|
+
float specular = pow(max(dot(N, H), 0.0), 64);
|
|
26
|
+
float brightness = (ambient + diffuse + specular);
|
|
27
|
+
|
|
28
|
+
vec4 textureColor = getTextureValue(material, uv);
|
|
29
|
+
fragColor = vec4(brightness * textureColor.rgb, textureColor.a);
|
|
30
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#version 330 core
|
|
2
|
+
|
|
3
|
+
#include "include/material.glsl"
|
|
4
|
+
|
|
5
|
+
layout (location = 0) in vec3 vPosition;
|
|
6
|
+
layout (location = 1) in vec2 vUV;
|
|
7
|
+
layout (location = 2) in vec3 vNormal;
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
uniform mat4 uModel;
|
|
11
|
+
uniform mat4 uView;
|
|
12
|
+
uniform mat4 uProjection;
|
|
13
|
+
uniform int uMaterialID;
|
|
14
|
+
|
|
15
|
+
out vec3 position;
|
|
16
|
+
out vec2 uv;
|
|
17
|
+
out vec3 normal;
|
|
18
|
+
flat out Material material;
|
|
19
|
+
|
|
20
|
+
void main() {
|
|
21
|
+
position = vPosition;
|
|
22
|
+
uv = vUV;
|
|
23
|
+
normal = vNormal;
|
|
24
|
+
material = getMaterial(uMaterialID);
|
|
25
|
+
|
|
26
|
+
gl_Position = uProjection * uView * uModel * vec4(vPosition, 1.0);
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#version 330 core
|
|
2
|
+
|
|
3
|
+
#include "include/material.glsl"
|
|
4
|
+
#include "include/texture.glsl"
|
|
5
|
+
|
|
6
|
+
in vec2 uv;
|
|
7
|
+
flat in Material material;
|
|
8
|
+
out vec4 fragColor;
|
|
9
|
+
|
|
10
|
+
void main() {
|
|
11
|
+
vec4 textureColor = getTextureValue(material, uv);
|
|
12
|
+
if (textureColor.a <= 0.01) { discard; }
|
|
13
|
+
fragColor = textureColor;
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#version 330 core
|
|
2
|
+
|
|
3
|
+
layout (location = 0) in vec3 vPosition;
|
|
4
|
+
layout (location = 1) in vec2 vUV;
|
|
5
|
+
|
|
6
|
+
#include "include/material.glsl"
|
|
7
|
+
|
|
8
|
+
uniform mat4 uModel;
|
|
9
|
+
uniform mat4 uView;
|
|
10
|
+
uniform mat4 uProjection;
|
|
11
|
+
uniform int uMaterialID;
|
|
12
|
+
|
|
13
|
+
out vec2 uv;
|
|
14
|
+
flat out Material material;
|
|
15
|
+
|
|
16
|
+
void main() {
|
|
17
|
+
uv = vUV;
|
|
18
|
+
material = getMaterial(uMaterialID);
|
|
19
|
+
gl_Position = uProjection * uView * uModel * vec4(vPosition, 1.0);
|
|
20
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: basilisk-engine
|
|
3
|
+
Version: 0.2.7
|
|
4
|
+
Summary: Python bindings for the Basilisk C++ library
|
|
5
|
+
Keywords: graphics,game-engine,3d,2d,opengl,physics,simulation,rendering
|
|
6
|
+
Author-Email: Jonah Coffelt <coffelt.jonah0918@gmail.com>, Isaac Lagoy <isaacblagoy@gmail.com>
|
|
7
|
+
Maintainer-Email: Jonah Coffelt <coffelt.jonah0918@gmail.com>, Isaac Lagoy <isaacblagoy@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: C++
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Classifier: Topic :: Games/Entertainment
|
|
24
|
+
Project-URL: Homepage, https://github.com/BasiliskGroup/BasiliskEngine
|
|
25
|
+
Project-URL: Repository, https://github.com/BasiliskGroup/BasiliskEngine
|
|
26
|
+
Project-URL: Documentation, https://github.com/BasiliskGroup/BasiliskEngine#readme
|
|
27
|
+
Project-URL: Bug Tracker, https://github.com/BasiliskGroup/BasiliskEngine/issues
|
|
28
|
+
Requires-Python: >=3.9
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# Basilisk Engine
|
|
32
|
+
|
|
33
|
+
## Building and Running the Project
|
|
34
|
+
|
|
35
|
+
To build this project from source, you'll use **CMake**. Follow these steps from the command line:
|
|
36
|
+
|
|
37
|
+
1. First, navigate to the `build` directory:
|
|
38
|
+
```bash
|
|
39
|
+
cd build
|
|
40
|
+
```
|
|
41
|
+
2. Next, run CMake to configure the project. This generates the necessary build files for your system.
|
|
42
|
+
```bash
|
|
43
|
+
cmake ..
|
|
44
|
+
```
|
|
45
|
+
3. Then, use CMake to build the project. This compiles the source code and creates the executable file.
|
|
46
|
+
```bash
|
|
47
|
+
cmake --build .
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Once the build is complete, you can run the final program with this command:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
./render
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## steps for publishing wheels
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
cmake .. (from build)
|
|
60
|
+
cmake --build build (from root)
|
|
61
|
+
cmake --install build --prefix ./python
|
|
62
|
+
pip install build (run once)
|
|
63
|
+
python -m build
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
# Todo
|
|
67
|
+
|
|
68
|
+
## Rendering
|
|
69
|
+
- [ ] Lighting System
|
|
70
|
+
- [ ] Directional
|
|
71
|
+
- [ ] Point
|
|
72
|
+
- [ ] Spot
|
|
73
|
+
- [ ] Ambient
|
|
74
|
+
- [ ] Skybox
|
|
75
|
+
- [ ] Shadows
|
|
76
|
+
- [ ] Basic PBR
|
|
77
|
+
- [ ] Bloom
|
|
78
|
+
- [ ] Text Rendering
|
|
79
|
+
- [ ] SSAO
|
|
80
|
+
|
|
81
|
+
## Optimizations
|
|
82
|
+
- [ ] Frustum Culling
|
|
83
|
+
- [ ] Auto LOD (meshoptimizer)
|
|
84
|
+
- [ ] Instancing (After and with previous)
|
|
85
|
+
|
|
86
|
+
## Physics
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
basilisk/basilisk.cpython-310-darwin.so,sha256=kkHjn7W4j8abFdjhADeGHC6iZi28YY0esFxh9brwABQ,6855344
|
|
2
|
+
basilisk/__init__.py,sha256=g6GcpCfuqYyIQ06RyFedldVWs-Ghrcu3oJoece8HLkI,23
|
|
3
|
+
basilisk/basilisk.pyi,sha256=2Lku8hsIZDZoUOKOfiyFi0sC_KdHgIEsr7mI3rwLh5U,17018
|
|
4
|
+
basilisk/shaders/instance2D.vert,sha256=aZADfLgkQki8Z7P91HNxQ3u8sis4aqt8okMKNbF-B4s,407
|
|
5
|
+
basilisk/shaders/default2D.frag,sha256=6ytl7pPzJXGVpdgFzgigp1tjR2pSH1Y0pkDy-MjLzDU,137
|
|
6
|
+
basilisk/shaders/frame.vert,sha256=tuJhU4Baoex7QGheaOvFLkp-4izkHG0i-aCP_Hk1K0s,185
|
|
7
|
+
basilisk/shaders/test.frag,sha256=o4AhiJGcKtjm0FA0Dw2lKtPSj1f9w_e7knC3fw6qnKc,217
|
|
8
|
+
basilisk/shaders/default.vert,sha256=SXGhxEbqm8pscfRcEItG2mC0_lrGjHzx4VZyKgnoblw,358
|
|
9
|
+
basilisk/shaders/instance.frag,sha256=C_U6Zh42l0QsljYdc8C7WzOpzszaXOg8CzOVmEnsg_s,741
|
|
10
|
+
basilisk/shaders/frame.frag,sha256=6ytl7pPzJXGVpdgFzgigp1tjR2pSH1Y0pkDy-MjLzDU,137
|
|
11
|
+
basilisk/shaders/default2D.vert,sha256=LXHmC24RUImAkScyCKYsByGZjGgo5gkugBFgMHEzU3c,280
|
|
12
|
+
basilisk/shaders/instance2D.frag,sha256=3EGAEaV54NK2PFoPyXCErw2WQSWUVHN3Nig4E3JwUcI,290
|
|
13
|
+
basilisk/shaders/instance.vert,sha256=UKXcRaEGJt9ppC9mO29mcL01-xTDgJunqokbwm38aME,532
|
|
14
|
+
basilisk/shaders/default.frag,sha256=oh9VvhC879Q9pdKHckY0k2YSU1j0Pjan0-pM3_nA50c,278
|
|
15
|
+
basilisk/shaders/test.vert,sha256=NKjuoE2fnyu-Wr-ZCm7V2ywVAtDn788J5y6dgoDwgDE,181
|
|
16
|
+
basilisk/shaders/include/material.glsl,sha256=6VZsWsyQ2g7wFJ4sJRwRYDaw7crwfm_PJ-ivUYHYE9I,1207
|
|
17
|
+
basilisk/shaders/include/texture.glsl,sha256=YMBVBtj3G9I-lyYO66H4UVajpsMVkF0bKteGWb_OVEU,260
|
|
18
|
+
include/GLFW/glfw3.h,sha256=CZKjDwHrqkHDLz8FiOlClhq7ippSyodkvTLuTX1xpG0,215860
|
|
19
|
+
include/GLFW/glfw3native.h,sha256=sFycBNo_U06EjiGuJsuUp-UGJ0sQHAqnESaPE3sRxss,20034
|
|
20
|
+
basilisk_engine-0.2.7.dist-info/RECORD,,
|
|
21
|
+
basilisk_engine-0.2.7.dist-info/WHEEL,sha256=ARvpZEbgFu-cAxZINNemqHWSYlsYgHkQqksAmhPJqFw,141
|
|
22
|
+
basilisk_engine-0.2.7.dist-info/METADATA,sha256=jL9hX6jhpNGFm-INV0t7hT4LaG4zYGETZfUHewLwvHc,2626
|
|
23
|
+
lib/libglfw3.a,sha256=9OcVPNxCm1it1qflWXni7sh6BXJeO0nwzT7XdoA-EDc,289136
|
|
24
|
+
lib/pkgconfig/glfw3.pc,sha256=cLXA9ukcY0tw7XLiU0wV4rxRaaJ-NN74lH3iuKruK24,549
|
|
25
|
+
lib/cmake/glfw3/glfw3Targets-release.cmake,sha256=BpDZPBIm6Qs3gqDUufi-ocWC39UDWZwGtCkxm_4dB3M,789
|
|
26
|
+
lib/cmake/glfw3/glfw3ConfigVersion.cmake,sha256=44h7SRLq0LgdtbGC2SuOcgvcbm3AnV8k2LEPuKJS4eo,2762
|
|
27
|
+
lib/cmake/glfw3/glfw3Targets.cmake,sha256=t23yHJZKUmj6t7NuNxiFGE4qthzCrg4YF9fXwcaFDVc,4163
|
|
28
|
+
lib/cmake/glfw3/glfw3Config.cmake,sha256=7myl65bLoQkelmVugKtPG57RuKUaiGmyhwjOWuSy8p0,56
|