[Scummvm-cvs-logs] SF.net SVN: scummvm:[33374] residual/trunk/engine/lua

aquadran at users.sourceforge.net aquadran at users.sourceforge.net
Mon Jul 28 15:35:34 CEST 2008


Revision: 33374
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33374&view=rev
Author:   aquadran
Date:     2008-07-28 13:35:33 +0000 (Mon, 28 Jul 2008)

Log Message:
-----------
formating code

Modified Paths:
--------------
    residual/trunk/engine/lua/README.residual
    residual/trunk/engine/lua/lundump.cpp
    residual/trunk/engine/lua/lundump.h

Modified: residual/trunk/engine/lua/README.residual
===================================================================
--- residual/trunk/engine/lua/README.residual	2008-07-28 12:46:30 UTC (rev 33373)
+++ residual/trunk/engine/lua/README.residual	2008-07-28 13:35:33 UTC (rev 33374)
@@ -8,3 +8,4 @@
 * Added save/restore Lua state.
 * Unified types like int -> int32 and similiars
 * Removed few unused library funcs by games
+* formatting code

Modified: residual/trunk/engine/lua/lundump.cpp
===================================================================
--- residual/trunk/engine/lua/lundump.cpp	2008-07-28 12:46:30 UTC (rev 33373)
+++ residual/trunk/engine/lua/lundump.cpp	2008-07-28 13:35:33 UTC (rev 33374)
@@ -4,236 +4,216 @@
 ** See Copyright Notice in lua.h
 */
 
-#include "lauxlib.h"
-#include "lfunc.h"
-#include "lmem.h"
-#include "lstring.h"
-#include "lundump.h"
+#include "engine/lua/lauxlib.h"
+#include "engine/lua/lfunc.h"
+#include "engine/lua/lmem.h"
+#include "engine/lua/lstring.h"
+#include "engine/lua/lundump.h"
 
-#define	LoadBlock(b,size,Z)	ezread(Z,b,size)
-#define	LoadNative(t,Z)		LoadBlock(&t,sizeof(t),Z)
+#define	LoadBlock(b,size, Z)	ezread(Z, b, size)
+#define	LoadNative(t, Z)		LoadBlock(&t, sizeof(t), Z)
+#define doLoadNumber(f, Z)		f = LoadNumber(Z)
 
-#define doLoadNumber(f,Z)	f=LoadNumber(Z)
-
-
 static float conv_float(const char *data) {
-        const byte *udata = (const byte *)(data);
-        byte fdata[4];
-        fdata[0] = udata[3];
-        fdata[1] = udata[2];
-        fdata[2] = udata[1];
-        fdata[3] = udata[0];
-        return *(const float *)(fdata);
+	const byte *udata = (const byte *)(data);
+	byte fdata[4];
+	fdata[0] = udata[3];
+	fdata[1] = udata[2];
+	fdata[2] = udata[1];
+	fdata[3] = udata[0];
+	return *(const float *)(fdata);
 }
 
