首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 游戏天堂 > 游戏开发 > Multboolean for c++/python
【标  题】:Multboolean for c++/python
【关键字】:Multboolean,for,c++/python
【来  源】:http://blog.csdn.net/xizhao001/archive/2006/11/18/1394477.aspx

Multboolean for c++/python


以下为源代码文件的内容:

MultiBoolean.h

////////////////////////////////////////////////////////////////////////////////
//MultiBoolean C++ 实现
//基于C#源码库MarchLibrary中的MultiBoolean
//作者:刘鑫
//本代码库旨在演示Boost::Python的运算符重载技术,并提供一个实用的C++/Python
//类。
////////////////////////////////////////////////////////////////////////////////

#ifndef __MULTIBOOLEAN__
#define __MULTIBOOLEAN__

#include <string>
#include <complex>
#include <algorithm>
#include <stdexcept>

using namespace std;

namespace MarchLibrary{

class MultiBoolean
{
//友元定义
friend MultiBoolean operator ! (const MultiBoolean & x);
friend MultiBoolean operator == (const MultiBoolean & x, const MultiBoolean & y);
friend MultiBoolean operator == (const MultiBoolean & x, const bool & y);
friend MultiBoolean operator == (const bool & x, const MultiBoolean & y);
friend MultiBoolean operator != (const MultiBoolean & x, const MultiBoolean & y);
friend MultiBoolean operator != (const MultiBoolean & x, const bool & y);
friend MultiBoolean operator != (const bool & x, const MultiBoolean & y);
friend MultiBoolean operator && (const MultiBoolean & x, const MultiBoolean & y);
friend MultiBoolean operator && (const MultiBoolean & x, const bool & y);
friend MultiBoolean operator && (const bool & x, const MultiBoolean & y);
friend MultiBoolean operator || (const MultiBoolean & x, const MultiBoolean & y);
friend MultiBoolean operator || (const MultiBoolean & x, const bool & y);
friend MultiBoolean operator || (const bool & x, const MultiBoolean & y);

private:
//逻辑状态
complex<int> _value;
//禁用默认构造
MultiBoolean(){};
//禁止直接调用传值构造
MultiBoolean(complex<int> value)
{
_value = value;
}

//可选的5个状态值
static const complex<int> TrueValue;
static const complex<int> FalseValue;
static const complex<int> UnknownValue;
static const complex<int> UndefineValue;
static const complex<int> NilValue;

public:

//重载逻辑运算符 &= 、 |= 和 ^=
MultiBoolean& operator &= (const MultiBoolean& x)
{
if(this->_value == MultiBoolean::NilValue)
return (*this);

else if(x._value == MultiBoolean::NilValue)
this->_value = NilValue;

else if(this->_value == MultiBoolean::UndefineValue)
this->_value = x._value;

else if(this->_value.real() > x._value.real())
this->_value = x._value;

return (*this);
}

MultiBoolean& operator &= (const bool& x)
{
if(this->_value == MultiBoolean::NilValue)
return (*this);

else if(this->_value == MultiBoolean::UndefineValue)
this->_value = x ? TrueValue : FalseValue;

else if(!x)
this->_value = FalseValue;

return (*this);
}

MultiBoolean& operator |= (const MultiBoolean& x)
{
if(this->_value == MultiBoolean::NilValue)
return (*this);

else if(x._value == MultiBoolean::NilValue)
this->_value = NilValue;

else if(this->_value == MultiBoolean::UndefineValue)
this->_value = x._value;

else if(this->_value.real() < x._value.real())
this->_value = x._value;

return (*this);
}

MultiBoolean& operator |= (const bool& x)
{
if(this->_value == MultiBoolean::NilValue)
return (*this);

else if(this->_value == MultiBoolean::UndefineValue)
this->_value = x ? TrueValue : FalseValue;

else if(x)
this->_value = TrueValue;

return (*this);
}

MultiBoolean & operator ^= (const MultiBoolean & x)
{
this->_value = ((!x&&this)||(x&&!this))._value;
return (*this);
}

MultiBoolean & operator ^= (const bool & x)
{
this->_value = MultiBoolean((!x&&this)||(x&&!this))._value;
return (*this);
}

//由二元逻辑构造多值逻辑
MultiBoolean(bool value)
{
_value = value ? complex<int>(1, 0) : complex<int>(-1, 0);
};

//状态判定函数
bool IsTrue()
{
return _value == TrueValue;
};

bool IsFalse()
{
return _value == FalseValue;
};

bool IsUnknown()
{
return _value == UnknownValue;
};

bool IsUndefine()
{
return _value == UndefineValue;
};

bool IsNil()
{
return _value == NilValue;
};

//字符串与多值逻辑的相互转换
const char* ToString()
{
if(_value == TrueValue)
return "True";
if(_value == FalseValue)
return "False";
if(_value == UndefineValue)
return "Undefine";
if(_value == NilValue)
return "Nil";

return "Unknown";
};

string FullName()
{
string buf = string("MultiBoolean::");
buf += this->ToString();
return buf;
}

static MultiBoolean Parse(const char * input)
{
if("True" == input)
return True;

if("False" == input)
return False;

if("Unknown" == input)
return Unknown;

if("Undefine" == input)
return Undefine;

if("Nil" == input)
return Nil;

throw logic_error(string("The string isn't a available Value.") + string(input));
};

//可选的逻辑值,提供构造接口
static const MultiBoolean True;
static const MultiBoolean False;
static const MultiBoolean Unknown;
static const MultiBoolean Undefine;
static const MultiBoolean Nil;
};

//初始化状态值
const complex<int> MultiBoolean::TrueValue = complex<int>(1, 0);
const complex<int> MultiBoolean::FalseValue = complex<int>(-1, 0);
const complex<int> MultiBoolean::UnknownValue = complex<int>(0, 0);
const complex<int> MultiBoolean::UndefineValue = complex<int>(0, 1);
const complex<int> MultiBoolean::NilValue = complex<int>(0, -1);

//初始化逻辑值
const MultiBoolean MultiBoolean::True = MultiBoolean(TrueValue);
const MultiBoolean MultiBoolean::False = MultiBoolean(FalseValue);
const MultiBoolean MultiBoolean::Unknown = MultiBoolean(UnknownValue);
const MultiBoolean MultiBoolean::Undefine = MultiBoolean(UndefineValue);
const MultiBoolean MultiBoolean::Nil = MultiBoolean(NilValue);

//为C++版提供便捷的逻辑状态定义
const MultiBoolean True = MultiBoolean::True;
const MultiBoolean False = MultiBoolean::False;
const MultiBoolean Unknown = MultiBoolean::Unknown;
const MultiBoolean Undefine = MultiBoolean::Undefine;
const MultiBoolean Nil = MultiBoolean::Nil;


//非运算
MultiBoolean operator !(const MultiBoolean & x)
{
return MultiBoolean(-(x._value));
};


//相等比较

MultiBoolean operator == (const MultiBoolean & x, const MultiBoolean & y)
{
if(x._value.real() == 0 && y._value.real() == 0)
return MultiBoolean(complex<int>(0, min(x._value.imag(), y._value.imag())));

if(x._value.real() == 0 && y._value.real() != 0)
return MultiBoolean(x._value);

if(x._value.real() != 0 && y._value.real() == 0)
return MultiBoolean(y._value);

return MultiBoolean(x._value.real() == y._value.real() ? True : False);
};

MultiBoolean operator==(const MultiBoolean & x, const bool & y)
{
if(x._value.real() == 0)
return x;

return MultiBoolean((x._value.real() == 1) == y);
};

MultiBoolean operator==(const bool & x, const MultiBoolean & y)
{
if(y._value.real() == 0)
return y;

return MultiBoolean(x == (y._value.real() == 1));
};

//不等比较

MultiBoolean operator!=(const MultiBoolean & x, const MultiBoolean & y)
{
if(x._value.real() == 0 && y._value.real() == 0)
return MultiBoolean(complex<int>(0, min(x._value.imag(), y._value.imag())));

if(x._value.real() == 0 && y._value.real() != 0)
return MultiBoolean(x._value);

if(x._value.real() != 0 && y._value.real() == 0)
return MultiBoolean(y._value);

return MultiBoolean(x._value.real() == y._value.real() ? False : True);
};

MultiBoolean operator!=(const MultiBoolean & x, const bool & y)
{
if(x._value.real() == 0)
return x;

return MultiBoolean((x._value.real() == -1) == y);
};

MultiBoolean operator!=(const bool & x, const MultiBoolean & y)
{
if(y._value.real() == 0)
return y;

return MultiBoolean(x == (y._value.real() == -1));
};

//与运算

MultiBoolean operator && (const MultiBoolean & x, const MultiBoolean & y)
{
if((x._value == MultiBoolean::NilValue) || (y._value == MultiBoolean::NilValue))
return Nil;

if(x._value == MultiBoolean::UndefineValue)
return y;
if(y._value == MultiBoolean::UndefineValue)
return x;

return MultiBoolean(x._value.real() < y._value.real() ? x._value : y._value);
};

MultiBoolean operator && (const MultiBoolean & x, const bool & y)
{
return x && MultiBoolean(y);
}

MultiBoolean operator && (const bool & x, const MultiBoolean & y)
{
return MultiBoolean(x) && y;
};

//或运算

MultiBoolean operator || (const MultiBoolean & x, const MultiBoolean & y)
{
if(x._value == MultiBoolean::NilValue || y._value == MultiBoolean::NilValue)
return Nil;

if(x._value == MultiBoolean::UndefineValue)
return MultiBoolean(y._value);
if(y._value == MultiBoolean::UndefineValue)
return MultiBoolean(x._value);

return MultiBoolean(x._value.real() > y._value.real() ? x._value : y._value);
};

MultiBoolean operator || (const bool & x, const MultiBoolean & y)
{
return MultiBoolean(x) || y;
};

MultiBoolean operator || (const MultiBoolean & x, const bool & y)
{
return x || MultiBoolean(y);
};

//异或运算

MultiBoolean operator ^ (const MultiBoolean & x, const MultiBoolean & y)
{
return (!x&&y)||(x&&!y);
};

MultiBoolean operator ^ (const bool & x, const MultiBoolean & y)
{
return (!x&&y)||(x&&!y);
};

MultiBoolean operator ^ (const MultiBoolean & x, const bool & y)
{
return (!x&&y)||(x&&!y);
};

}

