Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Penumbra Scrolling Graphics Problem
msp301 Offline
Junior Member

Posts: 11
Threads: 1
Joined: Jul 2009
Reputation: 0
#1
Solved: 8 Years, 1 Month ago Penumbra Scrolling Graphics Problem

I've just installed the Penumbra Collection on my Jaunty 64-bit System using Intel X4500 graphics, I made sure I had all the 32-bit libraries on my system before starting install and then installed fine, but when I start any of the games, I get a scrolling picture constantly, otherwise everything else seems to work fine at the moment; has anyone else tried this with the same Intel card or is there a possible fix to apply to a 64-bit system??

Thanks again Smile
08-05-2009, 08:35 PM
Find
Gert Offline
Junior Member

Posts: 20
Threads: 0
Joined: Jul 2009
Reputation: 0
#2
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

Well, I'm on Gentoo AMD64 using the Intel 2.8.0 driver with mesa 7.5 and kernel gentoo-sources 2.6.30-r5 (KMS enabled). I have quite some graphical glitches in Penumbra Overture (objects appearing and vanishing) but otherwise everything runs fine.
Currently, the Laptop is busy, later I'll check back after rebooting to Ubuntu Jaunty to see what's going on there.
08-07-2009, 07:50 PM
Find
jens Offline
Frictional Games

Posts: 4,093
Threads: 199
Joined: Apr 2006
Reputation: 202
#3
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

You could try to lower the shader quality from high to medium
08-07-2009, 08:32 PM
Website Find
Gert Offline
Junior Member

Posts: 20
Threads: 0
Joined: Jul 2009
Reputation: 0
#4
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

I tried now on Ubuntu 9.04 and the graphics are actually okay - a bit different compared to my desktop machine with the ATI card, but no problems of something scrolling or so, and it runs not very smooth with the 1280x800 resolution (not that I'm surprised - personally, I'm waiting for the ATI patch, I don't intent to play the game on the Laptop).

What I did compared to the original install: I replaced the libCg.so and libCgGL.so with the latest versions one can download from NVIDIA, and I moved most libraries out of the lib dir to use the system provided once. Remaining libraries provided by penumbra are
libalut.so.* libCGGL.so libCg.so libfltk.so.1.1 libopenal.so.*
Everything else is from the Ubuntu ia32-libs package.
Hope that helps.
08-07-2009, 09:20 PM
Find
msp301 Offline
Junior Member

Posts: 11
Threads: 1
Joined: Jul 2009
Reputation: 0
#5
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

Thanks for the comments, I've tried messing about with all the games' graphics settings, but it only alters the speed of of scroll (which it doesn't affect considerably) Sad ... how would I be able to find my Intel driver version on Jaunty, tried searching everywhere without luck as I bought my laptop with 9.04 already set up Smile
08-07-2009, 10:10 PM
Find
Gert Offline
Junior Member

Posts: 20
Threads: 0
Joined: Jul 2009
Reputation: 0
#6
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

apt-cache policy xserver-xorg-video-intel
for me it gives 2:2.63-0ubuntu9.3

Linux kernel version:
cat /proc/version
2.6.28-14-generic

you can also look at /var/log/Xorg.0.log (I've attached mine, so you can compare)

my xorg.conf is empty in Ubuntu, so xorg probes everything itself, I don't run compiz.
08-07-2009, 10:41 PM
Find
msp301 Offline
Junior Member

Posts: 11
Threads: 1
Joined: Jul 2009
Reputation: 0
#7
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

Ok, thanks for your help, I've messed about and killed compiz, but lost the ability to run Overture Sad ... will try a reinstall as both Black Plague & Requiem seem to be running fine ... as I still want to have compiz for general desktop use, is there a way that when the game is launched it could turn compiz off, but then back on when I quit the game ?? Thanks again for your help, this could confirm that theb X4500 can work as well as the X3100 Smile
08-07-2009, 11:18 PM
Find
Urkle Offline
FG - Associate

Posts: 1,172
Threads: 31
Joined: Jul 2006
Reputation: 21
#8
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

you could modify the launcher scripts in the game install directory (/usr/local/games/PenumbraCollection/Overture/penumbra or ......../PenumbraCollection/BlackPlague/blackplague and ...../BlackPlague/Requiem )

and have them stop compiz before running the game and re-start it afterwards..

something like
metacity --replace &
......  regular script to launch game .....
compiz --replace &

It's not elegant and not tested:-D

Developing away on one of
Multiple Macs running 10.6, 10.7, 10.8, and 10.9.
Linux, 8-core AMD, 8GB RAM, Fedora 18, nVidia 450 1GB
08-08-2009, 04:08 PM
Website Find
msp301 Offline
Junior Member

Posts: 11
Threads: 1
Joined: Jul 2009
Reputation: 0
#9
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

(08-08-2009, 04:08 PM)Urkle Wrote: you could modify the launcher scripts in the game install directory (/usr/local/games/PenumbraCollection/Overture/penumbra or ......../PenumbraCollection/BlackPlague/blackplague and ...../BlackPlague/Requiem )

and have them stop compiz before running the game and re-start it afterwards..

something like
metacity --replace &
......  regular script to launch game .....
compiz --replace &

It's not elegant and not tested:-D

Hey, thanks, but yeah I've already tried that, using the script below, but it stops the game from launching for some reason, it's as if the game starts, but is then interrupted by compiz restarting :S

#!/bin/bash
metacity --replace &
cd /usr/games/PenumbraCollection/Overture/penumbra
./penumbra
compiz --replace &
08-09-2009, 12:29 PM
Find
Gert Offline
Junior Member

Posts: 20
Threads: 0
Joined: Jul 2009
Reputation: 0
#10
Solved: 8 Years, 1 Month ago RE: Penumbra Scrolling Graphics Problem

Maybe you should wait a little until metacity has indeed replaced compiz:
#!/bin/bash
metacity --replace &
sleep 2
cd /usr/games/PenumbraCollection/Overture/penumbra
./penumbra
compiz --replace &
08-09-2009, 01:23 PM
Find




Users browsing this thread: 1 Guest(s)