SuperTuxKart 0.7 alpha 2 release

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 26 Jun 2010, 13:09

I think italian shouldn't use fribidi :)
I have an archlinux installed, I am trying to see if there is any problem.
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 26 Jun 2010, 13:22

I have no problem with supertuxkart on archlinux (using aur) and italian:
{l Code}: {l Select All Code}
[xapantu@xapantu-arch ~]$ export LANG=it_IT.UTF-8
[xapantu@xapantu-arch ~]$ locale
LANG=it_IT.UTF-8
LC_CTYPE="it_IT.UTF-8"
LC_NUMERIC="it_IT.UTF-8"
LC_TIME="it_IT.UTF-8"
LC_COLLATE="it_IT.UTF-8"
LC_MONETARY="it_IT.UTF-8"
LC_MESSAGES="it_IT.UTF-8"
LC_PAPER="it_IT.UTF-8"
LC_NAME="it_IT.UTF-8"
LC_ADDRESS="it_IT.UTF-8"
LC_TELEPHONE="it_IT.UTF-8"
LC_MEASUREMENT="it_IT.UTF-8"
LC_IDENTIFICATION="it_IT.UTF-8"
LC_ALL=
[xapantu@xapantu-arch ~]$ supertuxkart -v
Irrlicht Engine version 1.7.1
Linux 2.6.33-ARCH #1 SMP PREEMPT Thu May 13 11:32:37 CEST 2010 x86_64
Data files will be fetched from: '/usr/share/supertuxkart/'
Can not  create config dir '/home/xapantu/.config/supertuxkart', falling back to '.'.
==============================
SuperTuxKart, SVN.
SuperTuxKart, SVN revision number '5559'.
==============================
[xapantu@xapantu-arch ~]$ supertuxkart

Image

@teddy: Maybe you could try to update stk ?
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby Auria » 26 Jun 2010, 15:45

Same thing for me, Italian works fine for me!
Image
User avatar
Auria
STK Moderator
 
Posts: 2976
Joined: 07 Dec 2009, 03:52

Re: SuperTuxKart 0.7 alpha 2 release

Postby teddy » 26 Jun 2010, 17:11

