2021-11-22 22:00:45 +01:00
|
|
|
/*
|
2022-02-22 10:33:06 +01:00
|
|
|
Copyright (c) 2019-2022 Péter Magyar
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2022-02-22 12:02:42 +01:00
|
|
|
#ifndef TERRAIN_2D_TERRAIN_2D_JOB_H
|
|
|
|
#define TERRAIN_2D_TERRAIN_2D_JOB_H
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 11:09:36 +01:00
|
|
|
#include "terrain_2d_job.h"
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
#include "../../defines.h"
|
|
|
|
|
|
|
|
#include pool_vector_h
|
|
|
|
|
|
|
|
include_pool_vector
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
class Terrain2DMesher;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
class Terrain2DTerrain2DJob : public Terrain2DJob {
|
|
|
|
GDCLASS(Terrain2DTerrain2DJob, Terrain2DJob);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
public:
|
2022-02-22 11:42:28 +01:00
|
|
|
Ref<Terrain2DMesher> get_mesher() const;
|
|
|
|
void set_mesher(const Ref<Terrain2DMesher> &mesher);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Ref<Terrain2DMesher> get_liquid_mesher() const;
|
|
|
|
void set_liquid_mesher(const Ref<Terrain2DMesher> &mesher);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
void phase_setup();
|
|
|
|
void phase_library_setup();
|
2022-02-22 10:33:06 +01:00
|
|
|
void phase_terrain_mesh_setup();
|
2021-11-22 22:00:45 +01:00
|
|
|
void phase_collider();
|
|
|
|
void phase_physics_proces();
|
2022-02-22 10:33:06 +01:00
|
|
|
void phase_terrain_mesh();
|
2021-11-22 22:00:45 +01:00
|
|
|
void phase_finalize();
|
|
|
|
void phase_physics_process();
|
|
|
|
|
|
|
|
void _execute_phase();
|
|
|
|
void _reset();
|
|
|
|
void _physics_process(float delta);
|
|
|
|
|
|
|
|
void step_type_normal();
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Terrain2DTerrain2DJob();
|
|
|
|
~Terrain2DTerrain2DJob();
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Ref<Terrain2DMesher> _mesher;
|
|
|
|
Ref<Terrain2DMesher> _liquid_mesher;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-23 19:38:06 +01:00
|
|
|
PoolVector<Vector2> temp_arr_collider;
|
|
|
|
PoolVector<Vector2> temp_arr_collider_liquid;
|
2021-11-22 22:00:45 +01:00
|
|
|
Array temp_mesh_arr;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|