From f800dbc034e7a70a613bab8cd9d147be4f6e88b6 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 10 Jan 2017 21:26:13 -0500 Subject: windows build --- entityx/help/NonCopyable.h | 20 ++++++++++ entityx/help/Pool.cc | 21 ++++++++++ entityx/help/Pool.h | 95 ++++++++++++++++++++++++++++++++++++++++++++++ entityx/help/Timer.cc | 32 ++++++++++++++++ entityx/help/Timer.h | 29 ++++++++++++++ 5 files changed, 197 insertions(+) create mode 100644 entityx/help/NonCopyable.h create mode 100644 entityx/help/Pool.cc create mode 100644 entityx/help/Pool.h create mode 100644 entityx/help/Timer.cc create mode 100644 entityx/help/Timer.h (limited to 'entityx/help') diff --git a/entityx/help/NonCopyable.h b/entityx/help/NonCopyable.h new file mode 100644 index 0000000..19c0ed1 --- /dev/null +++ b/entityx/help/NonCopyable.h @@ -0,0 +1,20 @@ +// Inspired heavily by boost::noncopyable + +#pragma once + +namespace entityx { +namespace help { + +class NonCopyable { +protected: + NonCopyable() = default; + ~NonCopyable() = default; + + + NonCopyable(const NonCopyable&) = delete; + NonCopyable& operator = (const NonCopyable &) = delete; +}; + + +} // namespace help +} // namespace entityx diff --git a/entityx/help/Pool.cc b/entityx/help/Pool.cc new file mode 100644 index 0000000..c710887 --- /dev/null +++ b/entityx/help/Pool.cc @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2012-2014 Alec Thomas + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Alec Thomas + */ + +#include "entityx/help/Pool.h" + +namespace entityx { + +BasePool::~BasePool() { + for (char *ptr : blocks_) { + delete[] ptr; + } +} + +} // namespace entityx diff --git a/entityx/help/Pool.h b/entityx/help/Pool.h new file mode 100644 index 0000000..f217ec2 --- /dev/null +++ b/entityx/help/Pool.h @@ -0,0 +1,95 @@ +/* + * Copyright (C) 2012-2014 Alec Thomas + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Alec Thomas + */ + +#pragma once + +#include +#include +#include + +namespace entityx { + +/** + * Provides a resizable, semi-contiguous pool of memory for constructing + * objects in. Pointers into the pool will be invalided only when the pool is + * destroyed. + * + * The semi-contiguous nature aims to provide cache-friendly iteration. + * + * Lookups are O(1). + * Appends are amortized O(1). + */ +class BasePool { + public: + explicit BasePool(std::size_t element_size, std::size_t chunk_size = 8192) + : element_size_(element_size), chunk_size_(chunk_size), capacity_(0) {} + virtual ~BasePool(); + + std::size_t size() const { return size_; } + std::size_t capacity() const { return capacity_; } + std::size_t chunks() const { return blocks_.size(); } + + /// Ensure at least n elements will fit in the pool. + inline void expand(std::size_t n) { + if (n >= size_) { + if (n >= capacity_) reserve(n); + size_ = n; + } + } + + inline void reserve(std::size_t n) { + while (capacity_ < n) { + char *chunk = new char[element_size_ * chunk_size_]; + blocks_.push_back(chunk); + capacity_ += chunk_size_; + } + } + + inline void *get(std::size_t n) { + assert(n < size_); + return blocks_[n / chunk_size_] + (n % chunk_size_) * element_size_; + } + + inline const void *get(std::size_t n) const { + assert(n < size_); + return blocks_[n / chunk_size_] + (n % chunk_size_) * element_size_; + } + + virtual void destroy(std::size_t n) = 0; + + protected: + std::vector blocks_; + std::size_t element_size_; + std::size_t chunk_size_; + std::size_t size_ = 0; + std::size_t capacity_; +}; + + +/** + * Implementation of BasePool that provides type-"safe" deconstruction of + * elements in the pool. + */ +template +class Pool : public BasePool { + public: + Pool() : BasePool(sizeof(T), ChunkSize) {} + virtual ~Pool() { + // Component destructors *must* be called by owner. + } + + virtual void destroy(std::size_t n) override { + assert(n < size_); + T *ptr = static_cast(get(n)); + ptr->~T(); + } +}; + +} // namespace entityx diff --git a/entityx/help/Timer.cc b/entityx/help/Timer.cc new file mode 100644 index 0000000..43960a7 --- /dev/null +++ b/entityx/help/Timer.cc @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2013 Antony Woods + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Antony Woods + */ + +#include "entityx/help/Timer.h" + +namespace entityx { +namespace help { + +Timer::Timer() { + _start = std::chrono::system_clock::now(); +} + +Timer::~Timer() { +} + +void Timer::restart() { + _start = std::chrono::system_clock::now(); +} + +double Timer::elapsed() { + return std::chrono::duration(std::chrono::system_clock::now() - _start).count(); +} + +} // namespace help +} // namespace entityx diff --git a/entityx/help/Timer.h b/entityx/help/Timer.h new file mode 100644 index 0000000..4d22b08 --- /dev/null +++ b/entityx/help/Timer.h @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2013 Antony Woods + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Antony Woods + */ +#pragma once + +#include + +namespace entityx { +namespace help { + +class Timer { +public: + Timer(); + ~Timer(); + + void restart(); + double elapsed(); +private: + std::chrono::time_point _start; +}; + +} // namespace help +} // namespace entityx -- cgit v1.2.3