Kaynağa Gözat

math: add an Array2D class that acts like a 2D matrix.

undefined
Sam Hocevar 10 yıl önce
ebeveyn
işleme
5fb1ce656f
5 değiştirilmiş dosya ile 168 ekleme ve 1 silme
  1. +1
    -1
      src/Makefile.am
  2. +1
    -0
      src/lol/math/all.h
  3. +162
    -0
      src/lol/math/array2d.h
  4. +1
    -0
      src/lolcore.vcxproj
  5. +3
    -0
      src/lolcore.vcxproj.filters

+ 1
- 1
src/Makefile.am Dosyayı Görüntüle

@@ -39,7 +39,7 @@ liblolcore_headers = \
\
lol/math/all.h \
lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
lol/math/geometry.h lol/math/interp.h lol/math/rand.h \
lol/math/geometry.h lol/math/interp.h lol/math/rand.h lol/math/array2d.h \
lol/math/constants.h \
\
lol/algorithm/all.h \


+ 1
- 0
src/lol/math/all.h Dosyayı Görüntüle

@@ -16,6 +16,7 @@
#include <lol/math/half.h>
#include <lol/math/real.h>
#include <lol/math/vector.h>
#include <lol/math/array2d.h>
#include <lol/math/geometry.h>
#include <lol/math/interp.h>
#include <lol/math/rand.h>


+ 162
- 0
src/lol/math/array2d.h Dosyayı Görüntüle

@@ -0,0 +1,162 @@
//
// Lol Engine
//
// Copyright: (c) 2010-2014 Sam Hocevar <sam@hocevar.net>
// (c) 2013-2014 Benjamin "Touky" Huet <huet.benjamin@gmail.com>
// This program is free software; you can redistribute it and/or
// modify it under the terms of the Do What The Fuck You Want To
// Public License, Version 2, as published by Sam Hocevar. See
// http://www.wtfpl.net/ for more details.
//

//
// The Array2D class
// -----------------
// A very simple 2D array class allowing var[i][j] indexing, with some nice
// additional features, eg. Array2D<int,float> for automatic arrays of tuples.
//

//
// FIXME: This file is in lol/math/ instead of lol/base/ because it
// uses ivec2.
//

#if !defined __LOL_MATH_ARRAY2D_H__
#define __LOL_MATH_ARRAY2D_H__

#include <lol/base/array.h>
#include <lol/base/assert.h>

namespace lol
{

template<typename T1, typename T2 = void, typename T3 = void,
typename T4 = void, typename T5 = void, typename T6 = void,
typename T7 = void, typename T8 = void>
class Array2D : protected Array<T1, T2, T3, T4, T5, T6, T7, T8>
{
public:
typedef typename Array<T1, T2, T3, T4, T5, T6, T7, T8>::Element Element;

inline Array2D()
: m_size(0, 0)
{
}

inline Array2D(int w, int h)
{
SetSize(ivec2(w, h));
}

inline Array2D(ivec2 size)
{
SetSize(size);
}

/* Access elements directly using an ivec2 index */
inline Element const &operator [](ivec2 pos) const
{
ASSERT(pos.x >= 0);
ASSERT(pos.y >= 0);
ASSERT(pos.x < m_size.x);
ASSERT(pos.y < m_size.y);

int n = pos.y * m_size.y + pos.x;
ASSERT(n >= 0);
ASSERT(n < this->m_count);

return this->m_data[n];
}

inline Element &operator [](ivec2 pos)
{
ASSERT(pos.x >= 0);
ASSERT(pos.y >= 0);
ASSERT(pos.x < m_size.x);
ASSERT(pos.y < m_size.y);

int n = pos.y * m_size.y + pos.x;
ASSERT(n >= 0);
ASSERT(n < this->m_count);

return this->m_data[n];
}

class Column
{
public:
inline Column(Array2D &array, int i)
: m_array(array),
m_column(i)
{
}

inline Element &operator [](int j)
{
ASSERT(j >= 0);
ASSERT(j < m_array.m_size.y);
return m_array[ivec2(m_column, j)];
}

private:
Array2D<T1, T2, T3, T4, T5, T6, T7, T8> &m_array;
int m_column;
};

class ConstColumn
{
public:
inline ConstColumn(Array2D const &array, int i)
: m_array(array),
m_column(i)
{
}

inline Element const &operator [](int j) const
{
ASSERT(j >= 0);
ASSERT(j < m_array.m_size.y);
return m_array[ivec2(m_column, j)];
}

private:
Array2D<T1, T2, T3, T4, T5, T6, T7, T8> const &m_array;
int m_column;
};

/* Access addressable columns, allowing for array[i][j] syntax. */
inline class Column operator [](int i)
{
ASSERT(i >= 0);
ASSERT(i < m_size.x);
return Column(*this, i);
}

inline class ConstColumn operator [](int i) const
{
ASSERT(i >= 0);
ASSERT(i < m_size.x);
return ConstColumn(*this, i);
}

/* Resize the array.
* FIXME: data gets scrambled; should we care? */
inline void SetSize(ivec2 size)
{
this->Resize(size.x * size.y);
m_size = size;
}

inline ivec2 GetSize() const
{
return m_size;
}

private:
ivec2 m_size;
};

} /* namespace lol */

#endif // __LOL_MATH_ARRAY2D_H__


+ 1
- 0
src/lolcore.vcxproj Dosyayı Görüntüle

@@ -301,6 +301,7 @@
<ClInclude Include="lol\image\color.h" />
<ClInclude Include="lol\image\image.h" />
<ClInclude Include="lol\math\all.h" />
<ClInclude Include="lol\math\array2d.h" />
<ClInclude Include="lol\math\constants.h" />
<ClInclude Include="lol\math\functions.h" />
<ClInclude Include="lol\math\geometry.h" />


+ 3
- 0
src/lolcore.vcxproj.filters Dosyayı Görüntüle

@@ -573,6 +573,9 @@
<ClInclude Include="lol\base\types.h">
<Filter>lol\base</Filter>
</ClInclude>
<ClInclude Include="lol\math\array2d.h">
<Filter>lol\base</Filter>
</ClInclude>
<ClInclude Include="lol\math\geometry.h">
<Filter>lol\math</Filter>
</ClInclude>


Yükleniyor…
İptal
Kaydet