Add PSP host.
This commit is contained in:
@ -10,11 +10,46 @@ set(CMAKE_CXX_STANDARD 20)
|
|||||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
|
||||||
|
|
||||||
|
set(DAWN_PROJECT_NAME "Dawn")
|
||||||
|
set(DAWN_PROJECT_VERSION "01.00")
|
||||||
|
|
||||||
# Variable Caches
|
# Variable Caches
|
||||||
set(DAWN_CACHE_TARGET "dawn-target")
|
set(DAWN_CACHE_TARGET "dawn-target")
|
||||||
|
|
||||||
# CMake tools
|
# Build target
|
||||||
add_subdirectory(cmake)
|
if(DEFINED ENV{DAWN_BUILD_SYSTEM})
|
||||||
|
set(DAWN_BUILD_SYSTEM $ENV{DAWN_BUILD_SYSTEM} CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
else()
|
||||||
|
set(DAWN_BUILD_SYSTEM "linux" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Build tools specifics
|
||||||
|
if(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
||||||
|
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE)
|
||||||
|
if(DEFINED ENV{VITASDK})
|
||||||
|
set(CMAKE_TOOLCHAIN_FILE "$ENV{VITASDK}/share/vita.toolchain.cmake" CACHE PATH "toolchain file")
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Please define VITASDK to point to your SDK path!")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include("$ENV{VITASDK}/share/vita.cmake" REQUIRED)
|
||||||
|
|
||||||
|
set(DAWN_VITA_APP_NAME "${DAWN_PROJECT_NAME}" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
set(DAWN_VITA_TITLEID "YWSH00001" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
set(DAWN_VITA_VERSION "${DAWN_PROJECT_VERSION}" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
set(VITA_MKSFOEX_FLAGS "${VITA_MKSFOEX_FLAGS} -d PARENTAL_LEVEL=1" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "psp")
|
||||||
|
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE)
|
||||||
|
if(DEFINED ENV{PSPDEV})
|
||||||
|
set(CMAKE_TOOLCHAIN_FILE "$ENV{PSPDEV}/psp/share/pspdev.cmake" CACHE PATH "toolchain file")
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Please define PSPDEV to point to your SDK path!")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include("$ENV{PSPDEV}/psp/share/pspdev.cmake" REQUIRED)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Set Common Build Variables
|
# Set Common Build Variables
|
||||||
set(DAWN_ROOT_DIR "${CMAKE_SOURCE_DIR}")
|
set(DAWN_ROOT_DIR "${CMAKE_SOURCE_DIR}")
|
||||||
@ -31,8 +66,8 @@ set(DAWN_ASSETS "" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|||||||
set(DAWN_BUILD_BINARY ${DAWN_BUILD_DIR}/Dawn CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
set(DAWN_BUILD_BINARY ${DAWN_BUILD_DIR}/Dawn CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
||||||
|
|
||||||
# Initialize Project First.
|
# Initialize Project First.
|
||||||
project(Dawn
|
project("${DAWN_PROJECT_NAME}"
|
||||||
VERSION 1.0.0
|
VERSION "${DAWN_PROJECT_VERSION}"
|
||||||
LANGUAGES C CXX
|
LANGUAGES C CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -59,4 +94,13 @@ if(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
|||||||
VERSION ${DAWN_VITA_VERSION}
|
VERSION ${DAWN_VITA_VERSION}
|
||||||
NAME ${DAWN_VITA_APP_NAME}
|
NAME ${DAWN_VITA_APP_NAME}
|
||||||
)
|
)
|
||||||
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "psp")
|
||||||
|
create_pbp_file(
|
||||||
|
TARGET ${PROJECT_NAME}
|
||||||
|
ICON_PATH NULL
|
||||||
|
BACKGROUND_PATH NULL
|
||||||
|
PREVIEW_PATH NULL
|
||||||
|
TITLE ${PROJECT_NAME}
|
||||||
|
VERSION ${DAWN_PROJECT_VERSION}
|
||||||
|
)
|
||||||
endif()
|
endif()
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
mkdir tools
|
|
||||||
cd tools
|
|
||||||
cmake .. -DDAWN_BUILD_TARGET=target-tools
|
|
||||||
make
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
git submodule update --init --recursive
|
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
sudo apt install build-essential
|
|
@ -1,38 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
sudo apt-get install cmake libarchive-tools
|
|
||||||
git clone https://github.com/vitasdk/vdpm ~/vdpm
|
|
||||||
cd ~/vdpm
|
|
||||||
./bootstrap-vitasdk.sh
|
|
||||||
export PATH=$VITASDK/bin:$PATH
|
|
||||||
|
|
||||||
git clone https://github.com/vitasdk/packages.git ~/vitapackages
|
|
||||||
cd ~/vitapackages
|
|
||||||
|
|
||||||
dir_array=(
|
|
||||||
zlib
|
|
||||||
bzip2
|
|
||||||
henkaku
|
|
||||||
taihen
|
|
||||||
kubridge
|
|
||||||
openal-soft
|
|
||||||
openssl
|
|
||||||
curl
|
|
||||||
curlpp
|
|
||||||
expat
|
|
||||||
opus
|
|
||||||
opusfile
|
|
||||||
glm
|
|
||||||
kuio
|
|
||||||
vitaShaRK
|
|
||||||
libmathneon
|
|
||||||
vitaGL
|
|
||||||
SceShaccCgExt
|
|
||||||
)
|
|
||||||
|
|
||||||
curdir=$(pwd)
|
|
||||||
for d in "${dir_array[@]}";do
|
|
||||||
echo "${curdir}${d}"
|
|
||||||
cd "${curdir}/${d}"
|
|
||||||
vita-makepkg
|
|
||||||
vdpm *-arm.tar.xz
|
|
||||||
done
|
|
3
ci/psp/Dockerfile
Normal file
3
ci/psp/Dockerfile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
FROM pspdev/pspdev
|
||||||
|
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
|
||||||
|
RUN psp-pacman -Sy pspgl glm
|
14
ci/psp/docker-compose.yml
Normal file
14
ci/psp/docker-compose.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
services:
|
||||||
|
dawn-psp:
|
||||||
|
build: .
|
||||||
|
volumes:
|
||||||
|
- ./../../:/Dawn
|
||||||
|
working_dir: /Dawn
|
||||||
|
command:
|
||||||
|
- /bin/bash
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
mkdir -p ./build/psp
|
||||||
|
cd ./build/psp
|
||||||
|
psp-cmake ../.. -DDAWN_BUILD_SYSTEM=psp -DCMAKE_BUILD_TYPE=Debug
|
||||||
|
make
|
@ -1,10 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
mkdir -p vita/build
|
|
||||||
cd vita/build
|
|
||||||
if [ ! -d "src" ]
|
|
||||||
then
|
|
||||||
cmake ../.. -DDAWN_BUILD_TARGET=target-helloworld-vita -DCMAKE_BUILD_TYPE=Debug
|
|
||||||
fi
|
|
||||||
make
|
|
||||||
cp ./src/dawnvita/*.vpk ../
|
|
||||||
cd ../..
|
|
15
ci/vita/docker-compose.yml
Normal file
15
ci/vita/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
dawn-vita:
|
||||||
|
image: gnuton/vitasdk-docker
|
||||||
|
volumes:
|
||||||
|
- ./../../:/Dawn
|
||||||
|
working_dir: /Dawn
|
||||||
|
command:
|
||||||
|
- /bin/bash
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
rm -rf ./build/vita
|
||||||
|
mkdir -p ./build/vita
|
||||||
|
cd ./build/vita
|
||||||
|
cmake ../.. -DDAWN_BUILD_SYSTEM=vita -DCMAKE_BUILD_TYPE=Debug
|
||||||
|
make
|
@ -1 +0,0 @@
|
|||||||
add_subdirectory(targets)
|
|
@ -1,7 +0,0 @@
|
|||||||
if(DEFINED ENV{DAWN_BUILD_SYSTEM})
|
|
||||||
set(DAWN_BUILD_SYSTEM $ENV{DAWN_BUILD_SYSTEM} CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
||||||
else()
|
|
||||||
set(DAWN_BUILD_SYSTEM "linux" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_subdirectory(${DAWN_BUILD_SYSTEM})
|
|
@ -1,18 +0,0 @@
|
|||||||
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE)
|
|
||||||
if(DEFINED ENV{VITASDK})
|
|
||||||
set(CMAKE_TOOLCHAIN_FILE "$ENV{VITASDK}/share/vita.toolchain.cmake" CACHE PATH "toolchain file")
|
|
||||||
else()
|
|
||||||
message(FATAL_ERROR "Please define VITASDK to point to your SDK path!")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include("$ENV{VITASDK}/share/vita.cmake" REQUIRED)
|
|
||||||
|
|
||||||
set(DAWN_VITA_APP_NAME "Hello World" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
||||||
# Unique ID must be exactly 9 characters. Recommended: XXXXYYYYY where X =
|
|
||||||
# unique string of developer and Y = a unique number for this app
|
|
||||||
set(DAWN_VITA_TITLEID "VSDK00006" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
||||||
# Optional version string to show in LiveArea's more info screen
|
|
||||||
set(DAWN_VITA_VERSION "01.00" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
||||||
# Optional. You can specify more param.sfo flags this way.
|
|
||||||
set(VITA_MKSFOEX_FLAGS "${VITA_MKSFOEX_FLAGS} -d PARENTAL_LEVEL=1" CACHE INTERNAL ${DAWN_CACHE_TARGET})
|
|
@ -24,5 +24,8 @@ if(DAWN_BUILD_SYSTEM STREQUAL "linux")
|
|||||||
|
|
||||||
elseif(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
||||||
add_subdirectory(glm)
|
add_subdirectory(glm)
|
||||||
|
|
||||||
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "psp")
|
||||||
|
add_subdirectory(glm)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
@ -9,9 +9,16 @@ if(DAWN_BUILD_SYSTEM STREQUAL "linux")
|
|||||||
add_subdirectory(dawnglfw)
|
add_subdirectory(dawnglfw)
|
||||||
add_subdirectory(dawnlinux)
|
add_subdirectory(dawnlinux)
|
||||||
add_subdirectory(dawnopengl)
|
add_subdirectory(dawnopengl)
|
||||||
add_subdirectory(dawnrpg)
|
|
||||||
elseif(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "vita")
|
||||||
add_subdirectory(dawn)
|
add_subdirectory(dawn)
|
||||||
add_subdirectory(dawnvita)
|
add_subdirectory(dawnvita)
|
||||||
add_subdirectory(dawnopengl)
|
add_subdirectory(dawnopengl)
|
||||||
|
elseif(DAWN_BUILD_SYSTEM STREQUAL "psp")
|
||||||
|
set(DAWN_OPENGL_SHADERS FALSE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
set(DAWN_OPENGL_FRAMEBUFFERS FALSE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
set(DAWN_OPENGL_MIPMAPS FALSE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
add_subdirectory(dawn)
|
||||||
|
add_subdirectory(dawnpsp)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Unknown build system: ${DAWN_BUILD_SYSTEM}")
|
||||||
endif()
|
endif()
|
@ -6,7 +6,6 @@
|
|||||||
# Libraries
|
# Libraries
|
||||||
target_link_libraries(${DAWN_TARGET_NAME}
|
target_link_libraries(${DAWN_TARGET_NAME}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
glm
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
@ -22,7 +21,6 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Subdirs
|
# Subdirs
|
||||||
add_subdirectory(display)
|
|
||||||
add_subdirectory(error)
|
add_subdirectory(error)
|
||||||
add_subdirectory(game)
|
add_subdirectory(game)
|
||||||
add_subdirectory(locale)
|
add_subdirectory(locale)
|
||||||
|
@ -25,10 +25,10 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
#define GLM_ENABLE_EXPERIMENTAL
|
// #define GLM_ENABLE_EXPERIMENTAL
|
||||||
#include <glm/glm.hpp>
|
// #include <glm/glm.hpp>
|
||||||
#include <glm/gtc/type_ptr.hpp>
|
// #include <glm/gtc/type_ptr.hpp>
|
||||||
#include <glm/gtx/matrix_decompose.hpp>
|
// #include <glm/gtx/matrix_decompose.hpp>
|
||||||
|
|
||||||
typedef char char_t;
|
typedef char char_t;
|
||||||
typedef char8_t u8char_t;
|
typedef char8_t u8char_t;
|
||||||
|
@ -8,64 +8,16 @@
|
|||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
|
|
||||||
Game::Game() :
|
Game::Game() {
|
||||||
renderManager()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
std::shared_ptr<Scene> Game::getCurrentScene() {
|
|
||||||
return currentScene;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Game::setCurrentScene(std::shared_ptr<Scene> scene) {
|
|
||||||
currentScene = scene;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Game::init() {
|
void Game::init() {
|
||||||
renderManager.init(*this);
|
|
||||||
|
|
||||||
this->shader = std::make_shared<SimpleTexturedShader>();
|
|
||||||
this->shader->init();
|
|
||||||
this->shader->bind();
|
|
||||||
|
|
||||||
this->mesh = std::make_shared<Mesh>();
|
|
||||||
this->mesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT);
|
|
||||||
QuadMesh::buffer(this->mesh, glm::vec4(-0.5f, -0.5f, 0.5f, 0.5f), glm::vec4(0.0f, 0.0f, 0.0f, 0.0f), 0, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Game::update() {
|
void Game::update() {
|
||||||
renderManager.update(*this);
|
|
||||||
|
|
||||||
glm::mat4 view = glm::lookAt(
|
|
||||||
glm::vec3(3, 3, 3),
|
|
||||||
glm::vec3(0, 0, 0),
|
|
||||||
glm::vec3(0, 1, 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
glm::mat4 proj = glm::perspective(
|
|
||||||
glm::radians(45.0f),
|
|
||||||
800.0f / 600.0f,
|
|
||||||
0.1f,
|
|
||||||
100.0f
|
|
||||||
);
|
|
||||||
|
|
||||||
glm::mat4 model = glm::mat4(1.0f);
|
|
||||||
|
|
||||||
this->shader->bind();
|
|
||||||
this->shader->setData(SimpleTexturedShaderData {
|
|
||||||
.projection = proj,
|
|
||||||
.view = view,
|
|
||||||
.model = model,
|
|
||||||
.color = COLOR_WHITE,
|
|
||||||
.hasTexture = false,
|
|
||||||
.texture = 0
|
|
||||||
});
|
|
||||||
this->shader->upload();
|
|
||||||
this->mesh->draw(MeshDrawMode::TRIANGLES, 0, QUAD_INDICE_COUNT);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Game::~Game() {
|
Game::~Game() {
|
||||||
shader = nullptr;
|
|
||||||
mesh = nullptr;
|
|
||||||
}
|
}
|
@ -5,23 +5,14 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "dawn.hpp"
|
#include "dawn.hpp"
|
||||||
#include "display/RenderManager.hpp"
|
#include "world/Map.hpp"
|
||||||
|
|
||||||
#include "display/mesh/QuadMesh.hpp"
|
|
||||||
#include "display/shader/SimpleTexturedShader.hpp"
|
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class Scene;
|
|
||||||
|
|
||||||
class Game {
|
class Game {
|
||||||
private:
|
private:
|
||||||
std::shared_ptr<Scene> currentScene;
|
std::shared_ptr<Map> map;
|
||||||
std::shared_ptr<Mesh> mesh;
|
|
||||||
std::shared_ptr<SimpleTexturedShader> shader;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
RenderManager renderManager;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new instance of Game, the class majorily responsible for
|
* Constructs a new instance of Game, the class majorily responsible for
|
||||||
* handling all internal dawn functions outside of platform-centric things
|
* handling all internal dawn functions outside of platform-centric things
|
||||||
@ -29,20 +20,6 @@ namespace Dawn {
|
|||||||
*/
|
*/
|
||||||
Game();
|
Game();
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the current scene.
|
|
||||||
*
|
|
||||||
* @return The current scene.
|
|
||||||
*/
|
|
||||||
std::shared_ptr<Scene> getCurrentScene();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the current scene to the provided scene.
|
|
||||||
*
|
|
||||||
* @param scene The scene to set as the current scene.
|
|
||||||
*/
|
|
||||||
void setCurrentScene(std::shared_ptr<Scene> scene);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the game and all sub managers used by game.
|
* Initializes the game and all sub managers used by game.
|
||||||
*/
|
*/
|
||||||
|
@ -4,10 +4,19 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "scene/Scene.hpp"
|
#include "dawn.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class RPGScene : public Scene {
|
class Map {
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* Creates Map object.
|
||||||
|
*/
|
||||||
|
Map();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys Map object.
|
||||||
|
*/
|
||||||
|
~Map();
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -95,7 +95,8 @@ DawnGLFWInitResult DawnGLFWHost::init(
|
|||||||
this->game = std::make_shared<Game>();
|
this->game = std::make_shared<Game>();
|
||||||
this->game->init();
|
this->game->init();
|
||||||
|
|
||||||
auto backBuffer = this->game->renderManager.getBackBufferRenderTarget();
|
// Backbuffer
|
||||||
|
backBuffer = std::make_shared<BackBuffer>();
|
||||||
backBuffer->setSize((float_t)fbWidth, (float_t)fbHeight);
|
backBuffer->setSize((float_t)fbWidth, (float_t)fbHeight);
|
||||||
|
|
||||||
// Set up callbacks
|
// Set up callbacks
|
||||||
@ -108,8 +109,7 @@ DawnGLFWInitResult DawnGLFWHost::init(
|
|||||||
if(host == nullptr) return;
|
if(host == nullptr) return;
|
||||||
host->windowWidth = width;
|
host->windowWidth = width;
|
||||||
host->windowHeight = height;
|
host->windowHeight = height;
|
||||||
auto backBuffer = host->game->renderManager.getBackBufferRenderTarget();
|
host->backBuffer->setSize((float_t)width, (float_t)height);
|
||||||
backBuffer->setSize((float_t)width, (float_t)height);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return DawnGLFWInitResult::SUCCESS;
|
return DawnGLFWInitResult::SUCCESS;
|
||||||
@ -140,6 +140,7 @@ void DawnGLFWHost::start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DawnGLFWHost::~DawnGLFWHost() {
|
DawnGLFWHost::~DawnGLFWHost() {
|
||||||
|
this->backBuffer = nullptr;
|
||||||
this->game = nullptr;
|
this->game = nullptr;
|
||||||
|
|
||||||
// Terminate GLFW
|
// Terminate GLFW
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include "dawn.hpp"
|
#include "dawn.hpp"
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
#include "game/Game.hpp"
|
#include "game/Game.hpp"
|
||||||
|
#include "display/BackBuffer.hpp"
|
||||||
|
|
||||||
#define DAWN_GLFW_WIDTH_DEFAULT 800
|
#define DAWN_GLFW_WIDTH_DEFAULT 800
|
||||||
#define DAWN_GLFW_HEIGHT_DEFAULT 600
|
#define DAWN_GLFW_HEIGHT_DEFAULT 600
|
||||||
@ -26,6 +27,7 @@ namespace Dawn {
|
|||||||
GLFWwindow *window;
|
GLFWwindow *window;
|
||||||
int32_t windowWidth, windowHeight;
|
int32_t windowWidth, windowHeight;
|
||||||
std::shared_ptr<Game> game;
|
std::shared_ptr<Game> game;
|
||||||
|
std::shared_ptr<BackBuffer> backBuffer;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
@ -38,6 +40,7 @@ namespace Dawn {
|
|||||||
*
|
*
|
||||||
* @param argc The number of arguments.
|
* @param argc The number of arguments.
|
||||||
* @param argv The arguments.
|
* @param argv The arguments.
|
||||||
|
* @return The result of the initialization.
|
||||||
*/
|
*/
|
||||||
DawnGLFWInitResult init(const int32_t argc, const char_t **argv);
|
DawnGLFWInitResult init(const int32_t argc, const char_t **argv);
|
||||||
|
|
||||||
|
@ -12,8 +12,15 @@ using namespace Dawn;
|
|||||||
|
|
||||||
int32_t main(const int32_t argc, const char_t **argv) {
|
int32_t main(const int32_t argc, const char_t **argv) {
|
||||||
std::shared_ptr<DawnGLFWHost> host = std::make_shared<DawnGLFWHost>();
|
std::shared_ptr<DawnGLFWHost> host = std::make_shared<DawnGLFWHost>();
|
||||||
host->init(argc, argv);
|
|
||||||
|
auto result = host->init(argc, argv);
|
||||||
|
if(result != DawnGLFWInitResult::SUCCESS) {
|
||||||
|
return (int32_t)result;
|
||||||
|
}
|
||||||
|
|
||||||
host->start();
|
host->start();
|
||||||
|
|
||||||
|
host = nullptr;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
@ -3,6 +3,20 @@
|
|||||||
# This software is released under the MIT License.
|
# This software is released under the MIT License.
|
||||||
# https://opensource.org/licenses/MIT
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Setup options
|
||||||
|
if(NOT DEFINED DAWN_OPENGL_SHADERS)
|
||||||
|
set(DAWN_OPENGL_SHADERS TRUE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT DEFINED DAWN_OPENGL_FRAMEBUFFERS)
|
||||||
|
set(DAWN_OPENGL_FRAMEBUFFERS TRUE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT DEFINED DAWN_OPENGL_MIPMAPS)
|
||||||
|
set(DAWN_OPENGL_MIPMAPS TRUE CACHE INTERNAL "${DAWN_CACHE_TARGET}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
target_include_directories(${DAWN_TARGET_NAME}
|
target_include_directories(${DAWN_TARGET_NAME}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
|
@ -61,8 +61,10 @@ void BackBuffer::clear(const int32_t clearFlags) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void BackBuffer::bind() {
|
void BackBuffer::bind() {
|
||||||
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
#if DAWN_OPENGL_FRAMEBUFFERS
|
||||||
assertNoGLError();
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
||||||
|
assertNoGLError();
|
||||||
|
#endif
|
||||||
glViewport(0, 0, (GLsizei)this->width, (GLsizei)this->height);
|
glViewport(0, 0, (GLsizei)this->width, (GLsizei)this->height);
|
||||||
assertNoGLError();
|
assertNoGLError();
|
||||||
}
|
}
|
@ -6,11 +6,15 @@
|
|||||||
# Sources
|
# Sources
|
||||||
target_sources(${DAWN_TARGET_NAME}
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
|
Color.cpp
|
||||||
BackBuffer.cpp
|
BackBuffer.cpp
|
||||||
Texture.cpp
|
Texture.cpp
|
||||||
RenderManager.cpp
|
RenderManager.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
# Subdirs
|
# Subdirs
|
||||||
add_subdirectory(mesh)
|
# add_subdirectory(mesh)
|
||||||
add_subdirectory(shader)
|
if(DAWN_OPENGL_SHADERS EQUAL TRUE)
|
||||||
|
message(FATAL_ERROR "DAWN_OPENGL_SHADERS: ${DAWN_OPENGL_SHADERS}")
|
||||||
|
add_subdirectory(shader)
|
||||||
|
endif()
|
@ -8,9 +8,7 @@
|
|||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
RenderManager::RenderManager() :
|
RenderManager::RenderManager() {
|
||||||
shaderManager()
|
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RenderManager::init(const Game &game) {
|
void RenderManager::init(const Game &game) {
|
||||||
|
@ -6,9 +6,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "dawn.hpp"
|
#include "dawn.hpp"
|
||||||
#include "display/RenderTarget.hpp"
|
#include "display/RenderTarget.hpp"
|
||||||
#include "display/shader/ShaderManager.hpp"
|
|
||||||
#include "display/BackBuffer.hpp"
|
#include "display/BackBuffer.hpp"
|
||||||
|
|
||||||
|
#if DAWN_OPENGL_SHADERS
|
||||||
|
#include "display/shader/ShaderManager.hpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class Game;
|
class Game;
|
||||||
|
|
||||||
@ -17,7 +20,9 @@ namespace Dawn {
|
|||||||
std::shared_ptr<BackBuffer> backBuffer = nullptr;
|
std::shared_ptr<BackBuffer> backBuffer = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ShaderManager shaderManager;
|
#if DAWN_OPENGL_SHADERS
|
||||||
|
ShaderManager shaderManager;
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a render manager.
|
* Creates a render manager.
|
||||||
|
@ -42,7 +42,7 @@ void Texture::setSize(
|
|||||||
this->id = -1;
|
this->id = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t maxSize;
|
GLint maxSize;
|
||||||
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize);
|
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize);
|
||||||
assertTrue(width > 0 && width <= maxSize, "Width is out of bounds!");
|
assertTrue(width > 0 && width <= maxSize, "Width is out of bounds!");
|
||||||
assertTrue(height > 0 && height <= maxSize, "Height is out of bounds!");
|
assertTrue(height > 0 && height <= maxSize, "Height is out of bounds!");
|
||||||
@ -64,26 +64,7 @@ void Texture::setSize(
|
|||||||
|
|
||||||
void Texture::updateTextureProperties() {
|
void Texture::updateTextureProperties() {
|
||||||
auto setWrapMode = [](GLenum axis, enum TextureWrapMode wm) {
|
auto setWrapMode = [](GLenum axis, enum TextureWrapMode wm) {
|
||||||
switch(wm) {
|
glTexParameteri(GL_TEXTURE_2D, axis, (GLint)wm);
|
||||||
case TextureWrapMode::REPEAT:
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, axis, GL_REPEAT);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureWrapMode::MIRRORED_REPEAT:
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, axis, GL_MIRRORED_REPEAT);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureWrapMode::CLAMP_TO_EDGE:
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, axis, GL_CLAMP_TO_EDGE);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureWrapMode::CLAMP_TO_BORDER:
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, axis, GL_CLAMP_TO_BORDER);
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
assertUnreachable("Unknown wrap mode!");
|
|
||||||
}
|
|
||||||
assertNoGLError();
|
assertNoGLError();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -124,28 +105,7 @@ void Texture::updateTextureProperties() {
|
|||||||
void Texture::bufferRaw(const void *data) {
|
void Texture::bufferRaw(const void *data) {
|
||||||
assertTrue(this->id != -1, "Texture is not ready!");
|
assertTrue(this->id != -1, "Texture is not ready!");
|
||||||
|
|
||||||
GLenum format;
|
GLenum format = (GLenum)this->format;
|
||||||
switch(this->format) {
|
|
||||||
case TextureFormat::R:
|
|
||||||
format = GL_RED;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureFormat::RG:
|
|
||||||
format = GL_RG;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureFormat::RGB:
|
|
||||||
format = GL_RGB;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case TextureFormat::RGBA:
|
|
||||||
format = GL_RGBA;
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
assertUnreachable("Unknown texture format!");
|
|
||||||
}
|
|
||||||
|
|
||||||
GLenum dataFormat;
|
GLenum dataFormat;
|
||||||
switch(this->dataFormat) {
|
switch(this->dataFormat) {
|
||||||
case TextureDataFormat::UNSIGNED_BYTE:
|
case TextureDataFormat::UNSIGNED_BYTE:
|
||||||
@ -168,8 +128,11 @@ void Texture::bufferRaw(const void *data) {
|
|||||||
0, format, dataFormat, data
|
0, format, dataFormat, data
|
||||||
);
|
);
|
||||||
assertNoGLError();
|
assertNoGLError();
|
||||||
glGenerateMipmap(GL_TEXTURE_2D);
|
|
||||||
assertNoGLError();
|
#if DAWN_OPENGL_MIPMAPS
|
||||||
|
glGenerateMipmap(GL_TEXTURE_2D);
|
||||||
|
assertNoGLError();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void Texture::buffer(const struct ColorU8 pixels[]) {
|
void Texture::buffer(const struct ColorU8 pixels[]) {
|
||||||
|
@ -13,17 +13,21 @@ namespace Dawn {
|
|||||||
typedef GLuint textureslot_t;
|
typedef GLuint textureslot_t;
|
||||||
|
|
||||||
enum class TextureFormat {
|
enum class TextureFormat {
|
||||||
R = 1,
|
R = GL_RED,
|
||||||
RG = 2,
|
#ifdef GL_RG
|
||||||
RGB = 3,
|
RG = GL_RG,
|
||||||
RGBA = 4
|
#endif
|
||||||
|
RGB = GL_RGB,
|
||||||
|
RGBA = GL_RGBA
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class TextureWrapMode {
|
enum class TextureWrapMode {
|
||||||
REPEAT = 0,
|
REPEAT = GL_REPEAT,
|
||||||
MIRRORED_REPEAT = 1,
|
MIRRORED_REPEAT = GL_MIRRORED_REPEAT,
|
||||||
CLAMP_TO_EDGE = 2,
|
CLAMP_TO_EDGE = GL_CLAMP_TO_EDGE,
|
||||||
CLAMP_TO_BORDER = 3
|
#ifdef GL_CLAMP_TO_BORDER
|
||||||
|
CLAMP_TO_BORDER = GL_CLAMP_TO_BORDER
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class TextureFilterMode {
|
enum class TextureFilterMode {
|
||||||
|
@ -40,9 +40,11 @@ void assertNotGLErrorCheck(const char *file, int32_t line) {
|
|||||||
error += "\nOUT_OF_MEMORY";
|
error += "\nOUT_OF_MEMORY";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GL_INVALID_FRAMEBUFFER_OPERATION:
|
#ifdef GL_INVALID_FRAMEBUFFER_OPERATION
|
||||||
error += "\nINVALID_FRAMEBUFFER_OPERATION";
|
case GL_INVALID_FRAMEBUFFER_OPERATION:
|
||||||
break;
|
error += "\nINVALID_FRAMEBUFFER_OPERATION";
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
default:
|
default:
|
||||||
error += "\nUNKNOWN GL ERROR ERROR";
|
error += "\nUNKNOWN GL ERROR ERROR";
|
||||||
|
@ -26,9 +26,11 @@ void errorCheckOpenGL() {
|
|||||||
buffer << "INVALID_OPERATION" << std::endl;
|
buffer << "INVALID_OPERATION" << std::endl;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GL_INVALID_FRAMEBUFFER_OPERATION:
|
#ifdef GL_INVALID_FRAMEBUFFER_OPERATION
|
||||||
buffer << "INVALID_FRAMEBUFFER_OPERATION" << std::endl;
|
case GL_INVALID_FRAMEBUFFER_OPERATION:
|
||||||
break;
|
buffer << "INVALID_FRAMEBUFFER_OPERATION" << std::endl;
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case GL_OUT_OF_MEMORY:
|
case GL_OUT_OF_MEMORY:
|
||||||
buffer << "OUT_OF_MEMORY" << std::endl;
|
buffer << "OUT_OF_MEMORY" << std::endl;
|
||||||
|
@ -1,21 +1,37 @@
|
|||||||
# Copyright (c) 2024 Dominic Masters
|
# Copyright (c) 2024 Dominic Masters
|
||||||
#
|
#
|
||||||
# This software is released under the MIT License.
|
# This software is released under the MIT License.
|
||||||
# https://opensource.org/licenses/MIT
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
# Libraries
|
# Libraries
|
||||||
|
target_link_libraries(${DAWN_TARGET_NAME}
|
||||||
# Includes
|
PUBLIC
|
||||||
target_include_directories(${DAWN_TARGET_NAME}
|
m
|
||||||
PUBLIC
|
c
|
||||||
${CMAKE_CURRENT_LIST_DIR}
|
psputility
|
||||||
)
|
pspdebug
|
||||||
|
pspge
|
||||||
# Sources
|
pspdisplay
|
||||||
target_sources(${DAWN_TARGET_NAME}
|
pspctrl
|
||||||
PRIVATE
|
pspsdk
|
||||||
|
pspuser
|
||||||
)
|
psprtc
|
||||||
|
pspvfpu
|
||||||
# Subdirs
|
GL
|
||||||
add_subdirectory(scene)
|
)
|
||||||
|
|
||||||
|
# Includes
|
||||||
|
target_include_directories(${DAWN_TARGET_NAME}
|
||||||
|
PUBLIC
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
|
PRIVATE
|
||||||
|
main.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
# Subdirs
|
||||||
|
add_subdirectory(error)
|
||||||
|
add_subdirectory(host)
|
@ -6,5 +6,5 @@
|
|||||||
# Sources
|
# Sources
|
||||||
target_sources(${DAWN_TARGET_NAME}
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
RPGScene.cpp
|
error.cpp
|
||||||
)
|
)
|
31
src/dawnpsp/error/error.cpp
Normal file
31
src/dawnpsp/error/error.cpp
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "error/error.hpp"
|
||||||
|
#include <pspkernel.h>
|
||||||
|
#include <pspdebug.h>
|
||||||
|
#include <pspctrl.h>
|
||||||
|
#include <pspdisplay.h>
|
||||||
|
|
||||||
|
void errorMessageBox(const std::u8string &message) {
|
||||||
|
// c8string to cstring
|
||||||
|
std::string messageStr = (
|
||||||
|
message.length() > 0 ?
|
||||||
|
std::string(message.cbegin(), message.cend()) :
|
||||||
|
std::string()
|
||||||
|
);
|
||||||
|
|
||||||
|
// Print Hello World! on a debug screen on a loop
|
||||||
|
pspDebugScreenInit();
|
||||||
|
while(1) {
|
||||||
|
pspDebugScreenSetXY(0, 0);
|
||||||
|
pspDebugScreenPrintf(messageStr.c_str());
|
||||||
|
sceDisplayWaitVblankStart();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void errorLog(const std::string &message) {
|
||||||
|
std::cerr << message << std::endl;
|
||||||
|
}
|
@ -1,10 +1,10 @@
|
|||||||
# Copyright (c) 2022 Dominic Masters
|
# Copyright (c) 2024 Dominic Masters
|
||||||
#
|
#
|
||||||
# This software is released under the MIT License.
|
# This software is released under the MIT License.
|
||||||
# https://opensource.org/licenses/MIT
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
# Sources
|
# Sources
|
||||||
target_sources(${DAWN_TARGET_NAME}
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
Color.cpp
|
DawnPSPHost.cpp
|
||||||
)
|
)
|
27
src/dawnpsp/host/DawnPSPHost.cpp
Normal file
27
src/dawnpsp/host/DawnPSPHost.cpp
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "DawnPSPHost.hpp"
|
||||||
|
#include "error/error.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
DawnPSPHost::DawnPSPHost() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
DawnPSPHostResult DawnPSPHost::init() {
|
||||||
|
return DawnPSPHostResult::SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DawnPSPHost::start() {
|
||||||
|
while(this->shouldGameRun) {
|
||||||
|
// Do stuff
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DawnPSPHost::~DawnPSPHost() {
|
||||||
|
|
||||||
|
}
|
43
src/dawnpsp/host/DawnPSPHost.hpp
Normal file
43
src/dawnpsp/host/DawnPSPHost.hpp
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "game/Game.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
enum class DawnPSPHostResult {
|
||||||
|
SUCCESS = 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
class DawnPSPHost {
|
||||||
|
private:
|
||||||
|
std::shared_ptr<Game> game;
|
||||||
|
|
||||||
|
public:
|
||||||
|
bool_t shouldGameRun = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new PSP Host.
|
||||||
|
*/
|
||||||
|
DawnPSPHost();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the PSP Host.
|
||||||
|
*
|
||||||
|
* @return The result of the initialization.
|
||||||
|
*/
|
||||||
|
DawnPSPHostResult init();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts the PSP Host, called after the PSP Host has been initialized.
|
||||||
|
*/
|
||||||
|
void start();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys the PSP Host.
|
||||||
|
*/
|
||||||
|
~DawnPSPHost();
|
||||||
|
};
|
||||||
|
}
|
52
src/dawnpsp/main.cpp
Normal file
52
src/dawnpsp/main.cpp
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "main.hpp"
|
||||||
|
#include "host/DawnPSPHost.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
std::shared_ptr<DawnPSPHost> host;
|
||||||
|
|
||||||
|
int callbackOnExit(int arg1, int arg2, void *common) {
|
||||||
|
sceKernelExitGame();
|
||||||
|
host->shouldGameRun = false;
|
||||||
|
host = nullptr;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int callbackThread(SceSize args, void *argp) {
|
||||||
|
int cbid = sceKernelCreateCallback("Exit Callback", callbackOnExit, NULL);
|
||||||
|
sceKernelRegisterExitCallback(cbid);
|
||||||
|
sceKernelSleepThreadCB();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
// Setup PSP Callbacks
|
||||||
|
int thid = sceKernelCreateThread(
|
||||||
|
"update_thread",
|
||||||
|
callbackThread,
|
||||||
|
0x11,
|
||||||
|
0xFA0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
);
|
||||||
|
if(thid >= 0) sceKernelStartThread(thid, 0, 0);
|
||||||
|
|
||||||
|
//
|
||||||
|
host = std::make_shared<DawnPSPHost>();
|
||||||
|
|
||||||
|
auto ret = host->init();
|
||||||
|
if(ret != DawnPSPHostResult::SUCCESS) {
|
||||||
|
host = nullptr;
|
||||||
|
return (int)ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
host->start();
|
||||||
|
host = nullptr;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
21
src/dawnpsp/main.hpp
Normal file
21
src/dawnpsp/main.hpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "dawn.hpp"
|
||||||
|
#include <pspkernel.h>
|
||||||
|
#include <pspdebug.h>
|
||||||
|
#include <pspctrl.h>
|
||||||
|
#include <pspdisplay.h>
|
||||||
|
|
||||||
|
PSP_MODULE_INFO("Controller", 0, 1, 1);
|
||||||
|
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main entry to the program.
|
||||||
|
*
|
||||||
|
* @return The exit code of the program.
|
||||||
|
*/
|
||||||
|
int main(void);
|
@ -1,8 +0,0 @@
|
|||||||
// Copyright (c) 2024 Dominic Masters
|
|
||||||
//
|
|
||||||
// This software is released under the MIT License.
|
|
||||||
// https://opensource.org/licenses/MIT
|
|
||||||
|
|
||||||
#include "RPGScene.hpp"
|
|
||||||
|
|
||||||
using namespace Dawn;
|
|
@ -9,24 +9,25 @@ target_link_libraries(${DAWN_TARGET_NAME}
|
|||||||
m
|
m
|
||||||
stdc++
|
stdc++
|
||||||
vitaGL
|
vitaGL
|
||||||
# mathneon
|
mathneon
|
||||||
# vitashark
|
vitashark
|
||||||
# kubridge_stub
|
# kubridge_stub
|
||||||
# SceAppMgr_stub
|
SceAppMgr_stub
|
||||||
# SceAudio_stub
|
# SceAudio_stub
|
||||||
# SceCtrl_stub
|
# SceCtrl_stub
|
||||||
# SceCommonDialog_stub
|
SceCommonDialog_stub
|
||||||
# SceDisplay_stub
|
SceDisplay_stub
|
||||||
# SceKernelDmacMgr_stub
|
SceKernelDmacMgr_stub
|
||||||
# SceGxm_stub
|
SceGxm_stub
|
||||||
# SceShaccCg_stub
|
SceShaccCg_stub
|
||||||
# SceSysmodule_stub
|
# SceSysmodule_stub
|
||||||
# ScePower_stub
|
# ScePower_stub
|
||||||
# SceTouch_stub
|
# SceTouch_stub
|
||||||
# SceVshBridge_stub
|
# SceVshBridge_stub
|
||||||
# SceIofilemgr_stub
|
# SceIofilemgr_stub
|
||||||
# SceShaccCgExt
|
SceShaccCgExt
|
||||||
# libtaihen_stub.a
|
# ScePvf_stub
|
||||||
|
libtaihen_stub.a
|
||||||
)
|
)
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
|
38
src/dawnvita/host/DawnVitaHost.cpp
Normal file
38
src/dawnvita/host/DawnVitaHost.cpp
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "DawnVitaHost.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
DawnVitaHost::DawnVitaHost() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
DawnVitaInitResult DawnVitaHost::init() {
|
||||||
|
return DawnVitaInitResult::SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DawnVitaHost::start() {
|
||||||
|
|
||||||
|
std::stringstream output;
|
||||||
|
std::vector<std::string> hello = { "Hello" };
|
||||||
|
hello.push_back(",");
|
||||||
|
hello.push_back(" C++ ");
|
||||||
|
hello.push_back("world!");
|
||||||
|
for (auto &s : hello) {
|
||||||
|
// std::cout does't work ATM :(
|
||||||
|
output << s;
|
||||||
|
}
|
||||||
|
output << std::endl;
|
||||||
|
psvDebugScreenInit();
|
||||||
|
printf("%s\n", output.str().c_str());
|
||||||
|
sceKernelDelayThread(3*1000000); // Wait for 3 seconds
|
||||||
|
sceKernelExitProcess(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
DawnVitaHost::~DawnVitaHost() {
|
||||||
|
|
||||||
|
}
|
42
src/dawnvita/host/DawnVitaHost.hpp
Normal file
42
src/dawnvita/host/DawnVitaHost.hpp
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "dawnopengl.hpp"
|
||||||
|
#include "dawn.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
enum class DawnVitaInitResult {
|
||||||
|
SUCCESS = 0,
|
||||||
|
FAILURE = 1
|
||||||
|
};
|
||||||
|
|
||||||
|
class DawnVitaHost {
|
||||||
|
private:
|
||||||
|
|
||||||
|
public:
|
||||||
|
/**
|
||||||
|
* Creates a new Vita Host.
|
||||||
|
*/
|
||||||
|
DawnVitaHost();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the Vita Host.
|
||||||
|
*
|
||||||
|
* @return The result of the initialization.
|
||||||
|
*/
|
||||||
|
DawnVitaInitResult init();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts the Vita Host, called after the Vita Host has been initialized.
|
||||||
|
*/
|
||||||
|
void start();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys the Vita Host.
|
||||||
|
*/
|
||||||
|
~DawnVitaHost();
|
||||||
|
};
|
||||||
|
}
|
@ -4,9 +4,21 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "main.hpp"
|
#include "main.hpp"
|
||||||
|
#include "host/DawnVitaHost.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
GLfloat alpha_ref = 0.0f;
|
||||||
|
|
||||||
|
int32_t main(void) {
|
||||||
|
std::shared_ptr<DawnVitaHost> host = std::make_shared<DawnVitaHost>();
|
||||||
|
|
||||||
|
auto result = host->init();
|
||||||
|
if(result != DawnVitaInitResult::SUCCESS) {
|
||||||
|
return (int32_t)result;
|
||||||
|
}
|
||||||
|
|
||||||
|
host->start();
|
||||||
|
host = nullptr;
|
||||||
|
|
||||||
int32_t main(const int32_t argc, const char_t **argv) {
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
@ -55,7 +55,7 @@ for foldername, subfolders, filenames in os.walk(args.input):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
# No, add it
|
# No, add it
|
||||||
print(f"Archiving asset {filename}...")
|
# print(f"Archiving asset {filename}...")
|
||||||
archive.add(absolute_path, arcname=relative_path)
|
archive.add(absolute_path, arcname=relative_path)
|
||||||
|
|
||||||
# Close the archive
|
# Close the archive
|
||||||
|
Reference in New Issue
Block a user