Jump to content
Eternal Lands Official Forums
Beaverhunter

Current CVS errors

Recommended Posts

Hi

I just sync with cvs and i've noticed that some things are missing.

 

includes that missing in io/map_io.h :

#include "../bbox_tree.h"
#include "../asc.h"
#include "../errors.h"
#include "../translate.h"
#include "../init.h"
#include "../map.h"
#include "../tiles.h"
#include "../reflection.h"
#include "../3d_objects.h"
#include "../2d_objects.h"
#include "../lights.h"
#include "../particles.h"

includes that missing in io/elc_io.h

#include "../errors.h"

File missing (probably whole directory):

error: xml/xmlhelper.hpp: No such file or directory

Share this post


Link to post
Share on other sites

Hi

I just sync with cvs and i've noticed that some things are missing.

...

 

error: xml/xmlhelper.hpp: No such file or directory

Did you run cvs up -d, or just cvs up? :rolleyes: CVS doesn't download new directories from the repository by default.

Share this post


Link to post
Share on other sites

hi all,

got this error:

 

D:\CVSfiles EL\elc\libelc.a(sound.o)(.text+0x3561) In function `ensure_sample_loaded':

[Linker error] undefined reference to `_imp__alutLoadMemoryFromFile'

D:\CVSfiles EL\elc\libelc.a(sound.o)(.text+0x6581) In function `init_sound':

[Linker error] undefined reference to `_imp__alutInitWithoutContext'

D:\CVSfiles EL\elc\libelc.a(sound.o)(.text+0x6581) ld returned 1 exit status

D:\CVSfiles EL\elc\Makefile.win [build Error] [el.exe] Error 1

 

well, dev-C compiled all files as well, but i get already the fatal errors with libelc.a, dont know why, played with make.conf (back to default, disable all what has to do with sound) but I couldnt solve it.

 

Could it be possible, that some libaries are too old for compiling? And i removed and installed freealut, quite a lot.

 

Thx for helping

Share this post


Link to post
Share on other sites
Could it be possible, that some libaries are too old for compiling? And i removed and installed freealut, quite a lot.

If you have a look at the end of the sticky'd "Help me compile" thread there is info about this. It is todo with old/doubled libs. You need to remove the old OpenAL and Freealut libs and install the new ones into Dev-C++.

Share this post


Link to post
Share on other sites
Storage code to support the new server version - This will break on the main server\!

Well, maybe #ifdef the new code so we can test the cvs client on the main server?

 

/EDIT:

actually, it would be really cool if the server sent a protocol version and the client knew what to do ...

 

/EDIT2:

 

OK, I really think it makes sense to be able to use the cvs dev client on the main server. Most importantly because the main server is very crowded which makes testing the new sound system much easier.

 

Patches:

