2022-11-29 03:19:57 +01:00
|
|
|
# Copyright (C) 2022 RozK
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2022-12-20 16:10:09 +01:00
|
|
|
from engine import (
|
|
|
|
vec3, vec3_mul_vec3,
|
|
|
|
mat3, mat3_rotation, mat3_mul_vec3,
|
|
|
|
mat4, mat4_projection, mat4_lookat,
|
|
|
|
resolve_input, set_input_mat4)
|
|
|
|
|
|
|
|
_m2km = vec3(0.001, 0.001, 0.001)
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
class _Inputs:
|
|
|
|
__slots__ = 'projection', 'view'
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
def __init__(self, shader, projection, view):
|
|
|
|
self.projection = resolve_input(shader, projection)
|
|
|
|
self.view = resolve_input(shader, view)
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
class Camera:
|
2022-12-20 16:10:09 +01:00
|
|
|
__slots__ = 'origin', 'lookat', 'rotation', 'projection', 'view'
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
def __init__(self):
|
2022-12-20 16:10:09 +01:00
|
|
|
self.origin = vec3()
|
|
|
|
self.lookat = vec3()
|
|
|
|
self.rotation = mat3()
|
2022-12-18 05:40:52 +01:00
|
|
|
self.projection = mat4()
|
|
|
|
self.view = mat4()
|
2022-11-29 03:19:57 +01:00
|
|
|
|
|
|
|
def set_projection(self, half_fov, ratio, near_z, far_z):
|
2022-12-18 05:40:52 +01:00
|
|
|
mat4_projection(self.projection, half_fov, ratio, near_z, far_z)
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-20 16:10:09 +01:00
|
|
|
def set_view(self, origin, lookat, axis, angle):
|
|
|
|
self.origin.set(*origin)
|
|
|
|
self.lookat.set(*lookat)
|
|
|
|
mat3_rotation(self.rotation, axis, angle)
|
|
|
|
mat3_mul_vec3(self.origin, self.rotation, self.origin)
|
|
|
|
mat3_mul_vec3(self.lookat, self.rotation, self.lookat)
|
|
|
|
mat4_lookat(self.view, self.origin, self.lookat)
|
|
|
|
|
|
|
|
def to_km(self):
|
|
|
|
vec3_mul_vec3(self.origin, _m2km, self.origin)
|
|
|
|
vec3_mul_vec3(self.lookat, _m2km, self.lookat)
|
|
|
|
mat4_lookat(self.view, self.origin, self.lookat)
|
2022-11-29 03:19:57 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
def resolve_inputs(self, shader, projection = b'u_projection', view = b'u_view'):
|
|
|
|
return _Inputs(shader, projection, view)
|
2022-12-18 03:44:31 +01:00
|
|
|
|
2022-12-18 05:40:52 +01:00
|
|
|
def update_inputs(self, inputs):
|
|
|
|
set_input_mat4(inputs.projection, self.projection)
|
|
|
|
set_input_mat4(inputs.view, self.view)
|