2007-02-24 09:42:39 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file cmd_helper.h Helper functions to extract data from command parameters. */
|
|
|
|
|
2007-02-24 09:42:39 +00:00
|
|
|
#ifndef CMD_HELPER_H
|
|
|
|
#define CMD_HELPER_H
|
|
|
|
|
2007-12-18 19:52:14 +00:00
|
|
|
#include "direction_type.h"
|
2007-12-18 20:38:16 +00:00
|
|
|
#include "road_type.h"
|
2007-02-24 09:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
template<uint N> static inline void ExtractValid();
|
2007-12-23 21:02:40 +00:00
|
|
|
template<> inline void ExtractValid<1>() {}
|
2007-02-24 09:42:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
template<typename T> struct ExtractBits;
|
|
|
|
template<> struct ExtractBits<Axis> { static const uint Count = 1; };
|
|
|
|
template<> struct ExtractBits<DiagDirection> { static const uint Count = 2; };
|
|
|
|
template<> struct ExtractBits<RoadBits> { static const uint Count = 4; };
|
|
|
|
|
|
|
|
|
|
|
|
template<typename T, uint N, typename U> static inline T Extract(U v)
|
|
|
|
{
|
|
|
|
// Check if there are enough bits in v
|
|
|
|
ExtractValid<N + ExtractBits<T>::Count <= sizeof(U) * 8>();
|
|
|
|
return (T)GB(v, N, ExtractBits<T>::Count);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|