mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-04-10 06:14:07 +08:00
feat: move players to world instead of main
This commit is contained in:
@@ -2,7 +2,10 @@
|
||||
|
||||
#include <Cubed/gameplay/player.hpp>
|
||||
|
||||
Player::Player() {
|
||||
Player::Player(const World& world, const std::string& name) :
|
||||
m_world(world),
|
||||
m_name(name)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -18,10 +21,6 @@ const MoveState& Player::get_move_state() const {
|
||||
return m_move_state;
|
||||
}
|
||||
|
||||
void Player::init(bool** block_present) {
|
||||
m_block_present = block_present;
|
||||
}
|
||||
|
||||
void Player::set_player_pos(const glm::vec3& pos) {
|
||||
m_player_pos = pos;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#include <Cubed/gameplay/player.hpp>
|
||||
#include <Cubed/gameplay/world.hpp>
|
||||
#include <Cubed/tools/cubed_assert.hpp>
|
||||
#include <Cubed/tools/cubed_hash.hpp>
|
||||
World::World() {
|
||||
|
||||
}
|
||||
@@ -209,6 +211,16 @@ const BlockRenderData& World::get_block_render_data(int world_x, int world_y ,in
|
||||
return m_block_render_data;
|
||||
}
|
||||
|
||||
Player& World::get_player(const std::string& name){
|
||||
auto it = m_players.find(HASH::str(name));
|
||||
if (it == m_players.end()) {
|
||||
LOG::error("Can't find player {}", name);
|
||||
CUBED_ASSERT(0);
|
||||
}
|
||||
|
||||
return it->second;
|
||||
}
|
||||
|
||||
|
||||
void World::init_world() {
|
||||
for (int s = 0; s < DISTANCE; s++) {
|
||||
@@ -235,7 +247,8 @@ void World::init_world() {
|
||||
chunk.gen_vertex_data();
|
||||
|
||||
}
|
||||
|
||||
// init players
|
||||
m_players.emplace(HASH::str("TestPlayer"), Player(*this, "TestPlayer"));
|
||||
}
|
||||
|
||||
void World::render() {
|
||||
@@ -255,4 +268,10 @@ void World::render() {
|
||||
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
||||
//LOG::info("Chunk {} {} render finished", pos.x, pos.z);
|
||||
}
|
||||
}
|
||||
|
||||
void World::update(float delta_time) {
|
||||
for (auto& player : m_players) {
|
||||
player.second.update(delta_time);
|
||||
}
|
||||
}
|
||||
@@ -33,7 +33,6 @@ float tf = 0.0f;
|
||||
double last_time = 0.0f;
|
||||
double delta_time = 0.0f;
|
||||
GLuint texture_array;
|
||||
Player player;
|
||||
Camera camera;
|
||||
TextureManager texture_manager;
|
||||
World world;
|
||||
@@ -105,7 +104,7 @@ void init(GLFWwindow* window) {
|
||||
mv_loc = glGetUniformLocation(rendering_program, "mv_matrix");
|
||||
proj_loc = glGetUniformLocation(rendering_program, "proj_matrix");
|
||||
|
||||
camera.camera_init(&player);
|
||||
camera.camera_init(&world.get_player("TestPlayer"));
|
||||
glfwGetFramebufferSize(window, &width, &height);
|
||||
aspect = (float)width / (float)height;
|
||||
glViewport(0, 0, width, height);
|
||||
@@ -144,7 +143,7 @@ void cursor_position_callback(GLFWwindow* window, double xpos, double ypos) {
|
||||
void display(GLFWwindow* window, double current_time) {
|
||||
delta_time = current_time - last_time;
|
||||
last_time = current_time;
|
||||
player.update(delta_time);
|
||||
world.update(delta_time);
|
||||
camera.update_move_camera();
|
||||
|
||||
|
||||
@@ -183,7 +182,7 @@ void key_callback(GLFWwindow* window, int key, int scancode, int action, int mod
|
||||
|
||||
}
|
||||
|
||||
player.update_player_move_state(key, action);
|
||||
world.get_player("TestPlayer").update_player_move_state(key, action);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user