#endif

pyMultiBoolean.h


////////////////////////////////////////////////////////////
//与/或运算的Python接口封装
//作者:刘鑫
//Python中的与/或运算由&和|表达,为了不与C++中的按位与/或
//定义冲突,将这两个运算符定义放到单独的头文件中,仅供Python
//封装定义。
////////////////////////////////////////////////////////////

#ifndef __PYMULTIBOOLEAN__
#define __PYMULTIBOOLEAN__

#include "MultiBoolean.h"

namespace MarchLibrary{

//与运算

MultiBoolean operator & (MultiBoolean x, MultiBoolean y)
{
return x && y;
};

MultiBoolean operator & (MultiBoolean x, bool y)
{
return x && y;
}

MultiBoolean operator & (bool x, MultiBoolean y)
{
return x && y;
};

//或运算

MultiBoolean operator | (MultiBoolean x, MultiBoolean y)
{
return x || y;
};

MultiBoolean operator | (bool x, MultiBoolean y)
{
return x || y;
};

MultiBoolean operator | (MultiBoolean x, bool y)
{
return x || y;
};

}

#endif

wrapper.cpp

///////////////////////////////////////////////////////////
//MultiBoolean类的Python封装,使用boost::python技术
//作者:刘鑫
///////////////////////////////////////////////////////////

