forked from ipc-sim/rigid-ipc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimState.hpp
62 lines (43 loc) · 1.7 KB
/
SimState.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once
#include <igl/Timer.h>
#include <nlohmann/json.hpp>
#include <memory> // shared_ptr
#include <physics/simulation_problem.hpp>
#include <solvers/optimization_solver.hpp>
namespace ccd {
class SimState {
public:
SimState();
bool load_scene(const std::string& filename, const std::string& patch = "");
bool reload_scene();
bool load_simulation(const nlohmann::json& args);
bool init(const nlohmann::json& args);
void simulation_step();
bool save_simulation(const std::string& filename);
void save_simulation_step();
bool save_obj_sequence(const std::string& dir_name);
void run_simulation(const std::string& fout);
const nlohmann::json& get_config() { return args; }
nlohmann::json get_active_config();
// CCD
// ----------------------------------------------
std::shared_ptr<physics::SimulationProblem> problem_ptr;
bool m_step_had_collision; ///< last step had a collision
bool m_step_has_collision; ///< last step failed to solve collisions
bool m_step_has_intersections; ///< last step resulted in intersections
bool m_solve_collisions; ///< solve collisions automatically on the step
int m_num_simulation_steps; ///< counts simulation steps
int m_max_simulation_steps; ///< maximum number of time-steps to take
int m_checkpoint_frequency; ///< time-steps between checkpoints
std::string scene_file;
nlohmann::json args;
std::vector<nlohmann::json> state_sequence;
std::vector<double> step_timings;
std::vector<int> solver_iterations;
std::vector<int> num_contacts;
protected:
igl::Timer step_timer;
size_t initial_rss;
bool m_dirty_constraints;
};
} // namespace ccd