⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputport.cpp

📁 VIGASOCO (VIdeo GAmes SOurce COde) Windows port (v0.01)
💻 CPP
字号:
// InputPort.cpp
//
/////////////////////////////////////////////////////////////////////////////

#include <cassert>
#include "InputPort.h"

/////////////////////////////////////////////////////////////////////////////
// initialization and cleanup
/////////////////////////////////////////////////////////////////////////////

InputPort::InputPort(int numBits) : _bits(numBits)
{
	_value = 0;
}

InputPort::~InputPort()
{
}

/////////////////////////////////////////////////////////////////////////////
// getters & setters
/////////////////////////////////////////////////////////////////////////////

void InputPort::addBit(int bit, Inputs input, InputMode mode)
{
	assert((bit >= 0) && (bit < (int)_bits.size()));

	_bits[bit].input = input;
	_bits[bit].mode = mode;
}

/////////////////////////////////////////////////////////////////////////////
// methods
/////////////////////////////////////////////////////////////////////////////

void InputPort::reset()
{
	_value = 0;

	for (InputBits::size_type i = 0; i < _bits.size(); i++){
		_value |= (_bits[i].mode == ACTIVE_LOW) ? 1 << i : 0;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -