105 lines
3.6 KiB
C++
105 lines
3.6 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
||
*
|
||
* ScummVM is the legal property of its developers, whose names
|
||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||
* file distributed with this source distribution.
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
*
|
||
*/
|
||
|
||
/*************************************
|
||
*
|
||
* USED IN:
|
||
* Standard Macromedia Director XObject
|
||
*
|
||
*************************************/
|
||
|
||
/*
|
||
* Use the SerialPort XObject to send and receive data over the Macintosh’s
|
||
* two standard serial ports (commonly called the modem and printer ports).
|
||
* This XObject is built into Macromedia Director, so you don’t have to open
|
||
* an XLibrary to use it.
|
||
*
|
||
* Reference: Director 4 Using Lingo, pages 315-320
|
||
*/
|
||
|
||
#include "director/director.h"
|
||
#include "director/lingo/lingo.h"
|
||
#include "director/lingo/lingo-object.h"
|
||
#include "director/lingo/lingo-utils.h"
|
||
#include "director/lingo/xlibs/s/serialportxobj.h"
|
||
|
||
namespace Director {
|
||
|
||
const char *const SerialPortXObj::xlibName = "SerialPort";
|
||
const XlibFileDesc SerialPortXObj::fileNames[] = {
|
||
{ "SerialPort", nullptr },
|
||
{ nullptr, nullptr },
|
||
};
|
||
|
||
static const MethodProto xlibMethods[] = {
|
||
{ "new", SerialPortXObj::m_new, 1, 1, 200 }, // D2
|
||
{ "GetPortNum", SerialPortXObj::m_getPortNum, 0, 0, 200 }, // D2
|
||
{ "WriteString", SerialPortXObj::m_writeString, 1, 1, 200 }, // D2
|
||
{ "WriteChar", SerialPortXObj::m_writeChar, 1, 1, 200 }, // D2
|
||
{ "ReadString", SerialPortXObj::m_readString, 0, 0, 200 }, // D2
|
||
{ "ReadChar", SerialPortXObj::m_readChar, 0, 0, 200 }, // D2
|
||
{ "ReadCount", SerialPortXObj::m_readCount, 0, 0, 200 }, // D2
|
||
{ "ReadFlush", SerialPortXObj::m_readFlush, 0, 0, 200 }, // D2
|
||
{ "ConfigChan", SerialPortXObj::m_configChan, 2, 2, 200 }, // D2
|
||
{ "HShakeChan", SerialPortXObj::m_hShakeChan, 3, 3, 200 }, // D2
|
||
{ "SetUp", SerialPortXObj::m_setUp, 3, 3, 200 }, // D2
|
||
{ nullptr, nullptr, 0, 0, 0 }
|
||
};
|
||
|
||
void SerialPortXObj::open(ObjectType type, const Common::Path &path) {
|
||
if (type == kXObj) {
|
||
SerialPortXObject::initMethods(xlibMethods);
|
||
SerialPortXObject *xobj = new SerialPortXObject(kXObj);
|
||
g_lingo->exposeXObject(xlibName, xobj);
|
||
}
|
||
}
|
||
|
||
void SerialPortXObj::close(ObjectType type) {
|
||
if (type == kXObj) {
|
||
SerialPortXObject::cleanupMethods();
|
||
g_lingo->_globalvars[xlibName] = Datum();
|
||
}
|
||
}
|
||
|
||
|
||
SerialPortXObject::SerialPortXObject(ObjectType ObjectType) :Object<SerialPortXObject>("SerialPort") {
|
||
_objType = ObjectType;
|
||
}
|
||
|
||
void SerialPortXObj::m_new(int nargs) {
|
||
g_lingo->printSTUBWithArglist("SerialPortXObj::m_new", nargs);
|
||
g_lingo->dropStack(nargs);
|
||
g_lingo->push(g_lingo->_state->me);
|
||
}
|
||
|
||
XOBJSTUBV(SerialPortXObj::m_getPortNum)
|
||
XOBJSTUBV(SerialPortXObj::m_writeString)
|
||
XOBJSTUBV(SerialPortXObj::m_writeChar)
|
||
XOBJSTUBV(SerialPortXObj::m_readString)
|
||
XOBJSTUBV(SerialPortXObj::m_readChar)
|
||
XOBJSTUBV(SerialPortXObj::m_readCount)
|
||
XOBJSTUBV(SerialPortXObj::m_readFlush)
|
||
XOBJSTUBV(SerialPortXObj::m_configChan)
|
||
XOBJSTUBV(SerialPortXObj::m_hShakeChan)
|
||
XOBJSTUBV(SerialPortXObj::m_setUp)
|
||
|
||
} // End of namespace Director
|