Index: storage.h
===================================================================
RCS file: /cvsroot/elc/elc/storage.h,v
retrieving revision 1.10
diff -u -d -p -r1.10 storage.h
--- storage.h   27 Oct 2007 02:13:13 -0000	  1.10
+++ storage.h   27 Oct 2007 19:40:20 -0000
@@ -12,7 +12,11 @@
extern "C" {
#endif

-#define STORAGE_ITEMS_SIZE 300
+#ifdef STO200
+ #define STORAGE_ITEMS_SIZE 200
+#else
+ #define STORAGE_ITEMS_SIZE 300
+#endif

/*! \name window handler
 * @{ */

 

Index: storage.c
===================================================================
RCS file: /cvsroot/elc/elc/storage.c,v
retrieving revision 1.38
diff -u -d -p -r1.38 storage.c
--- storage.c   27 Oct 2007 02:13:13 -0000	  1.38
+++ storage.c   27 Oct 2007 19:42:18 -0000
@@ -125,11 +125,19 @@ void get_storage_items (const Uint8 *in_
	{
			// It's just an update - make sure we're in the right category
			idx = 2;
+ #ifdef STO200
+  active_storage_item = (char)in_data[idx+6];
+ #else
			active_storage_item = SDL_SwapLE16(*((Uint16*)(&in_data[idx+6])));
+ #endif

			for (i = 0; i < STORAGE_ITEMS_SIZE; i++)
			{
+  #ifdef STO200
+   if ((storage_items[i].pos == in_data[idx+6]) && (storage_items[i].quantity > 0))
+  #else
					if ((storage_items[i].pos == SDL_SwapLE16(*((Uint16*)(&in_data[idx+6])))) && (storage_items[i].quantity > 0))
+  #endif
					{
							storage_items[i].image_id = SDL_SwapLE16(*((Uint16*)(&in_data[idx])));
							storage_items[i].quantity = SDL_SwapLE32(*((Uint32*)(&in_data[idx+2])));
@@ -141,7 +149,11 @@ void get_storage_items (const Uint8 *in_
			{
					if (storage_items[i].quantity == 0)
					{
+   #ifdef STO200
+	storage_items[i].pos = in_data[idx+6];
+   #else
							storage_items[i].pos = SDL_SwapLE16(*((Uint16*)(&in_data[idx+6])));
+   #endif
							storage_items[i].image_id = SDL_SwapLE16(*((Uint16*)(&in_data[idx])));
							storage_items[i].quantity = SDL_SwapLE32(*((Uint32*)(&in_data[idx+2])));
							no_storage++;
@@ -151,7 +163,11 @@ void get_storage_items (const Uint8 *in_
	}

	no_storage = 0;
+#ifdef STO200
+ no_storage=in_data[0];
+#else
	no_storage = (len - 4) / 8;
+#endif

	cat = find_category(in_data[1]);
	if (cat >= 0)
@@ -164,11 +180,19 @@ void get_storage_items (const Uint8 *in_
	}

	idx = 2;
+#ifdef STO200
+ for (i = 0; i < no_storage && i < STORAGE_ITEMS_SIZE; i++, idx += 7)
+#else
	for (i = 0; i < no_storage && i < STORAGE_ITEMS_SIZE; i++, idx += 8)
+#endif
	{
			storage_items[i].image_id = SDL_SwapLE16(*((Uint16*)(&in_data[idx])));
			storage_items[i].quantity = SDL_SwapLE32(*((Uint32*)(&in_data[idx+2])));
+ #ifdef STO200
+  storage_items[i].pos = in_data[idx+6];
+ #else
			storage_items[i].pos = SDL_SwapLE16(*((Uint16*)(&in_data[idx+6])));
+ #endif
	}

	for (; i < STORAGE_ITEMS_SIZE; i++)
@@ -343,10 +367,18 @@ int click_storage_handler(window_info * 
									item_dragged=-1;

									if(cur_item_over!=-1) {
-											   Uint8 str[3];
+	 #ifdef STO200
+											   Uint8 str[2];
+	 #else
+	  Uint8 str[3];
+	 #endif

											str[0]=LOOK_AT_STORAGE_ITEM;
+	 #ifdef STO200
+	  str[1]=storage_items[cur_item_over].pos;
+	 #else
											*((Uint16*)(str+1))=storage_items[cur_item_over].pos;
+	 #endif

											my_tcp_send(my_socket, str, 2);

 

Index: items.c
===================================================================
RCS file: /cvsroot/elc/elc/items.c,v
retrieving revision 1.140
diff -u -d -p -r1.140 items.c
--- items.c	 27 Oct 2007 02:13:12 -0000	  1.140
+++ items.c	 27 Oct 2007 19:42:38 -0000
@@ -608,8 +608,13 @@ int click_items_handler(window_info *win
			}
			else if(storage_item_dragged!=-1){
					str[0]=WITHDRAW_ITEM;
+  #ifdef STO200
+   str[1]=storage_items[storage_item_dragged].pos;
+   *((Uint32*)(str+2))=SDL_SwapLE32(item_quantity);
+  #else
					*((Uint16*)(str+1))=storage_items[storage_item_dragged].pos;
					*((Uint32*)(str+3))=SDL_SwapLE32(item_quantity);
+  #endif
					my_tcp_send(my_socket, str, 6);

#ifdef NEW_SOUND

 

So, when you define STO200 the client will work on the main server again. Default (nothing new defined) is the new storage for the test server.

Edited by Florian

Share this post


Link to post
Share on other sites
Well, maybe #ifdef the new code so we can test the cvs client on the main server?

I did ask Ent if we should #ifdef it out and he decided it's not worth it. I do tend to agree because it would mean extra works to remove the defines after the update etc.

 

Backporting CVS to a main server client is very simple. Just keep an old copy of the 3 files (storage.h, storage.c and items.c) and dump them into your source directory when compiling your new main server client.

Share this post


Link to post
Share on other sites

Backporting CVS to a main server client is very simple. Just keep an old copy of the 3 files (storage.h, storage.c and items.c) and dump them into your source directory when compiling your new main server client.

Ah yes, and when some change to storage.c is made, I merge that change manually into my main server old version?? (please do note the irony)

 

Patches are two posts above, and I'll make patches to remove the #ifdefs for the client release.

Share this post


Link to post
Share on other sites

got one of those again:

 

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x00000004
0x06009e53 in CalAnimation::getCoreAnimation (this=0x0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp:51
51	  /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp: No such file or directory.
	in /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp
(gdb) bt full
#0  0x06009e53 in CalAnimation::getCoreAnimation (this=0x0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp:51
No locals.
#1  0x0602c4c0 in CalMixer::updateSkeleton (this=0x1b7f9ec0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/mixer.cpp:463
	pCoreAnimation = (CalCoreAnimation *) 0x14db5310
	listCoreTrack = (list<CalCoreTrack*,std::allocator<CalCoreTrack*> > &) @0x14db5328: {
 <_List_base<CalCoreTrack*,std::allocator<CalCoreTrack*> >> = {
_M_impl = {
  <allocator<std::_List_node<CalCoreTrack*> >> = {
	<new_allocator<std::_List_node<CalCoreTrack*> >> = {<No data fields>}, <No data fields>}, 
  members of _List_base<CalCoreTrack*,std::allocator<CalCoreTrack*> >::_List_impl: 
  _M_node = {
	_M_next = 0x14db5250, 
	_M_prev = 0x14db7d00
  }
}
 }, <No data fields>}
	iteratorCoreTrack = {
 _M_node = 0x14db5328
}
	pSkeleton = (CalSkeleton *) 0x1cff8b10
	vectorBone = (vector<CalBone*,std::allocator<CalBone*> > &) @0x1cff8b14: {
 <_Vector_base<CalBone*,std::allocator<CalBone*> >> = {
_M_impl = {
  <allocator<CalBone*>> = {
	<new_allocator<CalBone*>> = {<No data fields>}, <No data fields>}, 
  members of _Vector_base<CalBone*,std::allocator<CalBone*> >::_Vector_impl: 
  _M_start = 0x1b91c410, 
  _M_finish = 0x1b91c49c, 
  _M_end_of_storage = 0x1b91c49c
}
 }, <No data fields>}
	iteratorAnimationAction = {
 _M_node = 0x1b7f9edc
}
	iteratorAnimationCycle = {
 _M_node = 0x7
}
#2  0x0602e30d in CalModel::update (this=0x1adff7b0, deltaTime=0.0320000015) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/model.cpp:546
No locals.
#3  0x0600eb26 in CalModel_Update (self=0x1adff7b0, deltaTime=0.0320000015) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/cal3d_wrapper.cpp:1173
No locals.
#4  0x0002aa4b in cal_render_actor (act=0x17b98c00) at cal.c:351
	pCalRenderer = (class CalRenderer *) 0x92b23141
	meshCount = -1073748352
	meshId = -1073748296
	submeshCount = -1833815653
	points = {{-0.00964833423, 0.0445599072, -0.032200262}, {-0.0360729843, 0.0454754494, 0.157923475}, {-0.164462894, 0.0328560881, 0.0600669906}, {-0.355455101, -0.238303974, 0.121576093}, {-0.00168114901, -0.187396914, 0.0455240384}, {0.0928146243, -0.215106577, 0.0126081295}, {0.0106174145, 0.0464983098, 0.158370987}, {0.139085904, 0.0269744731, 0.0692216679}, {0.29759413, -0.267355919, 0.144734412}, {-0.00315997005, -0.12260282, 0.0161121488}, {-0.0946521759, -0.170529351, 0.0128254816}, {-0.0125283841, 0.0446049534, 0.15978381}, {-0.0120608713, 0.080148451, 0.2572245}, {-0.0108833127, 0.0670818016, 0.404812783}, {-0.0123969745, 0.127006382, 0.539380133}, {-0.0144646671, 0.184575126, -0.0101546645}, {-0.00783008989, -0.169489995, -0.0333094001}, {0.0454711579, 0.0627984628, 0.562053323}, {0.154680759, 0.0665629804, 0.525126457}, {0.213281095, 0.00690434873, 0.263317227}, {0.2882061, -0.217394382, 0.234480649}, {0.290927827, -0.296279132, 0.196642369}, {0.308168143, -0.291820705, 0.219776914}, {0.304582179, -0.338879853, 0.179256454}, {0.256215841, -0.291127592, 0.217301935}, {-0.0626039132, 0.0627235845, 0.561889648}, {-0.188206792, 0.0708499402, 0.528732598}, {-0.258868486, 0.0384926125, 0.263528645}, {-0.336141288, -0.191105008, 0.233147144}, {-0.336232036, -0.257657707, 0.19776237}, {-0.324579716, -0.258089662, 0.182619423}, {-0.34969759, -0.267553389, 0.215808958}, {-0.356105059, -0.303010792, 0.190712109}, {-0.302160025, -0.256359667, 0.200386062}, {-0.010939328, 0.0242551342, 0.610394657}, {2.04530302e-22, 2.80259693e-44, 1.40129846e-45}, {1.40129846e-45, 0, 5.60519386e-45}, {5.60519386e-45, 1.40129846e-45, 0}, {4.81482486e-35, 1.40129846e-45, 4.31459797e-42}, {0, 0, -7.04456409e-27}, {9.00734174e-18, 5.60519386e-45, -1.99791431}, {-7.06336579e-27, 2.04530302e-22, 9.2501653e-23}, {5.60519386e-45, 0, 2.80259693e-44}, {1.40129846e-45, 1.40129846e-45, 5.60519386e-45}, {5.60519386e-45, -1.08527079e-19, -1.9978323}, {-2.54613656e-29, 0, 4.34996836e-25}, {-1.99786663, -2.54775976e-29, 4.814857e-35}, {-1.99786329, 2.2958874e-41, 3.76158237e-37}, {6.45718332e-42, 5.60519386e-44, 1.40129846e-45}, {1.37648053e-24, 5.32633546e-42, 1.12103877e-43}, {0, 2.11965133e-22, 1.05097385e-43}, {2.08534737e-22, -1.99783802, 2.11914671e-22}, {4.20389539e-45, 2.12121567e-22, 2.08535746e-22}, {-2.52749657e-29, 2.24207754e-44, 4.20389539e-45}, {-1.99786329, -2.52767201e-29, 4.81482486e-35}, {2.24207754e-44, 5.60519386e-45, 4.81482486e-35}, {0, 0, -1.99784184}, {9.39564893e-26, 1.05097385e-43, 8.68805048e-44}, {0, -7.13513892e-29, 5.73831721e-42}, {5.04467447e-44, -1.99784756, -2.52960396e-29}, {4.814857e-35, 4.20389539e-45, 6.16571324e-44}, {6.72623263e-44, 4.31459797e-42, 0}, {0, 5.60519386e-45, 2.08534737e-22}, {1.69406589e-21, 0, 4.20389539e-45}, {0, -1.08527079e-19, -1.99786091}, {-2.54785546e-29, 1.79366203e-43, 1.12103877e-44}, {6.16571324e-44, 1.6894437e-21, 1.6894437e-21}, {7.34683969e-40, 0, 1.69730313e-21}, {6.45718332e-42, 5.60519386e-44, 0}, {4.31459797e-42, 2.02114999e-22, 4.90454463e-44}, {5.32493416e-44, -2.52960396e-29, 4.814857e-35}, {0, 2.84113667e-29, 0.937745094}, {4.814857e-35, 8.81504736e-39, -3.68934881e+19}, {3.74999976, 0, 1.69406589e-21}, {-1.99790668, -2.54775976e-29, 4.814857e-35}, {-1.99790335, 2.2958874e-41, 3.76158237e-37}, {2.80259693e-45, 2.80259693e-45, 7.00649232e-45}, {1.69131132e-21, 1.69131132e-21, 2.41068177e-40}, {0, 2.80259693e-45, 9.80908925e-45}, {4.48415509e-44, 1.40129846e-45, 5.60519386e-45}, {0, 1.83670992e-40, 8.81504736e-39}, {2.41390604e-22, 1.37648053e-24, 0}, {-1.99790335, 2.34816424e-39, 2.41390831e-22}, {-1.99790382, 5.60519386e-45, -2.52749657e-29}, {3.36311631e-44, 9.05126633e-23, -1.9978857}, {-2.52767201e-29, 4.81482486e-35, 3.36311631e-44}, {5.60519386e-44, 6.16571324e-44, 5.60519386e-45}, {1.69406589e-21, 2.80259693e-44, 2.24207754e-44}, {0, 8.37191755e-41, 2.4070562e-22}, {4.81482486e-35, 4.90454463e-44, 4.90454463e-44}, {-1.99789524, -2.53775726e-29, 9.08682944e-23}, {-1.99832535, 4.90454463e-44, -7.13513892e-29}, {3.36311631e-44, 0, 0}, {-7.1049366e-27, 2.02115756e-22, 6.45718332e-42}, {5.04467447e-44, -2.82843727e-29, -1.99794817}, {-1.99832952, -1.99809933, 2.57391203e-39}, {-1.99790323, 3.36311631e-44, 4.90454463e-44}, {4.90454463e-44, 4.90454463e-44, -1.99814653}, {-1.99812031, -2.54398403e-29, -1.99814653}, {-1.99811125, 4.90454463e-44, 1.68944532e-21}, {4.814857e-35, 1.68944532e-21, -1.99790478}, {2.57065681e-39, -1.9979037, 1.591796e-21}, {-1.99794817, 1.40129846e-45, 2.80259693e-45}, {4.90454463e-44, 1.45152103e-21, -1.99809837}, {1.591796e-21, 9.05126633e-23, -1.99791241}, {2.58813661e-39, -1.99791002, 1.6894437e-21}, {1.59179438e-21, 1.45152063e-21, -1.99791133}, {1.591796e-21, 0, 2.38129935e-39}, {1.61149323e-43, -1.99832535, 0}, {4.90454463e-44, 0, 4.90454463e-44}, {0, 6.13119659e-22, -1.99792194}, {-1.99792337, -1.99792325, -1.99794817}, {0, 0, 1.6894437e-21}, {2.5703191e-39, 7.17464814e-43, 1.40129846e-44}, {1.59179438e-21, 0, 4.90454463e-44}, {4.90454463e-44, -1.99792957, 4.20389539e-45}, {0, 0, 1.6894437e-21}, {2.5703191e-39, 9.39420569e-38, 1.6894437e-21}, {-1.99792767, 2.57027145e-39, 1.45147741e-21}, {0, 1.59179438e-21, 2.57035413e-39}, {-1.99793041, -1.99794817, -1.9979372}, {2.58955472e-39, 1.45152022e-21, -1.99794817}, {-1.99794817, 1.64454286e-39, 9.05126633e-23}, {4.24508444e-22, 2.38129935e-39, -1.99809837}, {-1.99793577, 1.45148064e-21, -1.9979558}, {-2.64184926e-29, 0, 1.45147741e-21}, {1.6894437e-21, 2.5703191e-39, 1.45152022e-21}, {1.45147902e-21, -1.99794102, 2.58962899e-39}, {1.45152022e-21, 1.45147741e-21, -1.99794817}, {0.11448881, -49.9843521, 1.9617688e-39}, {-1.99795055, 6.75028787e-07, -1.99794173}, {2.80259693e-45, -1.99794817, 2.56307719e-39}, {5.60519386e-45, 6.68341497e-25, -1.99794865}, {2.8646596e-38, -1.99795246, 1.6894332e-21}, {1.6894437e-21, 1.45152063e-21, -1.99795485}, {1.68943239e-21, -1.9979248, 2.58109929e-39}, {5.17095949e-39, 5.17009629e-39, -1.99795437}, {2.61528116e-39, 1.45152022e-21, -1.9979558}, {6.68247228e-25, 0.00200000009, 1.51340234e-43}, {9.05126633e-23, -1.99796009, -1.99794197}, {0, 0, -1.99796009}, {2.59892801e-39, 1.45152022e-21, -1.99800444}, {0, 0.00200000009, 1.975367e-39}, {5.17009629e-39, -1.99812412, 5.62949953e+14}, {1.45152022e-21, 1.68943239e-21, 9.05126633e-23}, {-2.85039076e-29, -1.08538918e-19, -1.99804151}, {-1.99800205, -2.85053039e-29, -1.99799013}, {-1.08538918e-19, -2.96026025e-29, -1.99800491}, {4.20389539e-45, 0, 0}, {1.98686632e-08, 0, 0}, {0, 0, 0} <repeats 14 times>, {0, -1.9980185, -1.99799633}, {nan(0x7ffffd), -nan(0x7f0208), -1.99801826}, {nan(0x7fffff), -2.55292637e-29, 2.3509887e-38}, {-2.55812578e-29, -1.99800014, -2.52735092e-29}, {-2.55812578e-29, 0, -1.9980154}, {-1.99796772, 0, -nan(0x7fffff)}, {-nan(0x7fffff), -1.99971914, -2.55812578e-29}, {0, -1.99801922, -1.99800444}, {-2.5630375e-29, -1.99801826, -1.99802303}, {-2.56367968e-29, -1.99801826, -1.08538918e-19}, {-2.96026025e-29, 7.70714155e-44, 0}, {0, 0, 1.15491516e-39}, {0, 0, 0}, {0, -1.08536074e-19, 1.24071688e-24}, {-1.99804592, -2.52571268e-29, -1.08536074e-19}, {0, 4.67318812e-28, -2.52605934e-29}, {6.30584309e-44, 6.30584309e-44, -1.99802494}, {-2.5378027e-29, 4.85008969e-35, -1.99804068}, {6.30584309e-44, -2.52605934e-29, -1.09067176e-19}, {0, 4.67318812e-28, -2.52571268e-29}, {-1.09067176e-19, 9.08685216e-23, -2.54427744e-29}, {-2.54538966e-29, 1.12103877e-44, 4.85008969e-35}, {6.30584309e-44, -2.56569348e-29, -1.09047634e-19}, {4.85011552e-35, -1.99802685, -2.57096451e-29}, {-1.09067124e-19, 6.30584309e-44, -1.99803448}, {-2.56567693e-29, 6.30584309e-44, 0}, {-1.99803448, -2.56575096e-29, -1.09047634e-19}, {4.85008969e-35, 6.30584309e-44, -1.99803066}, {1.40129846e-45, 0, -1.99804068}, {-1.09047634e-19, 4.31459797e-42, 0}, {0, 1.14964768e-39, 6.19706458e-22}, {9.08685216e-23, -1.99816608, 1.15020119e-39}, {-1.09047634e-19, 6.30584309e-44, 1.40129846e-45}, {-1.09047634e-19, -0.0843488947, 0.0405835398}, {-1.09047634e-19, 40.3867188, 1.20000005}, {-49.9843521, 42258.3086, 0.000683581166}, {6.936055e-07, 6.88758522e+11, 997.881165}, {1.12895527e+27, 7.15299968e+28, 1.10934292e+27}, {4.85523468e+30, 1.89874267e+28, 7.03922748e+28}, {3.9662891e-11, 2.82309151e+23, 1.8492387e+31}...}
	meshVertices = {{0.288248569, -0.373749614, 0.284559518}, {0.291923106, -0.323055387, 0.313750774}, {0.254351825, -0.284988463, 0.224688053}, {0.249359116, -0.316160738, 0.210369378}, {0.326375604, -0.254405499, 0.156600982}, {0.32138294, -0.285577595, 0.142282307}, {0.387830973, -0.297737479, 0.257301778}, {0.384156346, -0.348431706, 0.228110522}, {0.240146041, -0.233012199, 0.358764857}, {0.15075472, -0.169747651, 0.3744075}, {0.0702499449, -0.266869009, 0.358085304}, {0.183719695, -0.304675817, 0.344347686}, {0.315125942, -0.198717773, 0.343472749}, {0.273750186, -0.113743842, 0.350654393}, {0.401242673, -0.213304341, 0.291592389}, {0.432077169, -0.129241705, 0.259697765}, {0.444379389, -0.272787869, 0.235660285}, {0.585296273, -0.220115423, 0.126073927}, {0.296652913, -0.460405588, 0.197915405}, {0.26879862, -0.509899855, 0.115730315}, {0.481526315, -0.477635056, 0.0329080522}, {0.379739344, -0.425504774, 0.177764654}, {0.218642756, -0.445212603, 0.244937152}, {0.124792531, -0.480129123, 0.206506163}, {0.175506145, -0.385729313, 0.300869316}, {0.0634266138, -0.376922727, 0.294257969}, {0.327283144, -0.34496814, 0.290561646}, {0.432382286, -0.353886485, 0.192985743}, {0.476836741, -0.442856699, 0.0510738194}, {0.456597537, -0.398751199, 0.123337895}, {0.49227038, -0.409876287, 0.0564345419}, {0.522296846, -0.3824476, 0.0480238497}, {0.61712575, -0.350525856, -0.00340929627}, {0.55067122, -0.314571619, 0.0694601238}, {0.495935053, -0.305149138, 0.163097531}, {0.537510633, -0.290731668, 0.100085497}, {0.546028614, -0.260503709, 0.117388338}, {-0.280675203, -0.288500905, 0.183791995}, {-0.277450383, -0.281822443, 0.172662079}, {-0.238056064, -0.327878594, 0.177462995}, {-0.235052556, -0.32122916, 0.169478297}, {-0.207140297, -0.260641158, 0.209758937}, {-0.24359563, -0.23180151, 0.203482389}, {-0.215149492, -0.217944622, 0.215575755}, {-0.189693183, -0.252649516, 0.221395135}, {-0.243754715, -0.234364986, 0.21435219}, {-0.208364367, -0.273405075, 0.205294728}, {-0.251944274, -0.236218929, 0.20119375}, {-0.252103537, -0.238782346, 0.212063491}, {-0.222631246, -0.268575877, 0.205601633}, {-0.266945481, -0.250211507, 0.195716321}, {-0.267104656, -0.252774954, 0.206586063}, {-0.215102226, -0.297833472, 0.17905587}, {-0.264078051, -0.265979886, 0.181265414}, {-0.212967187, -0.297417998, 0.190196812}, {-0.264237255, -0.268543303, 0.192135155}, {0.158001617, -0.604628026, 0.110422671}, {0.192242265, -0.615132332, 0.114111185}, {0.179381415, -0.579142869, 0.125564307}, {0.11759226, -0.56888783, 0.117444456}, {-0.103258505, -0.423747301, 0.16345495}, {-0.113845468, -0.434599489, 0.145408452}, {-0.0719432235, -0.445475399, 0.15898937}, {-0.0903583765, -0.406728268, 0.161607802}, {-0.101744711, -0.419684589, 0.150778115}, {-0.164155602, -0.363433361, 0.163586795}, {-0.151003033, -0.347055018, 0.168455064}, {-0.140319467, -0.335022211, 0.178916514}, {-0.180558145, -0.327518165, 0.173515081}, {-0.19458133, -0.341902912, 0.167907}, {-0.235052556, -0.32122916, 0.169478297}, {-0.208383888, -0.32041654, 0.173001349}, {-0.168609411, -0.314155698, 0.184569657}, {-0.215102226, -0.297833472, 0.17905587}, {-0.180275053, -0.330584943, 0.186767399}, {-0.153499141, -0.352731049, 0.180514991}, {-0.317433804, -0.225412369, 0.192364216}, {-0.264237255, -0.268543303, 0.192135155}, {-0.264078051, -0.265979886, 0.181265414}, {-0.334700108, -0.246174037, 0.182750702}, {-0.277450383, -0.281822443, 0.172662079}, {-0.280675203, -0.288500905, 0.183791995}, {-0.328128129, -0.241195321, 0.201892793}, {-0.273143023, -0.280910492, 0.194797695}, {-0.325457543, -0.233014286, 0.177061379}, {-0.360590965, -0.22098577, 0.186789095}, {-0.354421198, -0.211907268, 0.18258512}, {-0.348776013, -0.206726313, 0.19317925}, {-0.378979743, -0.221900403, 0.182682633}, {-0.363795608, -0.199705243, 0.17256093}, {-0.350133806, -0.186906636, 0.196528196}, {-0.35603705, -0.217771411, 0.199796021}, {-0.271155, -0.273695052, 0.173621118}, {-0.273143023, -0.280910492, 0.194797695}, {-0.209578007, -0.324750841, 0.185722053}, {-0.212967187, -0.297417998, 0.190196812}, {-0.238056064, -0.327878594, 0.177462995}, {-0.208383888, -0.32041654, 0.173001349}, {-0.271155, -0.273695052, 0.173621118}, {-0.209578007, -0.324750841, 0.185722053}, {-0.238056064, -0.327878594, 0.177462995}, {-0.397114903, -0.184435546, 0.199428201}, {-0.368121773, -0.214475483, 0.214337647}, {0.20368126, -0.248508438, 0.0464673191}, {-0.239555776, -0.268744081, 0.0516827554}, {-0.250703663, -0.189433277, 0.0249301791}, {0.174734056, -0.186010748, 0.168079048}, {-0.226073384, -0.169559866, 0.149222717}, {0.160510212, -0.259517103, 0.141349897}, {0.247994706, -0.299953967, 0.177049518}, {0.261736006, -0.256619871, 0.160003811}, {0.174734056, -0.186010748, 0.168079048}, {-0.322313517, -0.224248737, 0.13081485}, {-0.318245947, -0.268621266, 0.167232096}, {-0.221969068, -0.248857856, 0.153087243}, {-0.226073384, -0.169559866, 0.149222717}, {0.174191266, -0.282735288, 0.088555485}, {0.273091048, -0.308146536, 0.151672304}, {-0.338033468, -0.28560999, 0.148110375}, {-0.22806257, -0.288178384, 0.109152384}, {0.20368126, -0.248508438, 0.0464673191}, {0.308216304, -0.269742399, 0.116636232}, {-0.359917521, -0.251998127, 0.0975975469}, {-0.239555776, -0.268744081, 0.0516827554}, {0.283576608, -0.267182708, 0.196512446}, {0.247180104, -0.28074947, 0.195607424}, {-0.316066682, -0.24812749, 0.178710371}, {-0.348254144, -0.237108111, 0.18201831}, {0.324168354, -0.241504654, 0.147382244}, {-0.378919721, -0.212563157, 0.124614626}, {0.253632396, -0.268241763, 0.147556394}, {0.127058625, -0.139440075, 0.0390071794}, {0.211804658, -0.155906558, 0.033314988}, {0.300660968, -0.249255791, 0.110345483}, {-0.255146444, -0.134690285, 0.0164600313}, {-0.169201374, -0.128623292, 0.0277894568}, {-0.316821694, -0.23463349, 0.120461166}, {-0.354935825, -0.218445346, 0.0784492344}, {0.325740278, -0.239484027, 0.107326292}, {0.264267445, -0.124877334, 0.0611932725}, {0.254035622, -0.072344698, 0.144664317}, {-0.293195575, -0.0488214493, 0.127563298}, {-0.305195183, -0.0986232162, 0.0426640213}, {-0.376762927, -0.210357696, 0.0763047859}, {0.106989987, -0.116880648, 0.14483279}, {0.127058625, -0.139440075, 0.0390071794}, {0.253632396, -0.268241763, 0.147556394}, {-0.169201374, -0.128623292, 0.0277894568}, {-0.150589421, -0.10963539, 0.134909987}, {-0.316821694, -0.23463349, 0.120461166}, {0.183677018, -0.0776212215, 0.172799677}, {-0.223804176, -0.0631212816, 0.161501288}, {0.0760473907, 0.0747092664, 0.00190671021}, {0.131155074, 0.0744762942, 0.02292482}, {-0.158781707, 0.0809199437, 0.0192970224}, {-0.106278658, 0.0791325197, -0.00451601529}, {0.00838877261, 0.0318947211, 0.0232422836}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.0384510532, 0.0338890925, 0.0214747563}, {0.00838877261, 0.0318947211, 0.0232422836}, {0.0198911801, -0.0745621175, 0.0339680612}, {-0.0166422706, -0.0830008909, 0.0390940309}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.0166422706, -0.0830008909, 0.0390940309}, {-0.0499522313, -0.0727664828, 0.0348907858}, {-0.0384510532, 0.0338890925, 0.0214747563}, {-0.00429436518, 0.0229421183, 0.0201379247}, {0.0639331713, -0.0522927344, 0.216022909}, {0.0889037848, -0.0582064018, 0.159294277}, {-0.0946161523, -0.0520683825, 0.21647203}, {-0.122545719, -0.0568443909, 0.15781191}, {-0.0153882522, -0.0842988044, 0.215785563}, {-0.0165412892, -0.0894722566, 0.133162871}, {-0.0153882522, -0.0842988044, 0.215785563}, {-0.0165412892, -0.0894722566, 0.133162871}, {0.166799918, 0.0511736982, 0.11733041}, {0.130355716, -0.0192640703, 0.160717621}, {0.21529603, -0.14346464, 0.113479555}, {0.298435628, -0.225367665, 0.12241818}, {0.321798325, -0.229360342, 0.0967535749}, {0.23109889, -0.169011742, 0.054130435}, {-0.345971107, -0.199774727, 0.081488654}, {-0.363577008, -0.212409854, 0.0602890253}, {-0.243566751, -0.145790651, 0.0746201277}, {-0.250703663, -0.189433277, 0.0249301791}, {0.261736006, -0.256619871, 0.160003811}, {-0.322313517, -0.224248737, 0.13081485}, {-0.226073384, -0.169559866, 0.149222717}, {0.174734056, -0.186010748, 0.168079048}, {0.0773368105, -0.0925473645, 0.112180293}, {0.0527539738, -0.0376668721, 0.0384255499}, {0.145240009, -0.0318122804, 0.163464054}, {0.186762869, 0.0346389599, 0.103738636}, {-0.212825984, 0.0496078581, 0.0939726233}, {-0.187832952, 0.0628225952, 0.105229184}, {0.0527539738, -0.0376668721, 0.0384255499}, {-0.0908276513, -0.0324274972, 0.0319492705}, {-0.117985666, -0.089049004, 0.111294337}, {-0.0908276513, -0.0324274972, 0.0319492705}...}
	meshNormals = {{-0.918263316, -0.090695776, 0.385443926}, {-0.932194114, -0.127494618, 0.33876127}, {-0.994276643, 0.0787999332, 0.0721425638}, {-0.915266931, 0.279736429, -0.289886385}, {-0.289172173, 0.437427312, -0.851490974}, {0.511792719, 0.345444858, -0.786597848}, {0.86298126, 0.14874506, -0.482843846}, {0.856028736, 0.209966734, -0.472365111}, {0.166624561, -0.2158546, 0.962103426}, {0.137679324, -0.0542173721, 0.988991916}, {0.00509247091, -0.310287595, 0.950629115}, {0.0636309683, -0.412956297, 0.908525348}, {0.348153979, -0.0712310448, 0.934727252}, {0.413854122, 0.113559045, 0.903232694}, {0.582435846, -0.0617306232, 0.81052947}, {0.643571436, 0.00764911342, 0.765347898}, {0.649813056, -0.290719658, 0.702299833}, {0.720407307, -0.42939797, 0.544638216}, {0.319332898, -0.755475521, 0.572086751}, {0.180473715, -0.86804837, 0.462516189}, {0.482049346, -0.693668008, 0.535213292}, {0.541088641, -0.583945096, 0.605170429}, {0.147418842, -0.747963607, 0.647161663}, {-0.00165638584, -0.758214235, 0.652003467}, {0.0363344215, -0.589958131, 0.806615889}, {-0.0825216398, -0.550136089, 0.830987632}, {0.392691493, -0.468584925, 0.791341603}, {0.62433666, -0.471841425, 0.622550666}, {0.721514761, -0.444278479, 0.531067908}, {0.637115657, -0.603383422, 0.47959581}, {0.717880428, -0.515015185, 0.468409151}, {0.54383868, -0.781729281, 0.30518657}, {0.619866431, -0.627464533, 0.471226007}, {0.790347278, -0.239806965, 0.563776374}, {0.751506329, -0.427729547, 0.502280593}, {0.821158648, -0.328499407, 0.466675997}, {0.762614906, -0.594368875, 0.255233794}, {-0.248408958, 0.860664904, 0.444464803}, {-0.248408958, 0.860664904, 0.444464803}, {0.256895632, 0.123996302, 0.958451688}, {0.0917310044, -0.781887293, -0.61663413}, {0.30691275, 0.1847637, -0.933631003}, {0.30691275, 0.1847637, -0.933631003}, {0.30691275, 0.1847637, -0.933631003}, {0.476001054, 0.205774024, -0.855032146}, {-0.284760058, -0.535747707, 0.794912636}, {0.199423999, 0.126547053, -0.971707702}, {0.199423999, 0.126547053, -0.971707702}, {-0.106870085, -0.319105268, 0.941674352}, {0.25643149, 0.101359621, -0.961233139}, {0.25643149, 0.101359621, -0.961233139}, {0.00892678834, -0.0371251516, 0.999270797}, {0.399076432, 0.657890618, -0.638684571}, {0.399076432, 0.657890618, -0.638684571}, {0.897094965, 0.400384158, -0.186850458}, {-0.263096124, -0.521630585, 0.811592281}, {-0.39778924, -0.801143587, 0.44713828}, {-0.294243068, -0.752025068, 0.589812994}, {-0.106509566, -0.335884124, 0.935861945}, {0.163533956, 0.373370528, -0.913154542}, {-0.375413209, -0.680393815, 0.629388034}, {-0.375413209, -0.680393815, 0.629388034}, {-0.383918107, -0.681384981, 0.623154461}, {0.141368568, 0.000290423981, 0.989956975}, {0.0657614991, 0.290340841, -0.954661012}, {0.0657614991, 0.290340841, -0.954661012}, {0.0350981578, 0.25874421, -0.965308011}, {0.332018107, 0.433547497, -0.837735474}, {0.102376617, 0.273108751, -0.956520081}, {0.102376617, 0.273108751, -0.956520081}, {0.0917310044, -0.781887293, -0.61663413}, {0.110802442, 0.36733672, -0.923464477}, {0.154148445, 0.544330895, -0.824586034}, {0.399076432, 0.657890618, -0.638684571}, {-0.365072638, -0.649695098, 0.666796982}, {-0.385511696, -0.650777221, 0.654117525}, {0.618947029, 0.762388647, 0.188859686}, {-0.263096124, -0.521630585, 0.811592281}, {0.399076432, 0.657890618, -0.638684571}, {-0.509971678, -0.66435796, -0.546404064}, {-0.248408958, 0.860664904, 0.444464803}, {-0.248408958, 0.860664904, 0.444464803}, {-0.573774159, -0.722877204, 0.385008782}, {-0.366407603, -0.629663706, 0.685032308}, {-0.318843305, -0.178496242, -0.930848002}, {-0.318843305, -0.178496242, -0.930848002}, {-0.325935364, -0.205780759, -0.922724485}, {0.410618931, 0.713492692, -0.567732513}, {0.210297585, -0.524860024, -0.824801087}, {0.208411247, -0.520257294, -0.828189015}, {0.822717309, 0.149052203, -0.548561573}, {-0.612014711, -0.690808833, 0.384995252}, {-0.0681526437, 0.168820024, -0.983287871}, {-0.366407603, -0.629663706, 0.685032308}, {-0.198720291, -0.466547757, 0.86188364}, {0.897094965, 0.400384158, -0.186850458}, {0.256895632, 0.123996302, 0.958451688}, {0.110802442, 0.36733672, -0.923464477}, {-0.0681526437, 0.168820024, -0.983287871}, {-0.198720291, -0.466547757, 0.86188364}, {0.256895632, 0.123996302, 0.958451688}, {-0.752264559, -0.53562516, 0.383671343}, {-0.752264559, -0.53562516, 0.383671343}, {0.258716315, -0.305558085, -0.916351497}, {-0.105572961, -0.590180457, -0.800338268}, {-0.202219114, 0.26062876, -0.94402343}, {-0.247573495, 0.352986485, 0.902279317}, {0.108051911, 0.630003214, 0.769038856}, {-0.508972943, -0.541016757, 0.669512808}, {-0.605037272, -0.488776475, 0.628512084}, {-0.668694198, 0.0467143841, 0.742068589}, {-0.247573495, 0.352986485, 0.902279317}, {0.572644651, 0.333053023, 0.749101996}, {0.403900206, -0.380528897, 0.831902921}, {0.221496001, -0.31061098, 0.924370289}, {0.108051911, 0.630003214, 0.769038856}, {-0.239093751, -0.917279482, -0.318484813}, {-0.239908859, -0.95295912, 0.185236454}, {0.0619415417, -0.852296948, 0.519377649}, {0.106484868, -0.991149247, 0.0792732909}, {0.258716315, -0.305558085, -0.916351497}, {0.697832704, -0.0696809739, -0.712863326}, {-0.618373454, -0.341684967, -0.707718611}, {-0.105572961, -0.590180457, -0.800338268}, {0.0736589879, -0.412221432, 0.908101261}, {-0.666272581, -0.504522681, 0.549124599}, {0.542199969, -0.50812149, 0.669202268}, {-0.143211409, -0.377109975, 0.915029287}, {0.923426926, 0.345045388, -0.168007091}, {-0.928992867, 0.331548721, -0.164461777}, {-0.908182561, -0.418463379, -0.00963996444}, {-0.744566441, -0.495628059, -0.447184086}, {0.0322345383, -0.275537014, -0.960749865}, {0.10300754, 0.356346101, -0.928658605}, {-0.0176478438, -0.255809963, -0.966566026}, {0.708266258, -0.562568426, -0.426468909}, {0.908110797, -0.413197249, -0.067843616}, {0.0118864262, 0.322940528, -0.946344614}, {0.642841637, 0.453453809, -0.617360711}, {0.74616003, 0.250582367, -0.616809309}, {0.839440823, 0.490857601, 0.233233646}, {-0.794570565, 0.572020888, 0.203592211}, {-0.68615973, 0.339176655, -0.643540144}, {-0.5079391, 0.444442332, -0.737881303}, {-0.660915315, -0.53439194, 0.5268929}, {-0.744566441, -0.495628059, -0.447184086}, {-0.908182561, -0.418463379, -0.00963996444}, {0.708266258, -0.562568426, -0.426468909}, {0.58359766, -0.600066483, 0.547114193}, {0.908110797, -0.413197249, -0.067843616}, {0.309037805, -0.00439280458, 0.951039612}, {-0.34349671, 0.0197847337, 0.938945472}, {-0.106730454, 0.742509305, -0.66127795}, {0.758412957, 0.58809787, -0.28098157}, {-0.731992066, 0.623958707, -0.273611367}, {0.125198454, 0.765506089, -0.631130517}, {-0.480226815, -0.0356288366, -0.876420498}, {0.0751209483, -0.106911838, -0.991426587}, {0.0751209483, -0.106911838, -0.991426587}, {0.461273521, -0.0204655342, -0.887021899}, {-0.480226815, -0.0356288366, -0.876420498}, {-0.2980946, -0.90474236, -0.304271162}, {-0.0254055299, -0.966650069, -0.254837394}, {0.0751209483, -0.106911838, -0.991426587}, {-0.0254055299, -0.966650069, -0.254837394}, {0.558998525, -0.786931574, -0.261264801}, {0.461273521, -0.0204655342, -0.887021899}, {0.0751209483, -0.106911838, -0.991426587}, {0.588344216, -0.759758651, 0.276799172}, {0.527151585, -0.79136163, 0.309609175}, {-0.588914335, -0.75809288, 0.280134022}, {-0.552049458, -0.778872192, 0.297656864}, {-0.000642185623, -0.966635346, 0.256155491}, {-0.010131686, -0.993482351, 0.113535389}, {-0.000642185623, -0.966635346, 0.256155491}, {-0.010131686, -0.993482351, 0.113535389}, {0.878371477, 0.386125565, 0.281727999}, {0.52676487, -0.0602078363, 0.847876012}, {0.221872091, 0.952317894, 0.209436312}, {0.362474471, 0.907845736, -0.210780561}, {0.647690833, 0.489048541, -0.584232926}, {0.490381271, 0.505378127, -0.710013509}, {-0.163927987, 0.82835865, -0.535676718}, {-0.455126286, 0.403671533, -0.793668211}, {-0.0583808646, 0.981160164, -0.184164003}, {-0.202219114, 0.26062876, -0.94402343}, {-0.668694198, 0.0467143841, 0.742068589}, {0.572644651, 0.333053023, 0.749101996}, {0.108051911, 0.630003214, 0.769038856}, {-0.247573495, 0.352986485, 0.902279317}, {-0.627381206, -0.680930912, 0.377790838}, {-0.83148694, -0.349257797, -0.432028353}, {0.448921531, -0.0388335213, 0.892726958}, {0.871816635, 0.419923753, 0.252189964}, {-0.847283423, 0.490570009, 0.203597128}, {-0.862744153, 0.462820679, 0.203640997}, {-0.83148694, -0.349257797, -0.432028353}, {0.820173025, -0.443646997, -0.361238778}, {0.540391862, -0.736500621, 0.406870216}, {0.820173025, -0.443646997, -0.361238778}...}
	meshTextureCoordinates = {{0.60927701, 0.674775004}, {0.63494885, 0.697785854}, {0.643131852, 0.687360048}, {0.617460012, 0.66434902}, {0.679971874, 0.641009748}, {0.654300094, 0.617998838}, {0.691645384, 0.627020597}, {0.665973485, 0.604009688}, {0.508662105, 0.660959005}, {0.48456043, 0.698984981}, {0.426133603, 0.668831766}, {0.467095435, 0.637492716}, {0.551756918, 0.658460438}, {0.555045724, 0.695287049}, {0.59090358, 0.624363363}, {0.629481852, 0.638133168}, {0.600164771, 0.578279674}, {0.686687529, 0.539891899}, {0.491342008, 0.516844213}, {0.475133777, 0.472877502}, {0.584726989, 0.428863734}, {0.538632452, 0.511829257}, {0.456391096, 0.5484249}, {0.410639793, 0.533227265}, {0.447129726, 0.594508469}, {0.401414275, 0.608207047}, {0.524741709, 0.587110639}, {0.578457952, 0.536015868}, {0.589776814, 0.448086262}, {0.584743917, 0.492167264}, {0.604464233, 0.459647924}, {0.625515342, 0.462542772}, {0.680457354, 0.443666726}, {0.653165579, 0.490544617}, {0.621881723, 0.534494519}, {0.650375783, 0.511539996}, {0.660076499, 0.527332544}, {0.942124009, 0.505708218}, {0.937600672, 0.501375437}, {0.927539825, 0.547177076}, {0.922370732, 0.541250527}, {0.836323082, 0.457952291}, {0.855338812, 0.434741408}, {0.822839022, 0.42715168}, {0.812837362, 0.471305698}, {0.853551745, 0.433029592}, {0.846040666, 0.479761302}, {0.869909525, 0.442359626}, {0.868122518, 0.44064787}, {0.863194942, 0.471640885}, {0.889075756, 0.454893619}, {0.887288868, 0.453181803}, {0.879600644, 0.501256347}, {0.908177137, 0.473190725}, {0.873000324, 0.494933873}, {0.906390131, 0.471478939}, {0.987551808, 0.653175473}, {0.991873264, 0.684964061}, {0.96476233, 0.692162991}, {0.936709464, 0.638965011}, {0.861688912, 0.574463069}, {0.877007246, 0.54784435}, {0.890385091, 0.600724578}, {0.846691728, 0.601771832}, {0.861995339, 0.574708402}, {0.82324177, 0.504160881}, {0.809276938, 0.527422071}, {0.793763757, 0.557188272}, {0.783535719, 0.4989416}, {0.796823263, 0.482540607}, {0.729058862, 0.427618623}, {0.719944119, 0.44420284}, {0.767467022, 0.532156944}, {0.704647422, 0.468543231}, {0.782311201, 0.501701176}, {0.810644925, 0.524792969}, {0.780128419, 0.656654239}, {0.825517535, 0.606527209}, {0.823319554, 0.604421794}, {0.735272646, 0.613985658}, {0.787128508, 0.569754601}, {0.781564772, 0.56442523}, {0.755397499, 0.63352114}, {0.803425789, 0.585365653}, {0.75579679, 0.632977724}, {0.723309159, 0.639314115}, {0.738048553, 0.653432906}, {0.75499481, 0.669665575}, {0.7005741, 0.65212971}, {0.723660827, 0.674164653}, {0.749471962, 0.698807478}, {0.738048553, 0.653432906}, {0.803425789, 0.585365653}, {0.924350917, 0.488683462}, {0.900885999, 0.520607054}, {0.700897813, 0.475010276}, {0.72874707, 0.428727686}, {0.900885999, 0.520607054}, {0.924350917, 0.488683462}, {0.719944119, 0.44420284}, {0.729530632, 0.428727686}, {0.699304998, 0.69816196}, {0.723003387, 0.67353493}, {0.159613356, 0.306679517}, {0.159613356, 0.306679517}, {0.109117307, 0.306197584}, {0.288415015, 0.30658868}, {0.288415015, 0.30658868}, {0.405158162, 0.00296969339}, {0.399437338, 0.0703467354}, {0.342450947, 0.0665658265}, {0.340975046, 0.00471316464}, {0.342451304, 0.0666073337}, {0.399425507, 0.0703921393}, {0.405136466, 0.00296969339}, {0.340975046, 0.00471315719}, {0.440390468, 0.00296963193}, {0.432024419, 0.0716365799}, {0.432047635, 0.0716831163}, {0.440422833, 0.00296963006}, {0.472802907, 0.00296895392}, {0.466499418, 0.0704143494}, {0.466580987, 0.0704696327}, {0.472878128, 0.00296895206}, {0.431395888, 0.107315928}, {0.399764568, 0.104913637}, {0.399748176, 0.104999274}, {0.431403607, 0.107406147}, {0.467226863, 0.10302674}, {0.467285275, 0.103127055}, {0.601212144, 0.0936975703}, {0.601213694, 0.162510246}, {0.561338961, 0.148308381}, {0.544946611, 0.0831657872}, {0.561435103, 0.148621097}, {0.601213694, 0.162936509}, {0.601212144, 0.0938523039}, {0.545129061, 0.0832766816}, {0.515193224, 0.0795534477}, {0.514696956, 0.145319447}, {0.46946907, 0.166635096}, {0.469420224, 0.166802436}, {0.514700711, 0.145546645}, {0.515313685, 0.0796511248}, {0.401132405, 0.184006721}, {0.338616639, 0.152805269}, {0.340492278, 0.094302766}, {0.338616639, 0.152912006}, {0.401138306, 0.184192225}, {0.340492278, 0.0943811685}, {0.434482008, 0.18458268}, {0.434448004, 0.184742093}, {0.571702957, 0.201674461}, {0.531808555, 0.218363613}, {0.531428158, 0.218489632}, {0.571702778, 0.201674268}, {0.598225176, 0.211373255}, {0.597217202, 0.21524404}, {0.597329259, 0.216072664}, {0.598329008, 0.212141111}, {0.354110539, 0.216703027}, {0.388392776, 0.231839865}, {0.382812798, 0.231815532}, {0.353525966, 0.21906513}, {0.382800817, 0.231838152}, {0.388392776, 0.231839925}, {0.354288042, 0.216611505}, {0.35367921, 0.218978509}, {0.416987032, 0.310629755}, {0.42151165, 0.274316221}, {0.417668998, 0.310629755}, {0.421768486, 0.274316221}, {0.37003845, 0.311240762}, {0.369638532, 0.274927258}, {0.370746315, 0.311240822}, {0.369834512, 0.274927318}, {0.471586198, 0.238707408}, {0.43122074, 0.230868012}, {0.55812782, 0.00418947171}, {0.553476214, 0.0625336319}, {0.508062363, 0.0644382313}, {0.518134117, 0.00663091196}, {0.553665221, 0.0625954792}, {0.508188367, 0.0644892454}, {0.558331311, 0.00418946985}, {0.518261671, 0.00663090823}, {0.601211607, 0.0621125586}, {0.601211667, 0.0621945448}, {0.600235105, 0.00296844356}, {0.600235105, 0.00296844356}, {0.394356698, 0.213808268}, {0.354006588, 0.211723596}, {0.429150075, 0.212830126}, {0.471183062, 0.220303923}, {0.471048355, 0.220516413}, {0.471515805, 0.238999471}, {0.600332618, 0.206166223}, {0.60065037, 0.206767365}, {0.394441426, 0.214069307}, {0.354006588, 0.211830765}...}
	meshFaces = {{0, 1, 2}, {3, 0, 2}, {3, 2, 4}, {4, 5, 3}, {5, 4, 6}, {6, 7, 5}, {8, 9, 10}, {10, 11, 8}, {12, 13, 9}, {9, 8, 12}, {14, 15, 13}, {13, 12, 14}, {16, 17, 15}, {15, 14, 16}, {18, 19, 20}, {20, 21, 18}, {22, 23, 19}, {19, 18, 22}, {24, 25, 23}, {23, 22, 24}, {11, 10, 25}, {25, 24, 11}, {26, 8, 11}, {26, 12, 8}, {26, 14, 12}, {26, 16, 14}, {26, 18, 21}, {26, 22, 18}, {26, 24, 22}, {26, 11, 24}, {21, 27, 26}, {27, 16, 26}, {20, 28, 29}, {20, 29, 21}, {28, 30, 29}, {21, 29, 27}, {31, 32, 29}, {30, 31, 29}, {29, 32, 27}, {32, 33, 34}, {32, 34, 27}, {33, 35, 34}, {36, 17, 34}, {35, 36, 34}, {34, 16, 27}, {34, 17, 16}, {45, 41, 44}, {44, 43, 45}, {42, 45, 43}, {46, 47, 42}, {42, 41, 46}, {48, 46, 41}, {41, 45, 48}, {47, 48, 45}, {45, 42, 47}, {49, 50, 47}, {47, 46, 49}, {51, 49, 46}, {46, 48, 51}, {50, 51, 48}, {48, 47, 50}, {52, 53, 50}, {50, 49, 52}, {54, 52, 49}, {55, 54, 49}, {49, 51, 55}, {53, 55, 51}, {51, 50, 53}, {14, 13, 56}, {56, 57, 14}, {16, 14, 57}, {57, 58, 16}, {13, 12, 59}, {12, 20, 59}, {16, 59, 20}, {20, 17, 16}, {60, 61, 22}, {22, 62, 60}, {63, 60, 62}, {62, 24, 63}, {64, 61, 65}, {65, 66, 64}, {63, 64, 66}, {66, 67, 63}, {68, 69, 70}, {70, 71, 68}, {72, 68, 71}, {71, 73, 72}, {74, 69, 65}, {65, 75, 74}, {72, 74, 75}, {75, 67, 72}, {66, 65, 69}, {69, 68, 66}, {67, 66, 68}, {68, 72, 67}, {75, 65, 61}, {61, 60, 75}, {67, 75, 60}, {60, 63, 67}, {23, 22, 61}, {61, 64, 23}, {24, 23, 64}, {64, 63, 24}, {62, 22, 18}, {18, 25, 62}, {24, 62, 25}, {25, 21, 24}, {57, 56, 13}, {13, 59, 57}, {58, 57, 59}, {59, 16, 58}, {76, 77, 78}, {79, 80, 81}, {82, 79, 81}, {81, 83, 82}, {76, 82, 83}, {83, 77, 76}, {84, 79, 85}, {85, 86, 84}, {76, 84, 86}, {86, 87, 76}, {86, 85, 88}, {88, 89, 86}, {87, 86, 89}, {89, 90, 87}, {91, 85, 79}, {79, 82, 91}, {87, 91, 82}, {82, 76, 87}, {92, 80, 79}, {79, 84, 92}, {78, 92, 84}, {84, 76, 78}, {93, 37, 39}, {39, 94, 93}, {55, 93, 94}, {94, 54, 55}, {73, 95, 72}, {96, 70, 69}, {97, 40, 38}, {38, 98, 97}, {52, 97, 98}, {98, 53, 52}, {99, 100, 69}, {69, 74, 99}, {95, 99, 74}, {74, 72, 95}, {101, 88, 102}, {90, 101, 102}, {89, 88, 101}, {90, 89, 101}, {102, 88, 85}, {85, 91, 102}, {90, 102, 91}, {91, 87, 90}, {147, 148, 126}, {147, 126, 149}, {124, 150, 144}, {124, 144, 125}, {148, 151, 127}, {148, 127, 126}, {128, 140, 150}, {128, 150, 124}, {151, 141, 129}, {151, 129, 127}, {132, 152, 153}, {132, 153, 139}, {154, 155, 134}, {154, 134, 142}, {156, 157, 29}, {156, 29, 24}, {31, 158, 159}, {31, 159, 26}, {160, 161, 162}, {160, 162, 163}, {164, 165, 166}, {164, 166, 167}, {16, 19, 168}, {16, 168, 169}, {170, 21, 20}, {170, 20, 171}, {169, 168, 172}, {169, 172, 173}, {174, 170, 171}, {174, 171, 175}, {176, 16, 169}, {176, 169, 177}, {178, 179, 180}, {178, 180, 181}, {179, 133, 138}, {179, 138, 180}, {137, 182, 183}, {137, 183, 143}, {182, 184, 185}, {182, 185, 183}, {128, 121, 180}, {128, 180, 138}, {130, 133, 179}, {130, 179, 186}...}
	skel = (class CalSkeleton *) 0x1cff8b10
	_mesh = (class CalMesh *) 0x0
	_coremesh = (class CalCoreMesh *) 0x0
	_weaponmesh = (class CalCoreMesh *) 0x3f800000
	_shieldmesh = (class CalCoreMesh *) 0x0
	reverse_scale = 40.25
#5  0x0008e945 in draw_enhanced_actor (actor_id=0x17b98c00, banner=1) at new_actors.c:271
	x_pos = 40
	y_pos = 50
	z_pos = 0
	x_rot = 0
	y_rot = 0
	z_rot = 90.0000305
	healthbar_z = 1.53830409
#6  0x00015c32 in display_actors (banner=1, reflections=0) at actors.c:732
	cur_actor = (actor *) 0x17b98c00
	i = 24
	x = 41
	y = 47
	has_ghosts = 0
#7  0x0005a574 in display_game_handler (win=0x698da00) at gamewin.c:985
	main_count = 45774
	times_FPS_below_3 = 0
	fps = {20, 20, 19, 20, 20}
	shadows_were_disabled = 0
	eye_candy_was_disabled = 0
	str = "\000\000\000\000\000\000\000\000\000\000?\000\000\000\000Èàá\022¹Ôá\022\001\000\000\000(èÿ¿IÕá\022 \000|\005\000\000\000\000\000\000\000\000\000\000?D\006Dèÿ¿\031\000\000\000\001\000\000\000 \000|\005\004\000\000\000 \000|\005Õ-²Éä\022\f ²¢Hèÿ¿j\033ä\022 \000|\005\000\000\000\000\001\000\000\000¦Ùä\022Ð)|\005Pèÿ¿xèÿ¿\032.² \000|\005á\r\000\000ùøø=\000\000\000\000¾¾¾>   >èÿ¿±T² \000|\005\000\000?\000\000?\000\000?"
	i = 0
	any_reflection = 0
	mouse_rate = 1
#8  0x0004a409 in draw_window (win=0x698da00) at elwindows.c:1137
	ret_val = 0
	W = (widget_list *) 0x0
#9  0x0004acc8 in display_window (win_id=0) at elwindows.c:1307
No locals.
#10 0x00047334 in display_windows (level=1) at elwindows.c:75
	id = -1
	next_id = -9999
	i = 0
#11 0x0003df6f in draw_scene () at draw_scene.c:116
No locals.
#12 0x000839be in start_rendering () at main.c:168
	event = {
 type = 24 '\030', 
 active = {
type = 24 '\030', 
gain = 238 'î', 
state = 38 '&'
 }, 
 key = {
type = 24 '\030', 
which = 238 'î', 
state = 38 '&', 
keysym = {
  scancode = 3 '\003', 
  sym = 90037840, 
  mod = KMOD_NONE, 
  unicode = 4692
}
 }, 
 motion = {
type = 24 '\030', 
which = 238 'î', 
state = 38 '&', 
x = 3, 
y = 0, 
xrel = -8624, 
yrel = 1373
 }, 
 button = {
type = 24 '\030', 
which = 238 'î', 
button = 38 '&', 
state = 176 '°', 
x = 3, 
y = 0
 }, 
 jaxis = {
type = 24 '\030', 
which = 238 'î', 
axis = 38 '&', 
value = 3
 }, 
 jball = {
type = 24 '\030', 
which = 238 'î', 
ball = 38 '&', 
xrel = 3, 
yrel = 0
 }, 
 jhat = {
type = 24 '\030', 
which = 238 'î', 
hat = 38 '&', 
value = 176 '°'
 }, 
 jbutton = {
type = 24 '\030', 
which = 238 'î', 
button = 38 '&', 
state = 176 '°'
 }, 
 resize = {
type = 24 '\030', 
w = 3, 
h = 90037840
 }, 
 expose = {
type = 24 '\030'
 }, 
 quit = {
type = 24 '\030'
 }, 
 user = {
type = 24 '\030', 
code = 3, 
data1 = 0x55dde50, 
data2 = 0x0
 }, 
 syswm = {
type = 24 '\030', 
msg = 0x3
 }
}
	done = 0
	network_thread_data = {0x1ada23c0, 0x3803d8}
	network_thread = (struct SDL_Thread *) 0x179dec00
	message_queue = (queue_t *) 0x1ada23c0
#13 0x00083d8b in SDL_main (argc=1, argv=0x5507040) at main.c:290
No locals.
#14 0x0019cdf8 in -[SDLMain applicationDidFinishLaunching:] (self=0x551ef80, _cmd=0x1afb40, note=0x5508a70) at SDLmain.m:197
	status = -1868196602
#15 0x927ed17b in _nsnote_callback ()
No symbol table info available.
#16 0x908563e6 in __CFXNotificationPost ()
No symbol table info available.
#17 0x9084dbd1 in _CFXNotificationPostNotification ()
No symbol table info available.
#18 0x927e5724 in -[NSNotificationCenter postNotificationName:object:userInfo:] ()
No symbol table info available.
#19 0x927ec6c9 in -[NSNotificationCenter postNotificationName:object:] ()
No symbol table info available.
#20 0x93295e94 in -[NSApplication _postDidFinishNotification] ()
No symbol table info available.
#21 0x93295d7e in -[NSApplication _sendFinishLaunchingNotification] ()
No symbol table info available.
#22 0x9329587d in -[NSApplication(NSAppleEventHandling) _handleAEOpen:] ()
No symbol table info available.
#23 0x93295448 in -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] ()
No symbol table info available.
#24 0x927f2e65 in -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] ()
No symbol table info available.
#25 0x927f2c8f in _NSAppleEventManagerGenericHandler ()
No symbol table info available.
#26 0x915236c5 in aeDispatchAppleEvent ()
No symbol table info available.
#27 0x915235f6 in dispatchEventAndSendReply ()
No symbol table info available.
#28 0x915234c2 in aeProcessAppleEvent ()
No symbol table info available.
#29 0x92df00e4 in AEProcessAppleEvent ()
No symbol table info available.
#30 0x9329363d in _DPSNextEvent ()
No symbol table info available.
#31 0x93293056 in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] ()
No symbol table info available.
#32 0x9328cddb in -[NSApplication run] ()
No symbol table info available.
#33 0x0019cd7c in CustomApplicationMain (argc=1, argv=-1073744328) at SDLmain.m:175
	pool = (class NSAutoreleasePool *) 0x55073a0
	sdlMain = (class SDLMain *) 0x551ef80
#34 0x0019d0c2 in main (argc=1, argv=0xbffff638) at SDLmain.m:276
	i = 1
Current language:  auto; currently c++

 

/EDIT

I think I can reproduce it: rotate the camera while others are fighting

Edited by Florian

Share this post


Link to post
Share on other sites
I just got a small, semi bug here... the client icon is using the old one instead of the new one.

I think removing the elc_private.* files from your CVS directory will fix that. I don't know, sorry.

Share this post


Link to post
Share on other sites

io/zipfilesystem.hpp: In member function 'Uint32 eternal_lands::zip_file_system::get_uint32_from_pos(Uint8*&) const':

io/zipfilesystem.hpp:112: error: 'memcpy' was not declared in this scope

io/zipfilesystem.hpp: In member function 'Uint16 eternal_lands::zip_file_system::get_uint16_from_pos(Uint8*&) const':

io/zipfilesystem.hpp:130: error: 'memcpy' was not declared in this scope

 

fix:

#include <string.h>

Edited by Florian

Share this post


Link to post
Share on other sites

io/zipfilesystem.hpp

fix:

#include <string.h>

Weird, compiles fine in Linux but looking at the code, it should be there. Anyway, updated in CVS now, thanks.

Share this post


Link to post
Share on other sites
I removed those files but then it wouldn't compile at all, so I put them back.
Oops, must be the wrong files.

 

If you check the CVS directory look for any added/changed files that you don't know what they do (so not make.conf) and try removing them or getting fresh copies. Sorry I can't be more specific.

Share this post


Link to post
Share on other sites

Weird, compiles fine in Linux but looking at the code, it should be there. Anyway, updated in CVS now, thanks.

Well, when I use my system gcc it compiles too. But yesterday I tried with the latest gcc-4.3-svn and that one complained ...

Share this post


Link to post
Share on other sites

client crashed

 

#0  0x0006aae2 in get_old_world_x_y (scene_x=0xbfffe7fe, scene_y=0xbfffe7fc) at interface.c:171
	box = {
 bbmin = {62.5, 94.5, -2.20000005}, 
 bbmax = {63.5, 95.5, -2.20000005}
}
	t = 1.74858749
	x = 61.8509293
	y = 95.5
	z = 14.2030535
	t1 = 3.22402596
	t2 = 1.74858749
	tx = 62.5
	ty = 94.5
	dx = -0.237848714
	dy = 0.571890175
	h = 0
	len = 291.060272
	i = 125
	j = 191
	h_max = 0
	h_min = 0
	h1 = 0
	h2 = 0
	h3 = 0
	h4 = 0
	sx = -1
	sy = 1
	zx = 0
	zy = 0
	i_min = 19
	i_max = 158
	j_min = 107
	j_max = 192
#1  0x00059ef2 in click_game_handler (win=0x698f800, mx=758, my=599, flags=67108864) at gamewin.c:787
	x = 0
	y = 0
	flag_ctrl = 0
	flag_right = 0
	force_walk = 0
#2  0x0004b1c9 in click_in_window (win_id=0, x=758, y=599, flags=67108864) at elwindows.c:1401
	time = 954591
	win = (window_info *) 0x698f800
	mx = 758
	my = 599
	W = (widget_list *) 0x0
	ret_val = 0
#3  0x000477b8 in click_in_windows (mx=758, my=599, flags=67108864) at elwindows.c:200
	done = 0
	id = -1
	next_id = 0
	first_win = -1
	i = 0
#4  0x000501ce in HandleEvent (event=0xbfffe990) at events.c:261
	done = 0
	mouse_delta_x = 0
	mouse_delta_y = 0
	key = 0
	flags = 67108864
#5  0x0008383a in start_rendering () at main.c:143
	event = {
 type = 5 '\005', 
 active = {
type = 5 '\005', 
gain = 0 '\0', 
state = 1 '\001'
 }, 
 key = {
type = 5 '\005', 
which = 0 '\0', 
state = 1 '\001', 
keysym = {
  scancode = 246 'ö', 
  sym = SDLK_UNKNOWN, 
  mod = KMOD_NONE, 
  unicode = 0
}
 }, 
 motion = {
type = 5 '\005', 
which = 0 '\0', 
state = 1 '\001', 
x = 758, 
y = 599, 
xrel = 0, 
yrel = 0
 }, 
 button = {
type = 5 '\005', 
which = 0 '\0', 
button = 1 '\001', 
state = 1 '\001', 
x = 758, 
y = 599
 }, 
 jaxis = {
type = 5 '\005', 
which = 0 '\0', 
axis = 1 '\001', 
value = 758
 }, 
 jball = {
type = 5 '\005', 
which = 0 '\0', 
ball = 1 '\001', 
xrel = 758, 
yrel = 599
 }, 
 jhat = {
type = 5 '\005', 
which = 0 '\0', 
hat = 1 '\001', 
value = 1 '\001'
 }, 
 jbutton = {
type = 5 '\005', 
which = 0 '\0', 
button = 1 '\001', 
state = 1 '\001'
 }, 
 resize = {
type = 5 '\005', 
w = 39256822, 
h = 0
 }, 
 expose = {
type = 5 '\005'
 }, 
 quit = {
type = 5 '\005'
 }, 
 user = {
type = 5 '\005', 
code = 39256822, 
data1 = 0x0, 
data2 = 0x0
 }, 
 syswm = {
type = 5 '\005', 
msg = 0x25702f6
 }
}
	done = 0
	network_thread_data = {0x1afa75a0, 0x387b38}
	network_thread = (struct SDL_Thread *) 0x179dd800
	message_queue = (queue_t *) 0x1afa75a0
#6  0x00083ced in SDL_main (argc=1, argv=0x5507040) at main.c:290
No locals.
#7  0x001a0e62 in -[SDLMain applicationDidFinishLaunching:] (self=0x5520d50, _cmd=0x1b4c98, note=0x5516c40) at SDLmain.m:197
	status = -1868196602

 

walking around in KF

Edited by Florian

Share this post


Link to post
Share on other sites

client crashed

#0  0x0006aae2 in get_old_world_x_y (scene_x=0xbfffe7fe, scene_y=0xbfffe7fc) at interface.c:171
...

walking around in KF

Clearly an access outside the allocated array size. I added some code to trap the access error and can quickly reproduce the problem standing at KF (116,137) facing north and clicking off the map into the sea. Note this code is only executed if you have have the "mouse bug" option ticked in video options. I havn't got to the bottom on the problem yet but it's my bed time. I'd be more than happy for someone else to fix it while I sleep :)

Share this post


Link to post
Share on other sites

Excellent, thanks a lot!

Do we have any other crashes now?

 

I don't think anybody looked at this one:

 

got one of those again:

 

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x00000004
0x06009e53 in CalAnimation::getCoreAnimation (this=0x0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp:51
51	  /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp: No such file or directory.
	in /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp
(gdb) bt full
#0  0x06009e53 in CalAnimation::getCoreAnimation (this=0x0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/animation.cpp:51
No locals.
#1  0x0602c4c0 in CalMixer::updateSkeleton (this=0x1b7f9ec0) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/mixer.cpp:463
	pCoreAnimation = (CalCoreAnimation *) 0x14db5310
	listCoreTrack = (list<CalCoreTrack*,std::allocator<CalCoreTrack*> > &) @0x14db5328: {
 <_List_base<CalCoreTrack*,std::allocator<CalCoreTrack*> >> = {
_M_impl = {
  <allocator<std::_List_node<CalCoreTrack*> >> = {
	<new_allocator<std::_List_node<CalCoreTrack*> >> = {<No data fields>}, <No data fields>}, 
  members of _List_base<CalCoreTrack*,std::allocator<CalCoreTrack*> >::_List_impl: 
  _M_node = {
	_M_next = 0x14db5250, 
	_M_prev = 0x14db7d00
  }
}
 }, <No data fields>}
	iteratorCoreTrack = {
 _M_node = 0x14db5328
}
	pSkeleton = (CalSkeleton *) 0x1cff8b10
	vectorBone = (vector<CalBone*,std::allocator<CalBone*> > &) @0x1cff8b14: {
 <_Vector_base<CalBone*,std::allocator<CalBone*> >> = {
_M_impl = {
  <allocator<CalBone*>> = {
	<new_allocator<CalBone*>> = {<No data fields>}, <No data fields>}, 
  members of _Vector_base<CalBone*,std::allocator<CalBone*> >::_Vector_impl: 
  _M_start = 0x1b91c410, 
  _M_finish = 0x1b91c49c, 
  _M_end_of_storage = 0x1b91c49c
}
 }, <No data fields>}
	iteratorAnimationAction = {
 _M_node = 0x1b7f9edc
}
	iteratorAnimationCycle = {
 _M_node = 0x7
}
#2  0x0602e30d in CalModel::update (this=0x1adff7b0, deltaTime=0.0320000015) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/model.cpp:546
No locals.
#3  0x0600eb26 in CalModel_Update (self=0x1adff7b0, deltaTime=0.0320000015) at /Users/jeff/Desktop/cal3d-0.11.0/macosx/../src/cal3d/cal3d_wrapper.cpp:1173
No locals.
#4  0x0002aa4b in cal_render_actor (act=0x17b98c00) at cal.c:351
	pCalRenderer = (class CalRenderer *) 0x92b23141
	meshCount = -1073748352
	meshId = -1073748296
	submeshCount = -1833815653
	points = {{-0.00964833423, 0.0445599072, -0.032200262}, {-0.0360729843, 0.0454754494, 0.157923475}, {-0.164462894, 0.0328560881, 0.0600669906}, {-0.355455101, -0.238303974, 0.121576093}, {-0.00168114901, -0.187396914, 0.0455240384}, {0.0928146243, -0.215106577, 0.0126081295}, {0.0106174145, 0.0464983098, 0.158370987}, {0.139085904, 0.0269744731, 0.0692216679}, {0.29759413, -0.267355919, 0.144734412}, {-0.00315997005, -0.12260282, 0.0161121488}, {-0.0946521759, -0.170529351, 0.0128254816}, {-0.0125283841, 0.0446049534, 0.15978381}, {-0.0120608713, 0.080148451, 0.2572245}, {-0.0108833127, 0.0670818016, 0.404812783}, {-0.0123969745, 0.127006382, 0.539380133}, {-0.0144646671, 0.184575126, -0.0101546645}, {-0.00783008989, -0.169489995, -0.0333094001}, {0.0454711579, 0.0627984628, 0.562053323}, {0.154680759, 0.0665629804, 0.525126457}, {0.213281095, 0.00690434873, 0.263317227}, {0.2882061, -0.217394382, 0.234480649}, {0.290927827, -0.296279132, 0.196642369}, {0.308168143, -0.291820705, 0.219776914}, {0.304582179, -0.338879853, 0.179256454}, {0.256215841, -0.291127592, 0.217301935}, {-0.0626039132, 0.0627235845, 0.561889648}, {-0.188206792, 0.0708499402, 0.528732598}, {-0.258868486, 0.0384926125, 0.263528645}, {-0.336141288, -0.191105008, 0.233147144}, {-0.336232036, -0.257657707, 0.19776237}, {-0.324579716, -0.258089662, 0.182619423}, {-0.34969759, -0.267553389, 0.215808958}, {-0.356105059, -0.303010792, 0.190712109}, {-0.302160025, -0.256359667, 0.200386062}, {-0.010939328, 0.0242551342, 0.610394657}, {2.04530302e-22, 2.80259693e-44, 1.40129846e-45}, {1.40129846e-45, 0, 5.60519386e-45}, {5.60519386e-45, 1.40129846e-45, 0}, {4.81482486e-35, 1.40129846e-45, 4.31459797e-42}, {0, 0, -7.04456409e-27}, {9.00734174e-18, 5.60519386e-45, -1.99791431}, {-7.06336579e-27, 2.04530302e-22, 9.2501653e-23}, {5.60519386e-45, 0, 2.80259693e-44}, {1.40129846e-45, 1.40129846e-45, 5.60519386e-45}, {5.60519386e-45, -1.08527079e-19, -1.9978323}, {-2.54613656e-29, 0, 4.34996836e-25}, {-1.99786663, -2.54775976e-29, 4.814857e-35}, {-1.99786329, 2.2958874e-41, 3.76158237e-37}, {6.45718332e-42, 5.60519386e-44, 1.40129846e-45}, {1.37648053e-24, 5.32633546e-42, 1.12103877e-43}, {0, 2.11965133e-22, 1.05097385e-43}, {2.08534737e-22, -1.99783802, 2.11914671e-22}, {4.20389539e-45, 2.12121567e-22, 2.08535746e-22}, {-2.52749657e-29, 2.24207754e-44, 4.20389539e-45}, {-1.99786329, -2.52767201e-29, 4.81482486e-35}, {2.24207754e-44, 5.60519386e-45, 4.81482486e-35}, {0, 0, -1.99784184}, {9.39564893e-26, 1.05097385e-43, 8.68805048e-44}, {0, -7.13513892e-29, 5.73831721e-42}, {5.04467447e-44, -1.99784756, -2.52960396e-29}, {4.814857e-35, 4.20389539e-45, 6.16571324e-44}, {6.72623263e-44, 4.31459797e-42, 0}, {0, 5.60519386e-45, 2.08534737e-22}, {1.69406589e-21, 0, 4.20389539e-45}, {0, -1.08527079e-19, -1.99786091}, {-2.54785546e-29, 1.79366203e-43, 1.12103877e-44}, {6.16571324e-44, 1.6894437e-21, 1.6894437e-21}, {7.34683969e-40, 0, 1.69730313e-21}, {6.45718332e-42, 5.60519386e-44, 0}, {4.31459797e-42, 2.02114999e-22, 4.90454463e-44}, {5.32493416e-44, -2.52960396e-29, 4.814857e-35}, {0, 2.84113667e-29, 0.937745094}, {4.814857e-35, 8.81504736e-39, -3.68934881e+19}, {3.74999976, 0, 1.69406589e-21}, {-1.99790668, -2.54775976e-29, 4.814857e-35}, {-1.99790335, 2.2958874e-41, 3.76158237e-37}, {2.80259693e-45, 2.80259693e-45, 7.00649232e-45}, {1.69131132e-21, 1.69131132e-21, 2.41068177e-40}, {0, 2.80259693e-45, 9.80908925e-45}, {4.48415509e-44, 1.40129846e-45, 5.60519386e-45}, {0, 1.83670992e-40, 8.81504736e-39}, {2.41390604e-22, 1.37648053e-24, 0}, {-1.99790335, 2.34816424e-39, 2.41390831e-22}, {-1.99790382, 5.60519386e-45, -2.52749657e-29}, {3.36311631e-44, 9.05126633e-23, -1.9978857}, {-2.52767201e-29, 4.81482486e-35, 3.36311631e-44}, {5.60519386e-44, 6.16571324e-44, 5.60519386e-45}, {1.69406589e-21, 2.80259693e-44, 2.24207754e-44}, {0, 8.37191755e-41, 2.4070562e-22}, {4.81482486e-35, 4.90454463e-44, 4.90454463e-44}, {-1.99789524, -2.53775726e-29, 9.08682944e-23}, {-1.99832535, 4.90454463e-44, -7.13513892e-29}, {3.36311631e-44, 0, 0}, {-7.1049366e-27, 2.02115756e-22, 6.45718332e-42}, {5.04467447e-44, -2.82843727e-29, -1.99794817}, {-1.99832952, -1.99809933, 2.57391203e-39}, {-1.99790323, 3.36311631e-44, 4.90454463e-44}, {4.90454463e-44, 4.90454463e-44, -1.99814653}, {-1.99812031, -2.54398403e-29, -1.99814653}, {-1.99811125, 4.90454463e-44, 1.68944532e-21}, {4.814857e-35, 1.68944532e-21, -1.99790478}, {2.57065681e-39, -1.9979037, 1.591796e-21}, {-1.99794817, 1.40129846e-45, 2.80259693e-45}, {4.90454463e-44, 1.45152103e-21, -1.99809837}, {1.591796e-21, 9.05126633e-23, -1.99791241}, {2.58813661e-39, -1.99791002, 1.6894437e-21}, {1.59179438e-21, 1.45152063e-21, -1.99791133}, {1.591796e-21, 0, 2.38129935e-39}, {1.61149323e-43, -1.99832535, 0}, {4.90454463e-44, 0, 4.90454463e-44}, {0, 6.13119659e-22, -1.99792194}, {-1.99792337, -1.99792325, -1.99794817}, {0, 0, 1.6894437e-21}, {2.5703191e-39, 7.17464814e-43, 1.40129846e-44}, {1.59179438e-21, 0, 4.90454463e-44}, {4.90454463e-44, -1.99792957, 4.20389539e-45}, {0, 0, 1.6894437e-21}, {2.5703191e-39, 9.39420569e-38, 1.6894437e-21}, {-1.99792767, 2.57027145e-39, 1.45147741e-21}, {0, 1.59179438e-21, 2.57035413e-39}, {-1.99793041, -1.99794817, -1.9979372}, {2.58955472e-39, 1.45152022e-21, -1.99794817}, {-1.99794817, 1.64454286e-39, 9.05126633e-23}, {4.24508444e-22, 2.38129935e-39, -1.99809837}, {-1.99793577, 1.45148064e-21, -1.9979558}, {-2.64184926e-29, 0, 1.45147741e-21}, {1.6894437e-21, 2.5703191e-39, 1.45152022e-21}, {1.45147902e-21, -1.99794102, 2.58962899e-39}, {1.45152022e-21, 1.45147741e-21, -1.99794817}, {0.11448881, -49.9843521, 1.9617688e-39}, {-1.99795055, 6.75028787e-07, -1.99794173}, {2.80259693e-45, -1.99794817, 2.56307719e-39}, {5.60519386e-45, 6.68341497e-25, -1.99794865}, {2.8646596e-38, -1.99795246, 1.6894332e-21}, {1.6894437e-21, 1.45152063e-21, -1.99795485}, {1.68943239e-21, -1.9979248, 2.58109929e-39}, {5.17095949e-39, 5.17009629e-39, -1.99795437}, {2.61528116e-39, 1.45152022e-21, -1.9979558}, {6.68247228e-25, 0.00200000009, 1.51340234e-43}, {9.05126633e-23, -1.99796009, -1.99794197}, {0, 0, -1.99796009}, {2.59892801e-39, 1.45152022e-21, -1.99800444}, {0, 0.00200000009, 1.975367e-39}, {5.17009629e-39, -1.99812412, 5.62949953e+14}, {1.45152022e-21, 1.68943239e-21, 9.05126633e-23}, {-2.85039076e-29, -1.08538918e-19, -1.99804151}, {-1.99800205, -2.85053039e-29, -1.99799013}, {-1.08538918e-19, -2.96026025e-29, -1.99800491}, {4.20389539e-45, 0, 0}, {1.98686632e-08, 0, 0}, {0, 0, 0} <repeats 14 times>, {0, -1.9980185, -1.99799633}, {nan(0x7ffffd), -nan(0x7f0208), -1.99801826}, {nan(0x7fffff), -2.55292637e-29, 2.3509887e-38}, {-2.55812578e-29, -1.99800014, -2.52735092e-29}, {-2.55812578e-29, 0, -1.9980154}, {-1.99796772, 0, -nan(0x7fffff)}, {-nan(0x7fffff), -1.99971914, -2.55812578e-29}, {0, -1.99801922, -1.99800444}, {-2.5630375e-29, -1.99801826, -1.99802303}, {-2.56367968e-29, -1.99801826, -1.08538918e-19}, {-2.96026025e-29, 7.70714155e-44, 0}, {0, 0, 1.15491516e-39}, {0, 0, 0}, {0, -1.08536074e-19, 1.24071688e-24}, {-1.99804592, -2.52571268e-29, -1.08536074e-19}, {0, 4.67318812e-28, -2.52605934e-29}, {6.30584309e-44, 6.30584309e-44, -1.99802494}, {-2.5378027e-29, 4.85008969e-35, -1.99804068}, {6.30584309e-44, -2.52605934e-29, -1.09067176e-19}, {0, 4.67318812e-28, -2.52571268e-29}, {-1.09067176e-19, 9.08685216e-23, -2.54427744e-29}, {-2.54538966e-29, 1.12103877e-44, 4.85008969e-35}, {6.30584309e-44, -2.56569348e-29, -1.09047634e-19}, {4.85011552e-35, -1.99802685, -2.57096451e-29}, {-1.09067124e-19, 6.30584309e-44, -1.99803448}, {-2.56567693e-29, 6.30584309e-44, 0}, {-1.99803448, -2.56575096e-29, -1.09047634e-19}, {4.85008969e-35, 6.30584309e-44, -1.99803066}, {1.40129846e-45, 0, -1.99804068}, {-1.09047634e-19, 4.31459797e-42, 0}, {0, 1.14964768e-39, 6.19706458e-22}, {9.08685216e-23, -1.99816608, 1.15020119e-39}, {-1.09047634e-19, 6.30584309e-44, 1.40129846e-45}, {-1.09047634e-19, -0.0843488947, 0.0405835398}, {-1.09047634e-19, 40.3867188, 1.20000005}, {-49.9843521, 42258.3086, 0.000683581166}, {6.936055e-07, 6.88758522e+11, 997.881165}, {1.12895527e+27, 7.15299968e+28, 1.10934292e+27}, {4.85523468e+30, 1.89874267e+28, 7.03922748e+28}, {3.9662891e-11, 2.82309151e+23, 1.8492387e+31}...}
	meshVertices = {{0.288248569, -0.373749614, 0.284559518}, {0.291923106, -0.323055387, 0.313750774}, {0.254351825, -0.284988463, 0.224688053}, {0.249359116, -0.316160738, 0.210369378}, {0.326375604, -0.254405499, 0.156600982}, {0.32138294, -0.285577595, 0.142282307}, {0.387830973, -0.297737479, 0.257301778}, {0.384156346, -0.348431706, 0.228110522}, {0.240146041, -0.233012199, 0.358764857}, {0.15075472, -0.169747651, 0.3744075}, {0.0702499449, -0.266869009, 0.358085304}, {0.183719695, -0.304675817, 0.344347686}, {0.315125942, -0.198717773, 0.343472749}, {0.273750186, -0.113743842, 0.350654393}, {0.401242673, -0.213304341, 0.291592389}, {0.432077169, -0.129241705, 0.259697765}, {0.444379389, -0.272787869, 0.235660285}, {0.585296273, -0.220115423, 0.126073927}, {0.296652913, -0.460405588, 0.197915405}, {0.26879862, -0.509899855, 0.115730315}, {0.481526315, -0.477635056, 0.0329080522}, {0.379739344, -0.425504774, 0.177764654}, {0.218642756, -0.445212603, 0.244937152}, {0.124792531, -0.480129123, 0.206506163}, {0.175506145, -0.385729313, 0.300869316}, {0.0634266138, -0.376922727, 0.294257969}, {0.327283144, -0.34496814, 0.290561646}, {0.432382286, -0.353886485, 0.192985743}, {0.476836741, -0.442856699, 0.0510738194}, {0.456597537, -0.398751199, 0.123337895}, {0.49227038, -0.409876287, 0.0564345419}, {0.522296846, -0.3824476, 0.0480238497}, {0.61712575, -0.350525856, -0.00340929627}, {0.55067122, -0.314571619, 0.0694601238}, {0.495935053, -0.305149138, 0.163097531}, {0.537510633, -0.290731668, 0.100085497}, {0.546028614, -0.260503709, 0.117388338}, {-0.280675203, -0.288500905, 0.183791995}, {-0.277450383, -0.281822443, 0.172662079}, {-0.238056064, -0.327878594, 0.177462995}, {-0.235052556, -0.32122916, 0.169478297}, {-0.207140297, -0.260641158, 0.209758937}, {-0.24359563, -0.23180151, 0.203482389}, {-0.215149492, -0.217944622, 0.215575755}, {-0.189693183, -0.252649516, 0.221395135}, {-0.243754715, -0.234364986, 0.21435219}, {-0.208364367, -0.273405075, 0.205294728}, {-0.251944274, -0.236218929, 0.20119375}, {-0.252103537, -0.238782346, 0.212063491}, {-0.222631246, -0.268575877, 0.205601633}, {-0.266945481, -0.250211507, 0.195716321}, {-0.267104656, -0.252774954, 0.206586063}, {-0.215102226, -0.297833472, 0.17905587}, {-0.264078051, -0.265979886, 0.181265414}, {-0.212967187, -0.297417998, 0.190196812}, {-0.264237255, -0.268543303, 0.192135155}, {0.158001617, -0.604628026, 0.110422671}, {0.192242265, -0.615132332, 0.114111185}, {0.179381415, -0.579142869, 0.125564307}, {0.11759226, -0.56888783, 0.117444456}, {-0.103258505, -0.423747301, 0.16345495}, {-0.113845468, -0.434599489, 0.145408452}, {-0.0719432235, -0.445475399, 0.15898937}, {-0.0903583765, -0.406728268, 0.161607802}, {-0.101744711, -0.419684589, 0.150778115}, {-0.164155602, -0.363433361, 0.163586795}, {-0.151003033, -0.347055018, 0.168455064}, {-0.140319467, -0.335022211, 0.178916514}, {-0.180558145, -0.327518165, 0.173515081}, {-0.19458133, -0.341902912, 0.167907}, {-0.235052556, -0.32122916, 0.169478297}, {-0.208383888, -0.32041654, 0.173001349}, {-0.168609411, -0.314155698, 0.184569657}, {-0.215102226, -0.297833472, 0.17905587}, {-0.180275053, -0.330584943, 0.186767399}, {-0.153499141, -0.352731049, 0.180514991}, {-0.317433804, -0.225412369, 0.192364216}, {-0.264237255, -0.268543303, 0.192135155}, {-0.264078051, -0.265979886, 0.181265414}, {-0.334700108, -0.246174037, 0.182750702}, {-0.277450383, -0.281822443, 0.172662079}, {-0.280675203, -0.288500905, 0.183791995}, {-0.328128129, -0.241195321, 0.201892793}, {-0.273143023, -0.280910492, 0.194797695}, {-0.325457543, -0.233014286, 0.177061379}, {-0.360590965, -0.22098577, 0.186789095}, {-0.354421198, -0.211907268, 0.18258512}, {-0.348776013, -0.206726313, 0.19317925}, {-0.378979743, -0.221900403, 0.182682633}, {-0.363795608, -0.199705243, 0.17256093}, {-0.350133806, -0.186906636, 0.196528196}, {-0.35603705, -0.217771411, 0.199796021}, {-0.271155, -0.273695052, 0.173621118}, {-0.273143023, -0.280910492, 0.194797695}, {-0.209578007, -0.324750841, 0.185722053}, {-0.212967187, -0.297417998, 0.190196812}, {-0.238056064, -0.327878594, 0.177462995}, {-0.208383888, -0.32041654, 0.173001349}, {-0.271155, -0.273695052, 0.173621118}, {-0.209578007, -0.324750841, 0.185722053}, {-0.238056064, -0.327878594, 0.177462995}, {-0.397114903, -0.184435546, 0.199428201}, {-0.368121773, -0.214475483, 0.214337647}, {0.20368126, -0.248508438, 0.0464673191}, {-0.239555776, -0.268744081, 0.0516827554}, {-0.250703663, -0.189433277, 0.0249301791}, {0.174734056, -0.186010748, 0.168079048}, {-0.226073384, -0.169559866, 0.149222717}, {0.160510212, -0.259517103, 0.141349897}, {0.247994706, -0.299953967, 0.177049518}, {0.261736006, -0.256619871, 0.160003811}, {0.174734056, -0.186010748, 0.168079048}, {-0.322313517, -0.224248737, 0.13081485}, {-0.318245947, -0.268621266, 0.167232096}, {-0.221969068, -0.248857856, 0.153087243}, {-0.226073384, -0.169559866, 0.149222717}, {0.174191266, -0.282735288, 0.088555485}, {0.273091048, -0.308146536, 0.151672304}, {-0.338033468, -0.28560999, 0.148110375}, {-0.22806257, -0.288178384, 0.109152384}, {0.20368126, -0.248508438, 0.0464673191}, {0.308216304, -0.269742399, 0.116636232}, {-0.359917521, -0.251998127, 0.0975975469}, {-0.239555776, -0.268744081, 0.0516827554}, {0.283576608, -0.267182708, 0.196512446}, {0.247180104, -0.28074947, 0.195607424}, {-0.316066682, -0.24812749, 0.178710371}, {-0.348254144, -0.237108111, 0.18201831}, {0.324168354, -0.241504654, 0.147382244}, {-0.378919721, -0.212563157, 0.124614626}, {0.253632396, -0.268241763, 0.147556394}, {0.127058625, -0.139440075, 0.0390071794}, {0.211804658, -0.155906558, 0.033314988}, {0.300660968, -0.249255791, 0.110345483}, {-0.255146444, -0.134690285, 0.0164600313}, {-0.169201374, -0.128623292, 0.0277894568}, {-0.316821694, -0.23463349, 0.120461166}, {-0.354935825, -0.218445346, 0.0784492344}, {0.325740278, -0.239484027, 0.107326292}, {0.264267445, -0.124877334, 0.0611932725}, {0.254035622, -0.072344698, 0.144664317}, {-0.293195575, -0.0488214493, 0.127563298}, {-0.305195183, -0.0986232162, 0.0426640213}, {-0.376762927, -0.210357696, 0.0763047859}, {0.106989987, -0.116880648, 0.14483279}, {0.127058625, -0.139440075, 0.0390071794}, {0.253632396, -0.268241763, 0.147556394}, {-0.169201374, -0.128623292, 0.0277894568}, {-0.150589421, -0.10963539, 0.134909987}, {-0.316821694, -0.23463349, 0.120461166}, {0.183677018, -0.0776212215, 0.172799677}, {-0.223804176, -0.0631212816, 0.161501288}, {0.0760473907, 0.0747092664, 0.00190671021}, {0.131155074, 0.0744762942, 0.02292482}, {-0.158781707, 0.0809199437, 0.0192970224}, {-0.106278658, 0.0791325197, -0.00451601529}, {0.00838877261, 0.0318947211, 0.0232422836}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.0384510532, 0.0338890925, 0.0214747563}, {0.00838877261, 0.0318947211, 0.0232422836}, {0.0198911801, -0.0745621175, 0.0339680612}, {-0.0166422706, -0.0830008909, 0.0390940309}, {-0.00429436518, 0.0229421183, 0.0201379247}, {-0.0166422706, -0.0830008909, 0.0390940309}, {-0.0499522313, -0.0727664828, 0.0348907858}, {-0.0384510532, 0.0338890925, 0.0214747563}, {-0.00429436518, 0.0229421183, 0.0201379247}, {0.0639331713, -0.0522927344, 0.216022909}, {0.0889037848, -0.0582064018, 0.159294277}, {-0.0946161523, -0.0520683825, 0.21647203}, {-0.122545719, -0.0568443909, 0.15781191}, {-0.0153882522, -0.0842988044, 0.215785563}, {-0.0165412892, -0.0894722566, 0.133162871}, {-0.0153882522, -0.0842988044, 0.215785563}, {-0.0165412892, -0.0894722566, 0.133162871}, {0.166799918, 0.0511736982, 0.11733041}, {0.130355716, -0.0192640703, 0.160717621}, {0.21529603, -0.14346464, 0.113479555}, {0.298435628, -0.225367665, 0.12241818}, {0.321798325, -0.229360342, 0.0967535749}, {0.23109889, -0.169011742, 0.054130435}, {-0.345971107, -0.199774727, 0.081488654}, {-0.363577008, -0.212409854, 0.0602890253}, {-0.243566751, -0.145790651, 0.0746201277}, {-0.250703663, -0.189433277, 0.0249301791}, {0.261736006, -0.256619871, 0.160003811}, {-0.322313517, -0.224248737, 0.13081485}, {-0.226073384, -0.169559866, 0.149222717}, {0.174734056, -0.186010748, 0.168079048}, {0.0773368105, -0.0925473645, 0.112180293}, {0.0527539738, -0.0376668721, 0.0384255499}, {0.145240009, -0.0318122804, 0.163464054}, {0.186762869, 0.0346389599, 0.103738636}, {-0.212825984, 0.0496078581, 0.0939726233}, {-0.187832952, 0.0628225952, 0.105229184}, {0.0527539738, -0.0376668721, 0.0384255499}, {-0.0908276513, -0.0324274972, 0.0319492705}, {-0.117985666, -0.089049004, 0.111294337}, {-0.0908276513, -0.0324274972, 0.0319492705}...}
	meshNormals = {{-0.918263316, -0.090695776, 0.385443926}, {-0.932194114, -0.127494618, 0.33876127}, {-0.994276643, 0.0787999332, 0.0721425638}, {-0.915266931, 0.279736429, -0.289886385}, {-0.289172173, 0.437427312, -0.851490974}, {0.511792719, 0.345444858, -0.786597848}, {0.86298126, 0.14874506, -0.482843846}, {0.856028736, 0.209966734, -0.472365111}, {0.166624561, -0.2158546, 0.962103426}, {0.137679324, -0.0542173721, 0.988991916}, {0.00509247091, -0.310287595, 0.950629115}, {0.0636309683, -0.412956297, 0.908525348}, {0.348153979, -0.0712310448, 0.934727252}, {0.413854122, 0.113559045, 0.903232694}, {0.582435846, -0.0617306232, 0.81052947}, {0.643571436, 0.00764911342, 0.765347898}, {0.649813056, -0.290719658, 0.702299833}, {0.720407307, -0.42939797, 0.544638216}, {0.319332898, -0.755475521, 0.572086751}, {0.180473715, -0.86804837, 0.462516189}, {0.482049346, -0.693668008, 0.535213292}, {0.541088641, -0.583945096, 0.605170429}, {0.147418842, -0.747963607, 0.647161663}, {-0.00165638584, -0.758214235, 0.652003467}, {0.0363344215, -0.589958131, 0.806615889}, {-0.0825216398, -0.550136089, 0.830987632}, {0.392691493, -0.468584925, 0.791341603}, {0.62433666, -0.471841425, 0.622550666}, {0.721514761, -0.444278479, 0.531067908}, {0.637115657, -0.603383422, 0.47959581}, {0.717880428, -0.515015185, 0.468409151}, {0.54383868, -0.781729281, 0.30518657}, {0.619866431, -0.627464533, 0.471226007}, {0.790347278, -0.239806965, 0.563776374}, {0.751506329, -0.427729547, 0.502280593}, {0.821158648, -0.328499407, 0.466675997}, {0.762614906, -0.594368875, 0.255233794}, {-0.248408958, 0.860664904, 0.444464803}, {-0.248408958, 0.860664904, 0.444464803}, {0.256895632, 0.123996302, 0.958451688}, {0.0917310044, -0.781887293, -0.61663413}, {0.30691275, 0.1847637, -0.933631003}, {0.30691275, 0.1847637, -0.933631003}, {0.30691275, 0.1847637, -0.933631003}, {0.476001054, 0.205774024, -0.855032146}, {-0.284760058, -0.535747707, 0.794912636}, {0.199423999, 0.126547053, -0.971707702}, {0.199423999, 0.126547053, -0.971707702}, {-0.106870085, -0.319105268, 0.941674352}, {0.25643149, 0.101359621, -0.961233139}, {0.25643149, 0.101359621, -0.961233139}, {0.00892678834, -0.0371251516, 0.999270797}, {0.399076432, 0.657890618, -0.638684571}, {0.399076432, 0.657890618, -0.638684571}, {0.897094965, 0.400384158, -0.186850458}, {-0.263096124, -0.521630585, 0.811592281}, {-0.39778924, -0.801143587, 0.44713828}, {-0.294243068, -0.752025068, 0.589812994}, {-0.106509566, -0.335884124, 0.935861945}, {0.163533956, 0.373370528, -0.913154542}, {-0.375413209, -0.680393815, 0.629388034}, {-0.375413209, -0.680393815, 0.629388034}, {-0.383918107, -0.681384981, 0.623154461}, {0.141368568, 0.000290423981, 0.989956975}, {0.0657614991, 0.290340841, -0.954661012}, {0.0657614991, 0.290340841, -0.954661012}, {0.0350981578, 0.25874421, -0.965308011}, {0.332018107, 0.433547497, -0.837735474}, {0.102376617, 0.273108751, -0.956520081}, {0.102376617, 0.273108751, -0.956520081}, {0.0917310044, -0.781887293, -0.61663413}, {0.110802442, 0.36733672, -0.923464477}, {0.154148445, 0.544330895, -0.824586034}, {0.399076432, 0.657890618, -0.638684571}, {-0.365072638, -0.649695098, 0.666796982}, {-0.385511696, -0.650777221, 0.654117525}, {0.618947029, 0.762388647, 0.188859686}, {-0.263096124, -0.521630585, 0.811592281}, {0.399076432, 0.657890618, -0.638684571}, {-0.509971678, -0.66435796, -0.546404064}, {-0.248408958, 0.860664904, 0.444464803}, {-0.248408958, 0.860664904, 0.444464803}, {-0.573774159, -0.722877204, 0.385008782}, {-0.366407603, -0.629663706, 0.685032308}, {-0.318843305, -0.178496242, -0.930848002}, {-0.318843305, -0.178496242, -0.930848002}, {-0.325935364, -0.205780759, -0.922724485}, {0.410618931, 0.713492692, -0.567732513}, {0.210297585, -0.524860024, -0.824801087}, {0.208411247, -0.520257294, -0.828189015}, {0.822717309, 0.149052203, -0.548561573}, {-0.612014711, -0.690808833, 0.384995252}, {-0.0681526437, 0.168820024, -0.983287871}, {-0.366407603, -0.629663706, 0.685032308}, {-0.198720291, -0.466547757, 0.86188364}, {0.897094965, 0.400384158, -0.186850458}, {0.256895632, 0.123996302, 0.958451688}, {0.110802442, 0.36733672, -0.923464477}, {-0.0681526437, 0.168820024, -0.983287871}, {-0.198720291, -0.466547757, 0.86188364}, {0.256895632, 0.123996302, 0.958451688}, {-0.752264559, -0.53562516, 0.383671343}, {-0.752264559, -0.53562516, 0.383671343}, {0.258716315, -0.305558085, -0.916351497}, {-0.105572961, -0.590180457, -0.800338268}, {-0.202219114, 0.26062876, -0.94402343}, {-0.247573495, 0.352986485, 0.902279317}, {0.108051911, 0.630003214, 0.769038856}, {-0.508972943, -0.541016757, 0.669512808}, {-0.605037272, -0.488776475, 0.628512084}, {-0.668694198, 0.0467143841, 0.742068589}, {-0.247573495, 0.352986485, 0.902279317}, {0.572644651, 0.333053023, 0.749101996}, {0.403900206, -0.380528897, 0.831902921}, {0.221496001, -0.31061098, 0.924370289}, {0.108051911, 0.630003214, 0.769038856}, {-0.239093751, -0.917279482, -0.318484813}, {-0.239908859, -0.95295912, 0.185236454}, {0.0619415417, -0.852296948, 0.519377649}, {0.106484868, -0.991149247, 0.0792732909}, {0.258716315, -0.305558085, -0.916351497}, {0.697832704, -0.0696809739, -0.712863326}, {-0.618373454, -0.341684967, -0.707718611}, {-0.105572961, -0.590180457, -0.800338268}, {0.0736589879, -0.412221432, 0.908101261}, {-0.666272581, -0.504522681, 0.549124599}, {0.542199969, -0.50812149, 0.669202268}, {-0.143211409, -0.377109975, 0.915029287}, {0.923426926, 0.345045388, -0.168007091}, {-0.928992867, 0.331548721, -0.164461777}, {-0.908182561, -0.418463379, -0.00963996444}, {-0.744566441, -0.495628059, -0.447184086}, {0.0322345383, -0.275537014, -0.960749865}, {0.10300754, 0.356346101, -0.928658605}, {-0.0176478438, -0.255809963, -0.966566026}, {0.708266258, -0.562568426, -0.426468909}, {0.908110797, -0.413197249, -0.067843616}, {0.0118864262, 0.322940528, -0.946344614}, {0.642841637, 0.453453809, -0.617360711}, {0.74616003, 0.250582367, -0.616809309}, {0.839440823, 0.490857601, 0.233233646}, {-0.794570565, 0.572020888, 0.203592211}, {-0.68615973, 0.339176655, -0.643540144}, {-0.5079391, 0.444442332, -0.737881303}, {-0.660915315, -0.53439194, 0.5268929}, {-0.744566441, -0.495628059, -0.447184086}, {-0.908182561, -0.418463379, -0.00963996444}, {0.708266258, -0.562568426, -0.426468909}, {0.58359766, -0.600066483, 0.547114193}, {0.908110797, -0.413197249, -0.067843616}, {0.309037805, -0.00439280458, 0.951039612}, {-0.34349671, 0.0197847337, 0.938945472}, {-0.106730454, 0.742509305, -0.66127795}, {0.758412957, 0.58809787, -0.28098157}, {-0.731992066, 0.623958707, -0.273611367}, {0.125198454, 0.765506089, -0.631130517}, {-0.480226815, -0.0356288366, -0.876420498}, {0.0751209483, -0.106911838, -0.991426587}, {0.0751209483, -0.106911838, -0.991426587}, {0.461273521, -0.0204655342, -0.887021899}, {-0.480226815, -0.0356288366, -0.876420498}, {-0.2980946, -0.90474236, -0.304271162}, {-0.0254055299, -0.966650069, -0.254837394}, {0.0751209483, -0.106911838, -0.991426587}, {-0.0254055299, -0.966650069, -0.254837394}, {0.558998525, -0.786931574, -0.261264801}, {0.461273521, -0.0204655342, -0.887021899}, {0.0751209483, -0.106911838, -0.991426587}, {0.588344216, -0.759758651, 0.276799172}, {0.527151585, -0.79136163, 0.309609175}, {-0.588914335, -0.75809288, 0.280134022}, {-0.552049458, -0.778872192, 0.297656864}, {-0.000642185623, -0.966635346, 0.256155491}, {-0.010131686, -0.993482351, 0.113535389}, {-0.000642185623, -0.966635346, 0.256155491}, {-0.010131686, -0.993482351, 0.113535389}, {0.878371477, 0.386125565, 0.281727999}, {0.52676487, -0.0602078363, 0.847876012}, {0.221872091, 0.952317894, 0.209436312}, {0.362474471, 0.907845736, -0.210780561}, {0.647690833, 0.489048541, -0.584232926}, {0.490381271, 0.505378127, -0.710013509}, {-0.163927987, 0.82835865, -0.535676718}, {-0.455126286, 0.403671533, -0.793668211}, {-0.0583808646, 0.981160164, -0.184164003}, {-0.202219114, 0.26062876, -0.94402343}, {-0.668694198, 0.0467143841, 0.742068589}, {0.572644651, 0.333053023, 0.749101996}, {0.108051911, 0.630003214, 0.769038856}, {-0.247573495, 0.352986485, 0.902279317}, {-0.627381206, -0.680930912, 0.377790838}, {-0.83148694, -0.349257797, -0.432028353}, {0.448921531, -0.0388335213, 0.892726958}, {0.871816635, 0.419923753, 0.252189964}, {-0.847283423, 0.490570009, 0.203597128}, {-0.862744153, 0.462820679, 0.203640997}, {-0.83148694, -0.349257797, -0.432028353}, {0.820173025, -0.443646997, -0.361238778}, {0.540391862, -0.736500621, 0.406870216}, {0.820173025, -0.443646997, -0.361238778}...}
	meshTextureCoordinates = {{0.60927701, 0.674775004}, {0.63494885, 0.697785854}, {0.643131852, 0.687360048}, {0.617460012, 0.66434902}, {0.679971874, 0.641009748}, {0.654300094, 0.617998838}, {0.691645384, 0.627020597}, {0.665973485, 0.604009688}, {0.508662105, 0.660959005}, {0.48456043, 0.698984981}, {0.426133603, 0.668831766}, {0.467095435, 0.637492716}, {0.551756918, 0.658460438}, {0.555045724, 0.695287049}, {0.59090358, 0.624363363}, {0.629481852, 0.638133168}, {0.600164771, 0.578279674}, {0.686687529, 0.539891899}, {0.491342008, 0.516844213}, {0.475133777, 0.472877502}, {0.584726989, 0.428863734}, {0.538632452, 0.511829257}, {0.456391096, 0.5484249}, {0.410639793, 0.533227265}, {0.447129726, 0.594508469}, {0.401414275, 0.608207047}, {0.524741709, 0.587110639}, {0.578457952, 0.536015868}, {0.589776814, 0.448086262}, {0.584743917, 0.492167264}, {0.604464233, 0.459647924}, {0.625515342, 0.462542772}, {0.680457354, 0.443666726}, {0.653165579, 0.490544617}, {0.621881723, 0.534494519}, {0.650375783, 0.511539996}, {0.660076499, 0.527332544}, {0.942124009, 0.505708218}, {0.937600672, 0.501375437}, {0.927539825, 0.547177076}, {0.922370732, 0.541250527}, {0.836323082, 0.457952291}, {0.855338812, 0.434741408}, {0.822839022, 0.42715168}, {0.812837362, 0.471305698}, {0.853551745, 0.433029592}, {0.846040666, 0.479761302}, {0.869909525, 0.442359626}, {0.868122518, 0.44064787}, {0.863194942, 0.471640885}, {0.889075756, 0.454893619}, {0.887288868, 0.453181803}, {0.879600644, 0.501256347}, {0.908177137, 0.473190725}, {0.873000324, 0.494933873}, {0.906390131, 0.471478939}, {0.987551808, 0.653175473}, {0.991873264, 0.684964061}, {0.96476233, 0.692162991}, {0.936709464, 0.638965011}, {0.861688912, 0.574463069}, {0.877007246, 0.54784435}, {0.890385091, 0.600724578}, {0.846691728, 0.601771832}, {0.861995339, 0.574708402}, {0.82324177, 0.504160881}, {0.809276938, 0.527422071}, {0.793763757, 0.557188272}, {0.783535719, 0.4989416}, {0.796823263, 0.482540607}, {0.729058862, 0.427618623}, {0.719944119, 0.44420284}, {0.767467022, 0.532156944}, {0.704647422, 0.468543231}, {0.782311201, 0.501701176}, {0.810644925, 0.524792969}, {0.780128419, 0.656654239}, {0.825517535, 0.606527209}, {0.823319554, 0.604421794}, {0.735272646, 0.613985658}, {0.787128508, 0.569754601}, {0.781564772, 0.56442523}, {0.755397499, 0.63352114}, {0.803425789, 0.585365653}, {0.75579679, 0.632977724}, {0.723309159, 0.639314115}, {0.738048553, 0.653432906}, {0.75499481, 0.669665575}, {0.7005741, 0.65212971}, {0.723660827, 0.674164653}, {0.749471962, 0.698807478}, {0.738048553, 0.653432906}, {0.803425789, 0.585365653}, {0.924350917, 0.488683462}, {0.900885999, 0.520607054}, {0.700897813, 0.475010276}, {0.72874707, 0.428727686}, {0.900885999, 0.520607054}, {0.924350917, 0.488683462}, {0.719944119, 0.44420284}, {0.729530632, 0.428727686}, {0.699304998, 0.69816196}, {0.723003387, 0.67353493}, {0.159613356, 0.306679517}, {0.159613356, 0.306679517}, {0.109117307, 0.306197584}, {0.288415015, 0.30658868}, {0.288415015, 0.30658868}, {0.405158162, 0.00296969339}, {0.399437338, 0.0703467354}, {0.342450947, 0.0665658265}, {0.340975046, 0.00471316464}, {0.342451304, 0.0666073337}, {0.399425507, 0.0703921393}, {0.405136466, 0.00296969339}, {0.340975046, 0.00471315719}, {0.440390468, 0.00296963193}, {0.432024419, 0.0716365799}, {0.432047635, 0.0716831163}, {0.440422833, 0.00296963006}, {0.472802907, 0.00296895392}, {0.466499418, 0.0704143494}, {0.466580987, 0.0704696327}, {0.472878128, 0.00296895206}, {0.431395888, 0.107315928}, {0.399764568, 0.104913637}, {0.399748176, 0.104999274}, {0.431403607, 0.107406147}, {0.467226863, 0.10302674}, {0.467285275, 0.103127055}, {0.601212144, 0.0936975703}, {0.601213694, 0.162510246}, {0.561338961, 0.148308381}, {0.544946611, 0.0831657872}, {0.561435103, 0.148621097}, {0.601213694, 0.162936509}, {0.601212144, 0.0938523039}, {0.545129061, 0.0832766816}, {0.515193224, 0.0795534477}, {0.514696956, 0.145319447}, {0.46946907, 0.166635096}, {0.469420224, 0.166802436}, {0.514700711, 0.145546645}, {0.515313685, 0.0796511248}, {0.401132405, 0.184006721}, {0.338616639, 0.152805269}, {0.340492278, 0.094302766}, {0.338616639, 0.152912006}, {0.401138306, 0.184192225}, {0.340492278, 0.0943811685}, {0.434482008, 0.18458268}, {0.434448004, 0.184742093}, {0.571702957, 0.201674461}, {0.531808555, 0.218363613}, {0.531428158, 0.218489632}, {0.571702778, 0.201674268}, {0.598225176, 0.211373255}, {0.597217202, 0.21524404}, {0.597329259, 0.216072664}, {0.598329008, 0.212141111}, {0.354110539, 0.216703027}, {0.388392776, 0.231839865}, {0.382812798, 0.231815532}, {0.353525966, 0.21906513}, {0.382800817, 0.231838152}, {0.388392776, 0.231839925}, {0.354288042, 0.216611505}, {0.35367921, 0.218978509}, {0.416987032, 0.310629755}, {0.42151165, 0.274316221}, {0.417668998, 0.310629755}, {0.421768486, 0.274316221}, {0.37003845, 0.311240762}, {0.369638532, 0.274927258}, {0.370746315, 0.311240822}, {0.369834512, 0.274927318}, {0.471586198, 0.238707408}, {0.43122074, 0.230868012}, {0.55812782, 0.00418947171}, {0.553476214, 0.0625336319}, {0.508062363, 0.0644382313}, {0.518134117, 0.00663091196}, {0.553665221, 0.0625954792}, {0.508188367, 0.0644892454}, {0.558331311, 0.00418946985}, {0.518261671, 0.00663090823}, {0.601211607, 0.0621125586}, {0.601211667, 0.0621945448}, {0.600235105, 0.00296844356}, {0.600235105, 0.00296844356}, {0.394356698, 0.213808268}, {0.354006588, 0.211723596}, {0.429150075, 0.212830126}, {0.471183062, 0.220303923}, {0.471048355, 0.220516413}, {0.471515805, 0.238999471}, {0.600332618, 0.206166223}, {0.60065037, 0.206767365}, {0.394441426, 0.214069307}, {0.354006588, 0.211830765}...}
	meshFaces = {{0, 1, 2}, {3, 0, 2}, {3, 2, 4}, {4, 5, 3}, {5, 4, 6}, {6, 7, 5}, {8, 9, 10}, {10, 11, 8}, {12, 13, 9}, {9, 8, 12}, {14, 15, 13}, {13, 12, 14}, {16, 17, 15}, {15, 14, 16}, {18, 19, 20}, {20, 21, 18}, {22, 23, 19}, {19, 18, 22}, {24, 25, 23}, {23, 22, 24}, {11, 10, 25}, {25, 24, 11}, {26, 8, 11}, {26, 12, 8}, {26, 14, 12}, {26, 16, 14}, {26, 18, 21}, {26, 22, 18}, {26, 24, 22}, {26, 11, 24}, {21, 27, 26}, {27, 16, 26}, {20, 28, 29}, {20, 29, 21}, {28, 30, 29}, {21, 29, 27}, {31, 32, 29}, {30, 31, 29}, {29, 32, 27}, {32, 33, 34}, {32, 34, 27}, {33, 35, 34}, {36, 17, 34}, {35, 36, 34}, {34, 16, 27}, {34, 17, 16}, {45, 41, 44}, {44, 43, 45}, {42, 45, 43}, {46, 47, 42}, {42, 41, 46}, {48, 46, 41}, {41, 45, 48}, {47, 48, 45}, {45, 42, 47}, {49, 50, 47}, {47, 46, 49}, {51, 49, 46}, {46, 48, 51}, {50, 51, 48}, {48, 47, 50}, {52, 53, 50}, {50, 49, 52}, {54, 52, 49}, {55, 54, 49}, {49, 51, 55}, {53, 55, 51}, {51, 50, 53}, {14, 13, 56}, {56, 57, 14}, {16, 14, 57}, {57, 58, 16}, {13, 12, 59}, {12, 20, 59}, {16, 59, 20}, {20, 17, 16}, {60, 61, 22}, {22, 62, 60}, {63, 60, 62}, {62, 24, 63}, {64, 61, 65}, {65, 66, 64}, {63, 64, 66}, {66, 67, 63}, {68, 69, 70}, {70, 71, 68}, {72, 68, 71}, {71, 73, 72}, {74, 69, 65}, {65, 75, 74}, {72, 74, 75}, {75, 67, 72}, {66, 65, 69}, {69, 68, 66}, {67, 66, 68}, {68, 72, 67}, {75, 65, 61}, {61, 60, 75}, {67, 75, 60}, {60, 63, 67}, {23, 22, 61}, {61, 64, 23}, {24, 23, 64}, {64, 63, 24}, {62, 22, 18}, {18, 25, 62}, {24, 62, 25}, {25, 21, 24}, {57, 56, 13}, {13, 59, 57}, {58, 57, 59}, {59, 16, 58}, {76, 77, 78}, {79, 80, 81}, {82, 79, 81}, {81, 83, 82}, {76, 82, 83}, {83, 77, 76}, {84, 79, 85}, {85, 86, 84}, {76, 84, 86}, {86, 87, 76}, {86, 85, 88}, {88, 89, 86}, {87, 86, 89}, {89, 90, 87}, {91, 85, 79}, {79, 82, 91}, {87, 91, 82}, {82, 76, 87}, {92, 80, 79}, {79, 84, 92}, {78, 92, 84}, {84, 76, 78}, {93, 37, 39}, {39, 94, 93}, {55, 93, 94}, {94, 54, 55}, {73, 95, 72}, {96, 70, 69}, {97, 40, 38}, {38, 98, 97}, {52, 97, 98}, {98, 53, 52}, {99, 100, 69}, {69, 74, 99}, {95, 99, 74}, {74, 72, 95}, {101, 88, 102}, {90, 101, 102}, {89, 88, 101}, {90, 89, 101}, {102, 88, 85}, {85, 91, 102}, {90, 102, 91}, {91, 87, 90}, {147, 148, 126}, {147, 126, 149}, {124, 150, 144}, {124, 144, 125}, {148, 151, 127}, {148, 127, 126}, {128, 140, 150}, {128, 150, 124}, {151, 141, 129}, {151, 129, 127}, {132, 152, 153}, {132, 153, 139}, {154, 155, 134}, {154, 134, 142}, {156, 157, 29}, {156, 29, 24}, {31, 158, 159}, {31, 159, 26}, {160, 161, 162}, {160, 162, 163}, {164, 165, 166}, {164, 166, 167}, {16, 19, 168}, {16, 168, 169}, {170, 21, 20}, {170, 20, 171}, {169, 168, 172}, {169, 172, 173}, {174, 170, 171}, {174, 171, 175}, {176, 16, 169}, {176, 169, 177}, {178, 179, 180}, {178, 180, 181}, {179, 133, 138}, {179, 138, 180}, {137, 182, 183}, {137, 183, 143}, {182, 184, 185}, {182, 185, 183}, {128, 121, 180}, {128, 180, 138}, {130, 133, 179}, {130, 179, 186}...}
	skel = (class CalSkeleton *) 0x1cff8b10
	_mesh = (class CalMesh *) 0x0
	_coremesh = (class CalCoreMesh *) 0x0
	_weaponmesh = (class CalCoreMesh *) 0x3f800000
	_shieldmesh = (class CalCoreMesh *) 0x0
	reverse_scale = 40.25
#5  0x0008e945 in draw_enhanced_actor (actor_id=0x17b98c00, banner=1) at new_actors.c:271
	x_pos = 40
	y_pos = 50
	z_pos = 0
	x_rot = 0
	y_rot = 0
	z_rot = 90.0000305
	healthbar_z = 1.53830409
#6  0x00015c32 in display_actors (banner=1, reflections=0) at actors.c:732
	cur_actor = (actor *) 0x17b98c00
	i = 24
	x = 41
	y = 47
	has_ghosts = 0
#7  0x0005a574 in display_game_handler (win=0x698da00) at gamewin.c:985
	main_count = 45774
	times_FPS_below_3 = 0
	fps = {20, 20, 19, 20, 20}
	shadows_were_disabled = 0
	eye_candy_was_disabled = 0
	str = "\000\000\000\000\000\000\000\000\000\000?\000\000\000\000Èàá\022¹Ôá\022\001\000\000\000(èÿ¿IÕá\022 \000|\005\000\000\000\000\000\000\000\000\000\000?D\006Dèÿ¿\031\000\000\000\001\000\000\000 \000|\005\004\000\000\000 \000|\005Õ-²Éä\022\f ²¢Hèÿ¿j\033ä\022 \000|\005\000\000\000\000\001\000\000\000¦Ùä\022Ð)|\005Pèÿ¿xèÿ¿\032.² \000|\005á\r\000\000ùøø=\000\000\000\000¾¾¾>   >èÿ¿±T² \000|\005\000\000?\000\000?\000\000?"
	i = 0
	any_reflection = 0
	mouse_rate = 1
#8  0x0004a409 in draw_window (win=0x698da00) at elwindows.c:1137
	ret_val = 0
	W = (widget_list *) 0x0
#9  0x0004acc8 in display_window (win_id=0) at elwindows.c:1307
No locals.
#10 0x00047334 in display_windows (level=1) at elwindows.c:75
	id = -1
	next_id = -9999
	i = 0
#11 0x0003df6f in draw_scene () at draw_scene.c:116
No locals.
#12 0x000839be in start_rendering () at main.c:168
	event = {
 type = 24 '\030', 
 active = {
type = 24 '\030', 
gain = 238 'î', 
state = 38 '&'
 }, 
 key = {
type = 24 '\030', 
which = 238 'î', 
state = 38 '&', 
keysym = {
  scancode = 3 '\003', 
  sym = 90037840, 
  mod = KMOD_NONE, 
  unicode = 4692
}
 }, 
 motion = {
type = 24 '\030', 
which = 238 'î', 
state = 38 '&', 
x = 3, 
y = 0, 
xrel = -8624, 
yrel = 1373
 }, 
 button = {
type = 24 '\030', 
which = 238 'î', 
button = 38 '&', 
state = 176 '°', 
x = 3, 
y = 0
 }, 
 jaxis = {
type = 24 '\030', 
which = 238 'î', 
axis = 38 '&', 
value = 3
 }, 
 jball = {
type = 24 '\030', 
which = 238 'î', 
ball = 38 '&', 
xrel = 3, 
yrel = 0
 }, 
 jhat = {
type = 24 '\030', 
which = 238 'î', 
hat = 38 '&', 
value = 176 '°'
 }, 
 jbutton = {
type = 24 '\030', 
which = 238 'î', 
button = 38 '&', 
state = 176 '°'
 }, 
 resize = {
type = 24 '\030', 
w = 3, 
h = 90037840
 }, 
 expose = {
type = 24 '\030'
 }, 
 quit = {
type = 24 '\030'
 }, 
 user = {
type = 24 '\030', 
code = 3, 
data1 = 0x55dde50, 
data2 = 0x0
 }, 
 syswm = {
type = 24 '\030', 
msg = 0x3
 }
}
	done = 0
	network_thread_data = {0x1ada23c0, 0x3803d8}
	network_thread = (struct SDL_Thread *) 0x179dec00
	message_queue = (queue_t *) 0x1ada23c0
#13 0x00083d8b in SDL_main (argc=1, argv=0x5507040) at main.c:290
No locals.
#14 0x0019cdf8 in -[SDLMain applicationDidFinishLaunching:] (self=0x551ef80, _cmd=0x1afb40, note=0x5508a70) at SDLmain.m:197
	status = -1868196602
#15 0x927ed17b in _nsnote_callback ()
No symbol table info available.
#16 0x908563e6 in __CFXNotificationPost ()
No symbol table info available.
#17 0x9084dbd1 in _CFXNotificationPostNotification ()
No symbol table info available.
#18 0x927e5724 in -[NSNotificationCenter postNotificationName:object:userInfo:] ()
No symbol table info available.
#19 0x927ec6c9 in -[NSNotificationCenter postNotificationName:object:] ()
No symbol table info available.
#20 0x93295e94 in -[NSApplication _postDidFinishNotification] ()
No symbol table info available.
#21 0x93295d7e in -[NSApplication _sendFinishLaunchingNotification] ()
No symbol table info available.
#22 0x9329587d in -[NSApplication(NSAppleEventHandling) _handleAEOpen:] ()
No symbol table info available.
#23 0x93295448 in -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] ()
No symbol table info available.
#24 0x927f2e65 in -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] ()
No symbol table info available.
#25 0x927f2c8f in _NSAppleEventManagerGenericHandler ()
No symbol table info available.
#26 0x915236c5 in aeDispatchAppleEvent ()
No symbol table info available.
#27 0x915235f6 in dispatchEventAndSendReply ()
No symbol table info available.
#28 0x915234c2 in aeProcessAppleEvent ()
No symbol table info available.
#29 0x92df00e4 in AEProcessAppleEvent ()
No symbol table info available.
#30 0x9329363d in _DPSNextEvent ()
No symbol table info available.
#31 0x93293056 in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] ()
No symbol table info available.
#32 0x9328cddb in -[NSApplication run] ()
No symbol table info available.
#33 0x0019cd7c in CustomApplicationMain (argc=1, argv=-1073744328) at SDLmain.m:175
	pool = (class NSAutoreleasePool *) 0x55073a0
	sdlMain = (class SDLMain *) 0x551ef80
#34 0x0019d0c2 in main (argc=1, argv=0xbffff638) at SDLmain.m:276
	i = 1
Current language:  auto; currently c++

 

/EDIT

I think I can reproduce it: rotate the camera while others are fighting

Share this post


Link to post
Share on other sites

I don't think anybody looked at this one:

Do you have DYNAMIC_ANIMATIONS defined? I'm probably wrong, because the code has changed for other reasons, but it looks like that cal3d call is only made around there if you use DYNAMIC_ANIMATIONS. I don't believe the release client is using that option. The crash is similar to this one I reported a while ago but your stack trace is much better than mine :)

Share this post


Link to post
Share on other sites

Do we have any other crashes now?

I'm still trying to investigate two issues.

1) A crash changing map in Southern Redmoon Mines. It appears I'm the only one with this problem.

2) Graphic corruption and eventual crashing after changing resolution. This one has been reported by others here and else where but I can't find the postings ATM. I suspect both may be related to my graphics (NVIDIA) so I'm just about to do some tests on my daughters machine with Intel graphics.

Share this post


Link to post
Share on other sites

Roja had the resolution change bug as well.

Not sure what is the problem, but for the time being we can ignore it until after the update, because it doesn't happen often (how many times do you change the resolution during gameplay?).

The DYNAMIC_ANIMATIONS was causing problems even before this update, which is why the official client had it disabled.

 

What exactly does it do anyway? Is it worth keeping?

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.

  • Recently Browsing   0 members

    No registered users viewing this page.

×