-static void unexpectedEOZ(ZIO* Z)
-{
- luaL_verror("unexpected end of file in %s",zname(Z));
+static void unexpectedEOZ(ZIO *Z) {
+	luaL_verror("unexpected end of file in %s", zname(Z));
 }
 
-static int32 ezgetc(ZIO* Z)
-{
- int32 c=zgetc(Z);
- if (c==EOZ) unexpectedEOZ(Z);
- return c;
+static int32 ezgetc(ZIO *Z) {
+	int32 c = zgetc(Z);
+	if (c == EOZ)
+		unexpectedEOZ(Z);
+	return c;
 }
 
-static void ezread(ZIO* Z, void* b, int32 n)
-{
- int32 r=zread(Z,b,n);
- if (r!=0) unexpectedEOZ(Z);
+static void ezread(ZIO *Z, void *b, int32 n) {
+	int32 r = zread(Z, b, n);
+	if (r)
+		unexpectedEOZ(Z);
 }
 
-static uint16 LoadWord(ZIO* Z)
-{
- uint16 hi=ezgetc(Z);
- uint16 lo=ezgetc(Z);
- return (hi<<8)|lo;
+static uint16 LoadWord(ZIO *Z) {
+	uint16 hi = ezgetc(Z);
+	uint16 lo = ezgetc(Z);
+	return (hi << 8) | lo;
 }
 
-static uint32 LoadLong(ZIO* Z)
-{
- uint32 hi=LoadWord(Z);
- uint32 lo=LoadWord(Z);
- return (hi<<16)|lo;
+static uint32 LoadLong(ZIO *Z) {
+	uint32 hi = LoadWord(Z);
+	uint32 lo = LoadWord(Z);
+	return (hi << 16) | lo;
 }
 
-static float LoadFloat(ZIO* Z)
-{
- uint32 l=LoadLong(Z);
- return conv_float((const char *)&l);
+static float LoadFloat(ZIO *Z) {
+	uint32 l = LoadLong(Z);
+	return conv_float((const char *)&l);
 }
 
-static Byte* LoadCode(ZIO* Z)
-{
- int32 size=LoadLong(Z);
- int32 s=size;
- void* b;
- if (s!=size) luaL_verror("code too long (%ld bytes) in %s",size,zname(Z));
- b=luaM_malloc(size);
- LoadBlock(b,size,Z);
- return (Byte *)b;
+static byte *LoadCode(ZIO *Z) {
+	int32 size = LoadLong(Z);
+	int32 s = size;
+	void* b;
+	if (s != size)
+		luaL_verror("code too long (%ld bytes) in %s", size, zname(Z));
+	b = luaM_malloc(size);
+	LoadBlock(b, size, Z);
+	return (Byte *)b;
 }
 
-static TaggedString* LoadTString(ZIO* Z)
-{
- int32 size=LoadWord(Z);
- int32 i;
- if (size==0)
-  return NULL;
- else
- {
-  char* s=luaL_openspace(size);
-  LoadBlock(s,size,Z);
-  for (i=0; i<size; i++)
-   s[i]^=0xff;
-  return luaS_newlstr(s,size-1);
- }
+static TaggedString *LoadTString(ZIO *Z) {
+	int32 size = LoadWord(Z);
+	int32 i;
+
+	if (size == 0)
+		return NULL;
+	else {
+		char *s = luaL_openspace(size);
+		LoadBlock(s, size, Z);
+		for (i = 0; i < size; i++)
+			s[i] ^= 0xff;
+		return luaS_newlstr(s, size - 1);
+	}
 }
 
-static void LoadLocals(TProtoFunc* tf, ZIO* Z)
-{
- int32 i,n=LoadWord(Z);
- if (n==0) return;
- tf->locvars=luaM_newvector(n+1,LocVar);
- for (i=0; i<n; i++)
- {
-  tf->locvars[i].line=LoadWord(Z);
-  tf->locvars[i].varname=LoadTString(Z);
- }
- tf->locvars[i].line=-1;		/* flag end of vector */
- tf->locvars[i].varname=NULL;
+static void LoadLocals(TProtoFunc *tf, ZIO *Z) {
+	int32 i, n = LoadWord(Z);
+	if (n == 0)
+		return;
+	tf->locvars = luaM_newvector(n + 1, LocVar);
+	for (i = 0; i < n; i++) {
+		tf->locvars[i].line = LoadWord(Z);
+		tf->locvars[i].varname = LoadTString(Z);
+	}
+	tf->locvars[i].line = -1;		// flag end of vector
+	tf->locvars[i].varname = NULL;
 }
 
-static TProtoFunc* LoadFunction(ZIO* Z);
+static TProtoFunc *LoadFunction(ZIO *Z);
 
-static void LoadConstants(TProtoFunc* tf, ZIO* Z)
-{
- int32 i,n=LoadWord(Z);
- tf->nconsts=n;
- if (n==0) return;
- tf->consts=luaM_newvector(n,TObject);
- for (i=0; i<n; i++)
- {
-  TObject* o=tf->consts+i;
-  ttype(o)=(lua_Type)-ezgetc(Z);
-  switch ((uint32)ttype(o))
-  {
-   case (uint32)-'N':
-        ttype(o)=LUA_T_NUMBER;
-   case (uint32)LUA_T_NUMBER:
-	doLoadNumber(nvalue(o),Z);
-	break;
-   case (uint32)-'S':
-	ttype(o)=LUA_T_STRING;
-   case (uint32)LUA_T_STRING:
-	tsvalue(o)=LoadTString(Z);
-	break;
-   case (uint32)-'F':
-	ttype(o)=LUA_T_PROTO;
-   case (uint32)LUA_T_PROTO:
-	break;
-   case (uint32)LUA_T_NIL:
-	break;
-   default:
-	luaL_verror("bad constant #%d in %s: type=%d [%s]",
-		i,zname(Z),ttype(o),luaO_typename(o));
-	break;
-  }
- }
+static void LoadConstants(TProtoFunc *tf, ZIO *Z) {
+	int32 i, n = LoadWord(Z);
+	tf->nconsts = n;
+	if (n == 0)
+		return;
+	tf->consts = luaM_newvector(n, TObject);
+	for (i = 0; i < n; i++) {
+		TObject *o = tf->consts + i;
+		ttype(o) = (lua_Type)-ezgetc(Z);
+		switch ((uint32)ttype(o)) {
+		case (uint32)-'N':
+			ttype(o) = LUA_T_NUMBER;
+		case (uint32)LUA_T_NUMBER:
+			doLoadNumber(nvalue(o), Z);
+			break;
+		case (uint32)-'S':
+			ttype(o) = LUA_T_STRING;
+		case (uint32)LUA_T_STRING:
+			tsvalue(o) = LoadTString(Z);
+			break;
+		case (uint32)-'F':
+			ttype(o) = LUA_T_PROTO;
+		case (uint32)LUA_T_PROTO:
+			break;
+		case (uint32)LUA_T_NIL:
+			break;
+		default:
+			luaL_verror("bad constant #%d in %s: type=%d [%s]", i, zname(Z), ttype(o), luaO_typename(o));
+			break;
+		}
+	}
 }
 
-static void LoadSubfunctions(TProtoFunc* tf, ZIO* Z) {
-  char t;
-  do {
-    t = ezgetc(Z);
-    switch (t) {
-    case '#': {
-      int32 i = LoadWord(Z);
-      if (ttype(tf->consts+i) != LUA_T_PROTO)
-	luaL_verror("trying to load function into nonfunction constant (type=%d)",
-		    ttype(tf->consts+i));
-      tfvalue(tf->consts+i) = LoadFunction(Z);
-      break;
-    }
-    case '$':
-      break;
-    default:
-      luaL_verror("invalid subfunction type %c",t);
-    }
-  } while (t != '$');
+static void LoadSubfunctions(TProtoFunc *tf, ZIO *Z) {
+	char t;
+	do {
+		t = ezgetc(Z);
+		switch (t) {
+		case '#':
+			{
+				int32 i = LoadWord(Z);
+				if (ttype(tf->consts + i) != LUA_T_PROTO)
+					luaL_verror("trying to load function into nonfunction constant (type=%d)", ttype(tf->consts + i));
+				tfvalue(tf->consts + i) = LoadFunction(Z);
+				break;
+			}
+		case '$':
+			break;
+		default:
+			luaL_verror("invalid subfunction type %c", t);
+		}
+	} while (t != '$');
 }
 
-static TProtoFunc* LoadFunction(ZIO* Z)
-{
- TProtoFunc* tf=luaF_newproto();
- tf->lineDefined=LoadWord(Z);
- tf->fileName=LoadTString(Z);
- tf->code=LoadCode(Z);
- LoadConstants(tf,Z);
- LoadLocals(tf,Z);
- LoadSubfunctions(tf,Z);
- return tf;
+static TProtoFunc *LoadFunction(ZIO *Z) {
+	TProtoFunc *tf = luaF_newproto();
+	tf->lineDefined = LoadWord(Z);
+	tf->fileName = LoadTString(Z);
+	tf->code = LoadCode(Z);
+	LoadConstants(tf, Z);
+	LoadLocals(tf, Z);
+	LoadSubfunctions(tf, Z);
+	return tf;
 }
 
-static void LoadSignature(ZIO* Z)
-{
- const char* s=SIGNATURE;
- while (*s!=0 && ezgetc(Z)==*s)
-  ++s;
- if (*s!=0) luaL_verror("bad signature in %s",zname(Z));
+static void LoadSignature(ZIO *Z) {
+	const char *s = SIGNATURE;
+
+	while (*s && ezgetc(Z) == *s)
+		++s;
+	if (*s)
+		luaL_verror("bad signature in %s", zname(Z));
 }
 
-static void LoadHeader(ZIO* Z)
-{
- int32 version,id,sizeofR;
+static void LoadHeader(ZIO *Z) {
+	int32 version, id, sizeofR;
 #if 0
- real f=(real)-TEST_NUMBER,tf=(real)TEST_NUMBER;
+	real f = (real)-TEST_NUMBER, tf = (real)TEST_NUMBER;
 #endif
- LoadSignature(Z);
- version=ezgetc(Z);
- if (version>VERSION)
-  luaL_verror(
-	"%s too new: version=0x%02x; expected at most 0x%02x",
-	zname(Z),version,VERSION);
- if (version<VERSION0)			/* check last major change */
-  luaL_verror(
-	"%s too old: version=0x%02x; expected at least 0x%02x",
-	zname(Z),version,VERSION0);
- sizeofR=ezgetc(Z);			/* test number representation */
- id=ezgetc(Z);
- if (id!=ID_NUMBER || sizeofR!=sizeof(real))
- {
-  luaL_verror("unknown number signature in %s: "
-	"read 0x%02x%02x; expected 0x%02x%02x",
-	zname(Z),id,sizeofR,ID_NUMBER,sizeof(real));
- }
+	LoadSignature(Z);
+	version = ezgetc(Z);
+	if (version > VERSION)
+		luaL_verror("%s too new: version=0x%02x; expected at most 0x%02x", zname(Z), version, VERSION);
+	if (version < VERSION0)			// check last major change
+		luaL_verror("%s too old: version=0x%02x; expected at least 0x%02x", zname(Z), version, VERSION0);
+	sizeofR = ezgetc(Z);			// test number representation
+	id = ezgetc(Z);
+	if (id != ID_NUMBER || sizeofR != sizeof(real)) {
+		luaL_verror("unknown number signature in %s: read 0x%02x%02x; expected 0x%02x%02x", 
+				zname(Z), id, sizeofR, ID_NUMBER, sizeof(real));
+	}
 #if 0
- doLoadNumber(f,Z);
- if (f!=tf)
-  luaL_verror("unknown number representation in %s: "
-	"read " NUMBER_FMT "; expected " NUMBER_FMT,	/* LUA_NUMBER */
-	zname(Z),f,tf);
+	doLoadNumber(f, Z);
+	if (f != tf) // LUA_NUMBER
+		luaL_verror("unknown number representation in %s: read " NUMBER_FMT "; expected " NUMBER_FMT, zname(Z), f, tf);
 #endif
-  ezgetc(Z); ezgetc(Z); ezgetc(Z);
+	ezgetc(Z);
+	ezgetc(Z);
+	ezgetc(Z);
 }
 
-static TProtoFunc* LoadChunk(ZIO* Z)
-{
- LoadHeader(Z);
- return LoadFunction(Z);
+static TProtoFunc *LoadChunk(ZIO *Z) {
+	LoadHeader(Z);
+	return LoadFunction(Z);
 }
 
 /*
 ** load one chunk from a file or buffer
 ** return main if ok and NULL at EOF
 */
-TProtoFunc* luaU_undump1(ZIO* Z)
-{
- int32 c=zgetc(Z);
- if (c==ID_CHUNK)
-  return LoadChunk(Z);
- else if (c!=EOZ)
-  luaL_verror("%s is not a Lua binary file",zname(Z));
- return NULL;
+TProtoFunc *luaU_undump1(ZIO *Z) {
+	int32 c = zgetc(Z);
+	if (c == ID_CHUNK)
+		return LoadChunk(Z);
+	else if (c != EOZ)
+		luaL_verror("%s is not a Lua binary file", zname(Z));
+	return NULL;
 }

Modified: residual/trunk/engine/lua/lundump.h
===================================================================
--- residual/trunk/engine/lua/lundump.h	2008-07-28 12:46:30 UTC (rev 33373)
+++ residual/trunk/engine/lua/lundump.h	2008-07-28 13:35:33 UTC (rev 33374)
@@ -7,24 +7,24 @@
 #ifndef lundump_h
 #define lundump_h
 
-#include "lobject.h"
-#include "lzio.h"
+#include "engine/lua/lobject.h"
+#include "engine/lua/lzio.h"
 
-TProtoFunc* luaU_undump1(ZIO* Z);	/* load one chunk */
+TProtoFunc *luaU_undump1(ZIO *Z);	// load one chunk
 
 #define	SIGNATURE	"Lua"
-#define	VERSION		0x31		/* last format change was in 3.1 */
-#define	VERSION0	0x31		/* last major  change was in 3.1 */
-#define ID_CHUNK	27		/* ESC */
+#define	VERSION		0x31		// last format change was in 3.1
+#define	VERSION0	0x31		// last major  change was in 3.1
+#define ID_CHUNK	27			// ESC
 
-#define IsMain(f)	(f->lineDefined==0)
+#define IsMain(f)			(f->lineDefined == 0)
 #define luaO_typename(o)	luaO_typenames[-ttype(o)]
 
-/* number representation */
-#define ID_INT4		'l'		/* 4-byte integers */
-#define ID_REAL4	'F'		/* 4-byte reals */
-#define ID_REAL8	'd'		/* 8-byte reals */
-#define ID_NATIVE	'?'		/* whatever your machine uses */
+// number representation
+#define ID_INT4		'l'		// 4-byte integers
+#define ID_REAL4	'F'		// 4-byte reals
+#define ID_REAL8	'd'		// 8-byte reals
+#define ID_NATIVE	'?'		// whatever your machine uses
 
 /*
 * use a multiple of PI for testing number representation.
@@ -46,9 +46,10 @@
 
 #define	ID_NUMBER	ID_REAL4
 
+#define	DumpNumber		DumpFloat
+#define LoadNumber		LoadFloat
+#define SIZEOF_NUMBER	4
+
 #endif
 
-#define	DumpNumber	DumpFloat
-#define LoadNumber      LoadFloat
-#define SIZEOF_NUMBER	4
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list