:(
that's not right :cry:

So, since I'm using aur pkgbuild, with that locale, everything should be ok. It isn't :(

Am I missing any dependency maybe?

edit: using "export LANG=en_EN.UTF-8 && supertuxkart" gives me a normal screen :?
teddy
 
Posts: 12
Joined: 24 Jun 2010, 11:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 26 Jun 2010, 17:26

Do you have the latest revision ?
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby teddy » 26 Jun 2010, 17:44

xapantu {l Wrote}:Do you have the latest revision ?
yes
teddy
 
Posts: 12
Joined: 24 Jun 2010, 11:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby Auria » 26 Jun 2010, 18:37

Are you building with or without fribidi? (is the ENABLE_BIDI define flag passed to the compiler)
Image
User avatar
Auria
STK Moderator
 
Posts: 2976
Joined: 07 Dec 2009, 03:52

Re: SuperTuxKart 0.7 alpha 2 release

Postby Evolution » 26 Jun 2010, 20:53

Image
The Novice mode is shown strange and only "Novice" is translated. I got something similar to this in German:
Only Novice was translated
STK crashed when I finished
Evolution
 
Posts: 13
Joined: 11 Jun 2010, 18:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby Auria » 26 Jun 2010, 21:18

Evolution: what language? perhaps the translation is wrong

and if you can get a stack trace when STK crashes it'd be welcome
Image
User avatar
Auria
STK Moderator
 
Posts: 2976
Joined: 07 Dec 2009, 03:52

Re: SuperTuxKart 0.7 alpha 2 release

Postby teddy » 27 Jun 2010, 09:51

Auria {l Wrote}:Are you building with or without fribidi? (is the ENABLE_BIDI define flag passed to the compiler)
Since I'm using the same pkgbuild has used xapantu, I imagine that fribidi is enabled, but I see no ENABLE_BIDI in the pkgbuild.

The stacktrace I get from gdb is completely unuseful.
teddy
 
Posts: 12
Joined: 24 Jun 2010, 11:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 27 Jun 2010, 10:36

Do you have libfribidi-dev (or something like this, I am on ubuntu now, so, I can't say) installed ?

I am compiling with fribidi to see if there is a problem....
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 27 Jun 2010, 10:45

It is a fribidi problem :
Image
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 27 Jun 2010, 11:26

edit : I am stupid, see the next post, ignore this one :(

This is a patch to enable/disable fribidi support :
{l Code}: {l Select All Code}
Index: configure.ac
===================================================================
--- configure.ac   (révision 5562)
+++ configure.ac   (copie de travail)
@@ -321,33 +321,36 @@
 # ==================
 # Check for Fribidi
 # ==================
+AC_ARG_WITH(fribidi,[AS_HELP_STRING([--with-fribidi],
+              [This option is used to enable/disable fribidi support])])
+if test "x$with_fribidi" == "xyes" ; then
+    save_LIBS=$LIBS
 
-save_LIBS=$LIBS
+    # also check in /usr/local
+    CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
+    LDFLAGS="$LDFLAGS -L/usr/local/lib"
+    # search for the libraries needed to use ogg vorbis
+    AC_SEARCH_LIBS(fribidi_log2vis, [fribidi], have_fribidi=yes, have_fribidi=no)
 
-# also check in /usr/local
-CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
-LDFLAGS="$LDFLAGS -L/usr/local/lib"
+    if test x$have_fribidi = xyes; then       
+        AC_CHECK_HEADER(fribidi/fribidi.h, have_fribidi_hdr=yes)
+    fi
+    SUMMARY="$SUMMARY\n"
 
-# search for the libraries needed to use ogg vorbis
-AC_SEARCH_LIBS(fribidi_log2vis, [fribidi], have_fribidi=yes, have_fribidi=no)
+    if test x$have_fribidi = xyes -a x$have_fribidi_hdr = xyes; then
+        AC_DEFINE([ENABLE_BIDI], 1, [Defined when Fribidi is available])
+        SUMMARY="$SUMMARY\nFribidi (RTL languages support) support enabled."
+        fribidi_LIBS="$LIBS"
+    else
+        SUMMARY="$SUMMARY\nFribidi (RTL languages support) support disabled."
+        fribidi_LIBS=""
+    fi
 
-if test x$have_fribidi = xyes; then       
-    AC_CHECK_HEADER(fribidi/fribidi.h, have_fribidi_hdr=yes)
+    LIBS=$save_LIBS
 fi
-SUMMARY="$SUMMARY\n"
 
-if test x$have_fribidi = xyes -a x$have_fribidi_hdr = xyes; then
-    AC_DEFINE([ENABLE_BIDI], 1, [Defined when Fribidi is available])
-    SUMMARY="$SUMMARY\nFribidi (RTL languages support) support enabled."
-    fribidi_LIBS="$LIBS"
-else
-    SUMMARY="$SUMMARY\nFribidi (RTL languages support) support disabled."
-    fribidi_LIBS=""
-fi
 
-LIBS=$save_LIBS
 
-
 # ======================================================
 # Try to supply the SVN revision number for the compiler
 # ======================================================

I don't commit it because maybe you want that fribidi is enabled by default ? (I think it is a bad idea because if we have fribidi installed to test something or because it is a dependencies of another program that can't enable/disable fribidi support, stk doesn't work).
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby xapantu » 27 Jun 2010, 11:38

I am sorry, I didn't understand the src/translation.cpp code.
@Auria : you just forgot a "if(this->isRTLLanguage())" in this file, I comitted the change.

@teddy, it should work now, could you try ?
xapantu
 
Posts: 283
Joined: 07 Dec 2009, 17:30

Re: SuperTuxKart 0.7 alpha 2 release

Postby teddy » 27 Jun 2010, 12:54

xapantu {l Wrote}:@teddy, it should work now, could you try ?
Yes, now it works! Thanks!
teddy
 
Posts: 12
Joined: 24 Jun 2010, 11:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby teddy » 02 Jul 2010, 13:34

I've noticed one thing: when you take the wake of the kart in front of you while you're on downhill or on a climb, your kart starts to go right strongly.
I've experienced this with Hexley in Canyon.
teddy
 
Posts: 12
Joined: 24 Jun 2010, 11:32

Re: SuperTuxKart 0.7 alpha 2 release

Postby Arthur » 05 Jul 2010, 18:54

This behavior is described here: http://supertuxkart.sourceforge.net/FAQ#Steering_uphill_or_downhill_is_uncontrollable

Short version: some of the tracks are not designed with the physics in mind. This might get better in a later version of STK (0.8 or later), but the real problems lie within the track designs (too steep).

Furthermore, Hexley is tall and tiny at the same time, thus not making this any better regarding the physics of the game.
Hey pal, I took an oath for justice! "In happy days or tightest tights..." or something like that.
User avatar
Arthur
 
Posts: 1073
Joined: 06 Dec 2009, 00:49

Who is online

Users browsing this forum: No registered users and 1 guest

cron