//引用boost库
#include <boost/python.hpp>
//引用多值逻辑定义
#include "MultiBoolean.h"
//引用与或运算的Python封装接口
#include "pyMultiBoolean.h"

//引用相关的命名空间

using namespace boost::python;

using namespace MarchLibrary;

//模块定义
BOOST_PYTHON_MODULE(MarchLibrary)
{
//类封装,这里用no_init表示没有可用的构造函数
class_<MultiBoolean>("MultiBoolean", no_init)
//可选的逻辑值接口
.def_readonly("True", &MultiBoolean::True)
.def_readonly("False", &MultiBoolean::False)
.def_readonly("Unknown", &MultiBoolean::Unknown)
.def_readonly("Undefine", &MultiBoolean::Undefine)
.def_readonly("Nil", &MultiBoolean::Nil)

//兼容C++版定义的字符串处理接口
.def("ToString", &MultiBoolean::ToString)
.def("FullName", &MultiBoolean::FullName)
.def("Parse", &MultiBoolean::Parse)

//逻辑值判定
.def("IsTrue", &MultiBoolean::IsTrue)
.def("IsFalse", &MultiBoolean::IsFalse)
.def("IsUnknown", &MultiBoolean::IsUnknown)
.def("IsUndefine", &MultiBoolean::IsUndefine)
.def("IsNil", &MultiBoolean::IsNil)

//运算符重载接口
.def(!self)
.def(self &= self)
.def(self &= bool())
.def(self |= self)
.def(self |= bool())
.def(self ^= self)
.def(self ^= bool())
.def(self == self)
.def(self == bool())
.def(bool() == self)
.def(self != self)
.def(self != bool())
.def(bool() != self)
.def(self & self)
.def(self & bool())
.def(bool() & self)
.def(self | self)
.def(self | bool())
.def(bool() | self)
.def(self ^ self)
.def(self ^ bool())
.def(bool() ^ self)

//提供给Python解释器的标准字符串输出接口
.def("__str__", &MultiBoolean::ToString)
.def("__repr__", &MultiBoolean::FullName)
;
}


