mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
IGUIObject: Cache the JSObject*, to prevent some frequent allocation while running GUI scripts. JSInterface_IGUIObject: Fixed garbage collection issues. JSInterface_IGUIObject, ScriptGlue: Changed to the JS_THREADSAFE form of JS_GetClass. Util: Avoid startup warnings on Linux caused by using unimplemented cpu_* functions that aren't needed for anything important yet. sysdep/unix: Changed to native line endings. This was SVN commit r5154.
277 lines
7.1 KiB
C++
277 lines
7.1 KiB
C++
#include "precompiled.h"
|
|
|
|
/*
|
|
* wxJavaScript - dostream.cpp
|
|
*
|
|
* Copyright (c) 2002-2007 Franky Braem and the wxJavaScript project
|
|
*
|
|
* Project Info: http://www.wxjavascript.net or http://wxjs.sourceforge.net
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library 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 Lesser General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
* USA.
|
|
*
|
|
* $Id: dostream.cpp 598 2007-03-07 20:13:28Z fbraem $
|
|
*/
|
|
#include <wx/wxprec.h>
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
#include "../common/main.h"
|
|
#include "constant.h"
|
|
#include "stream.h"
|
|
#include "ostream.h"
|
|
#include "dostream.h"
|
|
|
|
using namespace wxjs;
|
|
using namespace wxjs::io;
|
|
|
|
/***
|
|
* <file>dostream</file>
|
|
* <module>io</module>
|
|
* <class name="wxDataOutputStream" version="0.8.3">
|
|
* This class provides functions that write binary data types in a portable way.
|
|
* Data can be written in either big-endian or little-endian format, little-endian
|
|
* being the default on all architectures.
|
|
* If you want to write data to text files (or streams) use @wxTextOutputStream instead.
|
|
* <br /><br />
|
|
* <b>Remark :</b>This class is not thoroughly tested. If you find problems let
|
|
* it know on the <a href="http://sourceforge.net/forum/forum.php?forum_id=168145">project forum</a>.
|
|
* </class>
|
|
*/
|
|
WXJS_INIT_CLASS(DataOutputStream, "wxDataOutputStream", 1)
|
|
|
|
/***
|
|
* <ctor>
|
|
* <function>
|
|
* <arg name="Output" type="@wxOutputStream">An output stream</arg>
|
|
* </function>
|
|
* <desc>
|
|
* Constructs a new wxDataOutputStream object.
|
|
* </desc>
|
|
* </ctor>
|
|
*/
|
|
wxDataOutputStream* DataOutputStream::Construct(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, bool constructing)
|
|
{
|
|
Stream *out = OutputStream::GetPrivate(cx, argv[0]);
|
|
if ( out == NULL )
|
|
return NULL;
|
|
|
|
// This is needed, because otherwise the stream can be garbage collected.
|
|
// Another method could be to root the stream, but how are we going to unroot it?
|
|
JS_DefineProperty(cx, obj, "__stream__", argv[0], NULL, NULL, JSPROP_READONLY);
|
|
|
|
return new wxDataOutputStream(*dynamic_cast<wxOutputStream *>(out->GetStream()));
|
|
}
|
|
|
|
WXJS_BEGIN_METHOD_MAP(DataOutputStream)
|
|
WXJS_METHOD("bigEndianOrdered", bigEndianOrdered, 1)
|
|
WXJS_METHOD("write64", write64, 1)
|
|
WXJS_METHOD("write32", write32, 1)
|
|
WXJS_METHOD("write16", write16, 1)
|
|
WXJS_METHOD("write8", write8, 1)
|
|
WXJS_METHOD("writeString", writeString, 1)
|
|
WXJS_METHOD("writeDouble", writeDouble, 1)
|
|
WXJS_END_METHOD_MAP()
|
|
|
|
/***
|
|
* <method name="bigEndianOrdered">
|
|
* <function>
|
|
* <arg name="Ordered" type="Boolean" />
|
|
* </function>
|
|
* <desc>
|
|
* If <i>Ordered</i> is true, all data will be read in big-endian order,
|
|
* such as written by programs on a big endian architecture (e.g. Sparc)
|
|
* or written by Java-Streams (which always use big-endian order).
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::bigEndianOrdered(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
bool ordered;
|
|
if ( FromJS(cx, argv[0], ordered) )
|
|
{
|
|
p->BigEndianOrdered(ordered);
|
|
return JS_TRUE;
|
|
}
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="write64">
|
|
* <function>
|
|
* <arg name="Value" type="Long" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes a 64 bit integer to the stream.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::write64(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
// Check for other platforms !!!
|
|
#ifdef __WXMSW__
|
|
long value;
|
|
if ( FromJS(cx, argv[0], value) )
|
|
{
|
|
p->Write64((wxUint64) value);
|
|
return JS_TRUE;
|
|
}
|
|
#endif
|
|
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="write32">
|
|
* <function>
|
|
* <arg name="Value" type="Integer" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes a 32 bit integer to the stream.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::write32(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
// Check for other platforms !!!
|
|
#ifdef __WXMSW__
|
|
int value;
|
|
if ( FromJS(cx, argv[0], value) )
|
|
{
|
|
p->Write32(value);
|
|
return JS_TRUE;
|
|
}
|
|
#endif
|
|
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="write16">
|
|
* <function>
|
|
* <arg name="Value" type="Integer" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes a 16 bit integer to the stream.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::write16(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
// TODO: Check for other platforms !!!
|
|
#ifdef __WXMSW__
|
|
int value;
|
|
if ( FromJS(cx, argv[0], value) )
|
|
{
|
|
p->Write16(value);
|
|
return JS_TRUE;
|
|
}
|
|
#endif
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="write8">
|
|
* <function>
|
|
* <arg name="Value" type="Integer" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes a 8 bit integer to the stream.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::write8(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
// TODO: Check for other platforms !!!
|
|
#ifdef __WXMSW__
|
|
int value;
|
|
if ( FromJS(cx, argv[0], value) )
|
|
{
|
|
p->Write8(value);
|
|
return JS_TRUE;
|
|
}
|
|
#endif
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="writeDouble">
|
|
* <function>
|
|
* <arg name="Value" type="Double" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes a double (IEEE encoded) to a stream.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::writeDouble(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
double value;
|
|
if ( FromJS(cx, argv[0], value) )
|
|
{
|
|
p->WriteDouble(value);
|
|
return JS_TRUE;
|
|
}
|
|
return JS_FALSE;
|
|
}
|
|
|
|
/***
|
|
* <method name="writeString">
|
|
* <function>
|
|
* <arg name="Value" type="String" />
|
|
* </function>
|
|
* <desc>
|
|
* Writes string as a line. Depending on the end-of-line mode the end of line
|
|
* ('\n') characters in the string are converted to the correct line
|
|
* ending terminator.
|
|
* </desc>
|
|
* </method>
|
|
*/
|
|
JSBool DataOutputStream::writeString(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
wxDataOutputStream *p = GetPrivate(cx, obj);
|
|
if ( p == NULL )
|
|
return JS_FALSE;
|
|
|
|
wxString value;
|
|
FromJS(cx, argv[0], value);
|
|
p->WriteString(value);
|
|
return JS_TRUE;
|
|
}
|