Define the general state of the sim (extract from main.cpp)

This commit is contained in:
2025-11-27 01:30:21 +00:00
parent a03fa13a07
commit 0ac316ada4

54
src/state.hpp Normal file
View File

@@ -0,0 +1,54 @@
/* state.hpp: General state of the simulation
* Created: 2025-11-27
* Author: Aryadev Chavali
* License: See end of file
* Commentary:
*/
#ifndef STATE_HPP
#define STATE_HPP
#include <queue>
#include "base.hpp"
#include "node.hpp"
namespace cw::state
{
struct State
{
cw::node::NodeAllocator allocator;
std::queue<u64> queue;
State(void);
};
struct DrawState
{
const State &state;
struct Bounds
{
cw::node::Node leftmost, rightmost;
f64 lower_val, upper_val;
} bounds;
DrawState(const State &);
void compute_bounds(void);
};
} // namespace cw::state
#endif
/* Copyright (C) 2025 Aryadev Chavali
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
* details.
* You may distribute and modify this code under the terms of the GNU General
* Public License Version 2, which you should have received a copy of along with
* this program. If not, please go to <https://www.gnu.org/licenses/>.
*/