Name change!

This commit is contained in:
Evert Prants 2018-06-02 19:45:16 +03:00
parent c07296828b
commit 4f16d08d99
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
16 changed files with 26 additions and 26 deletions

2
.gitignore vendored
View File

@ -2,5 +2,5 @@ CMakeFiles
CMakeCache.txt CMakeCache.txt
cmake_install.cmake cmake_install.cmake
Makefile Makefile
/bin/universium /bin/voxspatium
/build /build

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5) cmake_minimum_required(VERSION 3.5)
project(universium-engine) project(voxspatium)
# Modules # Modules
#SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules ${CMAKE_MODULE_PATH}) #SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules ${CMAKE_MODULE_PATH})
@ -21,24 +21,24 @@ set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
# System-specific options # System-specific options
# TODO: this # TODO: this
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(UNIVERSIUM_EXECUTABLE "universium") set(VOXSPATIUM_EXECUTABLE "voxspatium")
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(UNIVERSIUM_EXECUTABLE "universium") set(VOXSPATIUM_EXECUTABLE "voxspatium")
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Windows") elseif (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(UNIVERSIUM_EXECUTABLE "universium.exe") set(VOXSPATIUM_EXECUTABLE "voxspatium.exe")
endif() endif()
add_executable(${UNIVERSIUM_EXECUTABLE} ${SOURCES}) add_executable(${VOXSPATIUM_EXECUTABLE} ${SOURCES})
# Include GL # Include GL
find_package(OpenGL REQUIRED) find_package(OpenGL REQUIRED)
include_directories(${OPENGL_INCLUDE_DIR}) include_directories(${OPENGL_INCLUDE_DIR})
target_link_libraries(${UNIVERSIUM_EXECUTABLE} ${OPENGL_LIBRARIES}) target_link_libraries(${VOXSPATIUM_EXECUTABLE} ${OPENGL_LIBRARIES})
# Include GLEW # Include GLEW
find_package(GLEW REQUIRED) find_package(GLEW REQUIRED)
include_directories(${GLEW_INCLUDE_PATH}) include_directories(${GLEW_INCLUDE_PATH})
target_link_libraries(${UNIVERSIUM_EXECUTABLE} ${GLEW_LIBRARY}) target_link_libraries(${VOXSPATIUM_EXECUTABLE} ${GLEW_LIBRARY})
# Include SDL # Include SDL
INCLUDE(FindPkgConfig) INCLUDE(FindPkgConfig)
@ -47,4 +47,4 @@ PKG_SEARCH_MODULE(SDL2 REQUIRED sdl2)
PKG_SEARCH_MODULE(SDL2IMAGE REQUIRED SDL2_image>=2.0.0) PKG_SEARCH_MODULE(SDL2IMAGE REQUIRED SDL2_image>=2.0.0)
include_directories(${SDL2_INCLUDE_DIRS} ${SDL2IMAGE_INCLUDE_DIRS}) include_directories(${SDL2_INCLUDE_DIRS} ${SDL2IMAGE_INCLUDE_DIRS})
target_link_libraries(${UNIVERSIUM_EXECUTABLE} ${SDL2_LIBRARIES} ${SDL2IMAGE_LIBRARIES}) target_link_libraries(${VOXSPATIUM_EXECUTABLE} ${SDL2_LIBRARIES} ${SDL2IMAGE_LIBRARIES})

View File

@ -1,9 +1,9 @@
# Universium Engine # Voxspatium Game Engine
An idea for a 3D game engine that renders voxel planets, puts them into orbits and allows the creation of games via simple scripting. An idea for a 3D game engine that renders voxel planets, puts them into orbits and allows the creation of games via simple scripting.
## The Goal ## The Goal
The goal of this application is to make a scriptable voxel planets engine to use in the making of games. And to The goal of this application is to make a scriptable voxel planets engine to use in the making of games that
actually make something cool. involve outer space and interplanetary travel.
## Compile ## Compile
Currently only tested on Linux. However, there isn't much to see here yet, so I wouldn't recommend it. Currently only tested on Linux. However, there isn't much to see here yet, so I wouldn't recommend it.

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets Engine // Voxspatium Engine - Voxel Planets Engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify
@ -38,7 +38,7 @@ void Application::initialize()
// Create our window centered at 1080x720 resolution // Create our window centered at 1080x720 resolution
m_window = SDL_CreateWindow( m_window = SDL_CreateWindow(
"Universium", "Voxspatium Engine",
SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
m_width, m_width,

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets Engine // Voxspatium Engine - Voxel Planets Engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets Engine // Voxspatium Engine - Voxel Planets Engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets Engine // Voxspatium Engine - Voxel Planets Engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
// Universium Engine - Voxel Planets engine // Voxspatium Engine - Voxel Planets engine
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee> // Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify