Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Kinou

Pages: [1]
1
Mac OSX Specific Issues /
« on: February 06, 2005, 09:26:14 pm »
The game is not running very well on my iMac 1Ghz 768 RAM with GForce 4 64Mo too ... but it\'s playable.

For Mathious, I think that the version for Linux on the website is compiled for i386 (PC) and not for PPC (Mac). So you\'ll have to recompile the entire game under Linux, the same you can do on the mac ;)

2
Mac OSX Specific Issues /
« on: February 06, 2005, 10:50:13 am »
Dfryer, I\'ve got fink installed and some librairies needed for my php5 compilation, so I didnt\' realise that there was a linking problem.

Like you were asking, I\'ve moved my /sw rep to another, and then restart the psclient, here is my error (libpng missing) :

Code: [Select]

Pingus:/Applications/PlaneShift 3D Kinou$ ./psclient.app/Contents/MacOS/psclient
Crystal Space for MacOS/X 0.99 r0 [MacOS/X-powerpc-GCC]
Ported to MacOS/X by Eric Sunshine

crystalspace.maploader: Could not get model converter
crystalspace.maploader: Could not get model crossbuilder

planeshift.application.client:
  PlaneShift Crystal Blue
  This game uses Crystal Space Engine created by Jorrit and others
  0.99 r0 [MacOS/X-powerpc-GCC]
LOG_ANY flag deactivated.
LOG_WEATHER flag deactivated.
LOG_SPAWN flag deactivated.
LOG_CELPERSIST flag deactivated.
LOG_PAWS flag deactivated.
LOG_GROUP flag deactivated.
LOG_CHEAT flag deactivated.
LOG_LINMOVE flag deactivated.
LOG_SPELLS flag deactivated.
LOG_NEWCHAR flag deactivated.
LOG_SUPERCLIENT flag deactivated.
LOG_EXCHANGES flag deactivated.
LOG_ADMIN flag deactivated.
LOG_STARTUP flag deactivated.
LOG_CHARACTER flag deactivated.
LOG_CONNECTIONS flag deactivated.
LOG_CHAT flag deactivated.
LOG_NET flag deactivated.
LOG_LOAD flag deactivated.
LOG_NPC flag deactivated.
LOG_TRADE flag deactivated.
LOG_SOUND flag deactivated.
LOG_COMBAT flag deactivated.
LOG_SKILLXP flag deactivated.
LOG_QUESTS flag deactivated.
LOG_SCRIPT flag deactivated.
dyld: ./psclient.app/Contents/MacOS/psclient can\'t open library: /sw/lib/libpng12.0.dylib  (No such file or directory, errno = 2)
Trace/BPT trap

3
Mac OSX Specific Issues /
« on: February 05, 2005, 08:55:07 pm »
Planeshift is working for me.

I\'ve uninstall my previous version, reinstall the current version.

My updater don\'t work, so i\'ve used the Cha0s updater

chmod 755 psclient

and go go go !

4
Mac OSX Specific Issues /
« on: February 04, 2005, 07:49:01 pm »
I think it would be appreciated if you could read before posting ...

Scrool up and search the message of Willfon talking about chmod 755

But you can\'t play with planeshift at the moment, there is a version mismatch.

5
Mac OSX Specific Issues /
« on: February 04, 2005, 05:58:00 pm »
I\'ve just update with the Cha0s updater

The window with the title and the version on top is opening fine, but nothing is display inside (usually it displays the 4 characters and the tower)

And 5-10 seconds after the opening of the windows, the client crashed. Here is the log :

Quote

pingus:/Applications/PlaneShift 3D Kinou$ ./psclient.app/Contents/MacOS/psclient
Crystal Space for MacOS/X 0.99 r0 [MacOS/X-powerpc-GCC]
Ported to MacOS/X by Eric Sunshine

WARNING: could not load plugin \'crystalspace.motion.manager.default\'
crystalspace.maploader: Could not get model converter
crystalspace.maploader: Could not get model crossbuilder

planeshift.application.client:
  PlaneShift Crystal Blue
  This game uses Crystal Space Engine created by Jorrit and others
  0.99 r0 [MacOS/X-powerpc-GCC]
LOG_ANY flag deactivated.
LOG_WEATHER flag deactivated.
LOG_SPAWN flag deactivated.
LOG_CELPERSIST flag deactivated.
LOG_PAWS flag deactivated.
LOG_GROUP flag deactivated.
LOG_CHEAT flag deactivated.
LOG_LINMOVE flag deactivated.
LOG_SPELLS flag deactivated.
LOG_NEWCHAR flag deactivated.
LOG_SUPERCLIENT flag deactivated.
LOG_EXCHANGES flag deactivated.
LOG_ADMIN flag deactivated.
LOG_STARTUP flag deactivated.
LOG_CHARACTER flag deactivated.
LOG_CONNECTIONS flag deactivated.
LOG_CHAT flag deactivated.
LOG_NET flag deactivated.
LOG_LOAD flag deactivated.
LOG_NPC flag deactivated.
LOG_TRADE flag deactivated.
LOG_SOUND flag deactivated.
LOG_COMBAT flag deactivated.
LOG_SKILLXP flag deactivated.
LOG_QUESTS flag deactivated.
LOG_SCRIPT flag deactivated.
Bus error

6
Mac OSX Specific Issues /
« on: February 04, 2005, 10:04:37 am »
But, even if thoses problems are solved, the version number is always not the good one? So we can\'t play at the moment.

7
Mac OSX Specific Issues /
« on: February 04, 2005, 07:19:40 am »
You\'re welcome defryer ! And thanks for all the work you\'re doing for us. Can we help you with doing something ?

I\'ve forgotten to say that it\'s working but only when launching it from the command line like this :
cd /Applications/PlaneShift\\ 3D && ./psclient.app/Contents/MacOS/psclient 1>/dev/null &

1>/dev/null stands for not displaying the normal output on the terminal (not always understandable), juste the errors output if they are any.
The & is to be always able to use the terminal. It launchs psclient in the background.
So if you don\'t want to launch it in the background or you don\'t want to hide the normal output just try this :
cd /Applications/PlaneShift\\ 3D && ./psclient.app/Contents/MacOS/psclient

if you want to redirect all the outputs to a file (for sending the bug to someone for example) you can do that :
cd /Applications/PlaneShift\\ 3D && ./psclient.app/Contents/MacOS/psclient >error.log 2>&1 &

and to read the error.log when the psclient is launched
tail -f error.log

to finish someone was asking how to kill psclient for example without killing the terminal.
So in a terminal try this :
ps -aux | grep psclient

you\'ll see a thing like this :

Kinou    10484  86.3  8.2   326108  64164 std  R     7:16AM   0:06.02 ./psclient.app/Contents/MacOS/psclient
Kinou    10488   0.0  0.0    18644    100 std  R+    7:17AM   0:00.00 grep psclient

and you just have to make :
kill number_after_your_login
In my example :
kill 10484


Cha0s I\'ve searched the sources of your application but I haven\'t found them ! Perhaps could I help you with Java Coding if you need ?

8
Mac OSX Specific Issues /
« on: February 04, 2005, 12:59:13 am »
I have played it !

I\'ve download the last .dmg, and run the unofficial updater of chaos.

There was a problem of rights, solved by a command line (chmod 755 psclient)

But now, after a reboot, the Client is saying that I don\'t have the correct version. They have updated the server recently, and the version is again not the good one.

But this problem seems to be the same for all the players (windows players too). So wait and see.

9
Mac OSX Specific Issues /
« on: February 03, 2005, 06:19:48 pm »
I\'ve just finish to download the new dmg, and when launching the psclient I\'ve got this error :

[18:16:31][Kinou@pingus:/Applications/PlaneShift 3D]$ ./psclient.app/Contents/MacOS/psclient
Crystal Space for MacOS/X 0.99 r0 [MacOS/X-powerpc-GCC]
Ported to MacOS/X by Eric Sunshine

crystalspace.maploader: Could not get model converter
crystalspace.maploader: Could not get model crossbuilder

planeshift.application.client:
  PlaneShift Crystal Blue
  This game uses Crystal Space Engine created by Jorrit and others
  0.99 r0 [MacOS/X-powerpc-GCC]
LOG_ANY flag deactivated.
LOG_WEATHER flag deactivated.
LOG_SPAWN flag deactivated.
LOG_CELPERSIST flag deactivated.
LOG_PAWS flag deactivated.
LOG_GROUP flag deactivated.
LOG_CHEAT flag deactivated.
LOG_LINMOVE flag deactivated.
LOG_SPELLS flag deactivated.
LOG_NEWCHAR flag deactivated.
LOG_SUPERCLIENT flag deactivated.
LOG_EXCHANGES flag deactivated.
LOG_ADMIN flag deactivated.
LOG_STARTUP flag deactivated.
LOG_CHARACTER flag deactivated.
LOG_CONNECTIONS flag deactivated.
LOG_CHAT flag deactivated.
LOG_NET flag deactivated.
LOG_LOAD flag deactivated.
LOG_NPC flag deactivated.
LOG_TRADE flag deactivated.
LOG_SOUND flag deactivated.
LOG_COMBAT flag deactivated.
LOG_SKILLXP flag deactivated.
LOG_QUESTS flag deactivated.
LOG_SCRIPT flag deactivated.
Bus error


And the error for the updater :

[18:16:54][Kinou@pingus:/Applications/PlaneShift 3D]$ ./updater.app/Contents/MacOS/updater
Crystal Space for MacOS/X 0.99 r0 [MacOS/X-powerpc-GCC]
Ported to MacOS/X by Eric Sunshine

WARNING: could not load plugin \'crystalspace.renderloop.step.generic.type\'
Failed to load plugin crystalspace.renderloop.step.generic.type; pandemonium will ensue.
NOTIFY: MacOS/X 2D OpenGL driver for Crystal Space 0.99 r0
Written by Matt Reda
NOTIFY: OpenGL renderer: NVIDIA GeForce4 MX OpenGL Engine (vendor: NVIDIA Corporation) version 1.1 NVIDIA-1.3.36
NOTIFY: Using windowed mode at resolution 640x480.
NOTIFY: Pixel format: Color: 24 Alpha: 8 Depth: 32 Stencil: 1 AccumColor: 0 AccumAlpha: 0 MultiSamples: 0
Critical files () not found (Server only)
Bus error


I\'m trying to compile planeshift from scratch since yesterday, but the CVS version seems to be a little bit buggy, and some files don\'t compile

...failed C++ ./out/macosxppc/optimize/src/client/sound/pssoundmngr.o ...
...removing ./out/macosxppc/optimize/src/client/sound/pssoundmngr.o
...skipped pssound.csbundle for lack of pssoundmngr.o...
...failed updating 220 target(s)...
...skipped 44 target(s)...
...updated 5 target(s)...

...

Pages: [1]