在已编译和配置好Boost1.33.0的前提下,将以上三个源代码文件编译为一个名为 "MarchLibrary"的动态链接库(扩展名视具体的操作系统而定),放到Python的DLLs目录下,就可以使用,该模块的名称为 “MarchLibrary”,多值逻辑类名为“MultiBoolean”。


 
Ogre的2D显示:【上一篇】
DirectX 开发环境的支持与配置:【下一篇】
【相关文章】
  • Visual Studio 2005 extensions for Windows SharePoint Services 3.0 试用
  • IronPython for ASP.NET CTP
  • 调试程序跟踪fork出来的进程
  • Appeon for PowerBuilder常见问题
  • PB应用走向WEB的技术方案选择——Appeon for PowerBuilder WEB 发布和J2EE WEB应用重写方案的比较
  • Appeon for PowerBuilder 5.0 for .NET版本介绍
  • Appeon for PowerBuilder 5.0 的新特性
  • ResultSet can not re-read row data for column 1.
  • 有关SimpleDateFormat的常用方法说明
  • 跟我学之用FormLayout打造自适应窗体大小的控件布局
  • 【随机文章】
  • Linux一句话精彩
  • 启动 Microsoft Windows Media Player 时,收到“An internal application error has occurred”错误信息的...
  • 近水楼台先得月
  • 用PS+IR制作翻页动画
  • 跨专业考研的可以看一下
  • gcc的-D和-U参数:宏的设置与取消
  • XWindow配置手册
  • 脚本控制Frame
  • badcopy99 v2.00暴力注册版
  • c#实现自动发邮件
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.