Page 2 of 3

Re: Ultimate 1.8 Gamers Download

PostPosted: Mon Jul 14, 2008 11:18 pm
by chambo622
stdanko wrote:if i have a 64 bit amd what should i do install 64bit 1.8 if i do that how do i get the gamer stuff or should i just download and install 1.8 gamers edition you posted. any help would be great im kinda new to this but right now i have normal ubuntu 8.04 but this looks much better so any help would be great....


Hi, welcome to the forums. Frankly its really your preference. 64 bit has the advantage of better speed/security/stability. However some apps and eyecandy are only for 32 bit and 32 bit has more preinstalled. If you into games or just want the extra apps from Ultamatix, I say go for 32 bit gamers. Ultimate Edition is great you can't go wrong.

Re: Ultimate 1.8 Gamers Download

PostPosted: Tue Jul 15, 2008 7:24 pm
by TheeMahn
chambo622 wrote:
stdanko wrote:if i have a 64 bit amd what should i do install 64bit 1.8 if i do that how do i get the gamer stuff or should i just download and install 1.8 gamers edition you posted. any help would be great im kinda new to this but right now i have normal ubuntu 8.04 but this looks much better so any help would be great....


Hi, welcome to the forums. Frankly its really your preference. 64 bit has the advantage of better speed/security/stability. However some apps and eyecandy are only for 32 bit and 32 bit has more preinstalled. If you into games or just want the extra apps from Ultamatix, I say go for 32 bit gamers. Ultimate Edition is great you can't go wrong.


I will break this down to you and will show you what you do not see yet, I have been playing with "libsnack"...

all applications I write if they do not do so to reflect 64 bit, I provide an example, I have posted this elsewhere...


w/o a doubt I correct things to make things happen, be it 64 or 32...

Code: Select all
function wopinstall {
dpkg_check
if test -f worldofpadman.run
then
./worldofpadman.run 2>&1 | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --pulsate --auto-close --title "Installing World Of Padman..."
else
wget -c http://thilo.kickchat.com/download/worldofpadman.run 2>&1 | sed -u 's/.*\ \([0-9]\+%\)\ \+\([0-9.]\+\ [KMB\/s]\+\)$/\1\n# Downloading \2/' | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --auto-close --title="Downloading World Of Padman..."
sudo chmod +x worldofpadman.run
./worldofpadman.run 2>&1 | zenity --window-icon=/usr/share/ultamatix/pixmaps/wop.png --width=600 --height=100 --progress --pulsate --auto-close --title "Installing World Of Padman..."
fi
#create Icon since they cant seem to do it right
#since we have root we need to discover normal username so we can create the shortcut & set proper permissions
NU=$(cat /etc/passwd | grep 1000 | cut -d: -f1)
#set proper permissions
sudo chown -R $NU:$NU "/usr/local/games/WoP/"
if [ "$architecture" = "x86_64" ]; then
sudo echo "[Desktop Entry]
Name=World Of Padman 
Comment=World of padman
Exec=/usr/local/games/WoP/wop-engine.x86_64
Icon=/usr/local/games/WoP/wop.png
Terminal=false
Type=Application
Categories=Application;Game;" >> /usr/share/applications/worldofpadman.desktop
else
sudo echo "[Desktop Entry]
Name=World Of Padman 
Comment=World of padman
Exec=/usr/local/games/WoP/wop-engine.i386
Icon=/usr/local/games/WoP/wop.png
Terminal=false
Type=Application
Categories=Application;Game;" >> /usr/share/applications/worldofpadman.desktop
fi
}

function wopremove {
#created custom uninstaller since thiers does not work.  kicks back "Could not find a usable uninstall program. Aborting."
NU=$(cat /etc/passwd | grep 1000 | cut -d: -f1)
#create directory incase they installed it elsewhere, no sense in scraping all thier games
sudo mkdir /usr/local/games/WoP/ 2>/dev/null
sudo mkdir /home/$NU/WoP 2>/dev/null
#remove it
echo "Removing World Of Padman please wait ..."
sudo rm -R /home/$NU/WoP 2>/dev/null
sudo rm -R /usr/local/games/WoP/ 2>/dev/null
#remove shortcut created earlier
sudo rm /usr/share/applications/worldofpadman.desktop
echo "Done."
}


What happens in the above code? Read my comments not my job, but still make it so you do not have to worry about it.

if [ "$architecture" = "x86_64" ]; then
tests to see if u use 32 or 64 bit architecture and takes care of business accordingly. What I have is 10X of anything you can download (funny I have not shared with my admin), some features are not implemented yet, note the word yet.

Before I am done you will all be programmers...

Lets play with python...
Code: Select all
import wave, ossaudiodev

sound = wave.open('saw.wav' , 'rb')

fr = sound.getframerate()
nc = sound.getnchannels()
nf = sound.getnframes()
data = sound.readframes(nf)
sound.close()
dsp = ossaudiodev.open('/dev/dsp','w')
dsp.setparameters(ossaudiodev.AFMT_S16_NE, nc, fr)
dsp.write(data)
dsp.close()
import wave, ossaudiodev

sound = wave.open('saw.wav' , 'rb')

fr = sound.getframerate()
nc = sound.getnchannels()
nf = sound.getnframes()
data = sound.readframes(nf)
sound.close()
## take to the player for program 5
dsp = ossaudiodev.open('/dev/dsp','w')
dsp.setparameters(ossaudiodev.AFMT_S16_NE, nc, fr)
dsp.write(data)
dsp.close()


saw wave attached... code executed in the same folder will yield the same results.

Now we are doing python... MP3 integration is coming.

Just my 2 cents,

TheeMahn

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 17, 2008 11:04 am
by LeadFingers
vinca wrote:Sorry to all who were downloading on HTTP--our connection simply couldn't handle it. It was completely bottlenecked and I doubt any of you were getting very good speeds.

We've left FTP going, so please feel free to download from ftp://ftp.scienceprousa.com. You should be getting much better speeds there without the congestion.

Go Ultimate!
Strange thing, I tried your FTP link and it asked for a Username & Password to allow me access. Since I didn't know either, it just laughed at me.

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 17, 2008 12:05 pm
by Dj Synth Virus
yes i got the same thing

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 17, 2008 12:47 pm
by chambo622
Sorry about that, some leprecon pulled the plug on the server during a partition format. Long story short, had to reinstall and reconfigure everything. Still have to put the ISO back up and add an FTP group for that file. Hopefully later today.

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 17, 2008 1:09 pm
by Dj Synth Virus
thats unfortunate , i said screw it and installed the 1.8 ultimate and just upgraded to 1.8 gamers . <3

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 17, 2008 11:07 pm
by TheeMahn
Dj Synth Virus wrote:thats unfortunate , i said screw it and installed the 1.8 ultimate and just upgraded to 1.8 gamers . <3


Eventually you just will not care, what do you bet I turn the *nix community around. Be it a game it is getting handled, it is being tested believe that.

Take close note to the shot I provide...

I am far from done. That is the un-install tab I have selected right?

3.8GB of mem is 32 bit's max in case u thought I was talking a mad line... Promise me you won't have a heart attack first time it fires up and you hear the buzz saw. Re-building your o/s, I think a circular saw is appropriate ;)
Screenshot-14.png
proof


most think yeah what ever... I have written / modified 72 scripts (this means you can have 72 programs that are typically not available to you one of them is over 100 lines long), python (resin) danger is history as far as I see it, however I utilized a new addition to add a help file that uses wxwidgets (my stupidity & set me back in 32 bit),I will fix it (or Cab will write it, and I re-write the "lib"). Mp3 support if implemented will be hand / hard coded. I will write in C before I require that or any other library. Hardy / Debian users will not suffer. I would like to point out does not happen in python w/o libs, the saw sound you will hear is solid python pressed to /dev/dsp & created a separate thread to make it happen. I challenge when I release it to even find it... The source is in the deb.


seems like I just don't care, far from the truth.

TheeMahn

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 24, 2008 2:05 am
by cfgtech
I am getting a login screen for the FTP site
I tried anonymous but it didn't go thru
I registered at the site but haven't got the email yet...then again it was 5 minutes ago
I am a big fan of the Gamers Edition and I would like to D/load it plz

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 24, 2008 9:50 am
by TheeMahn
cfgtech wrote:I am getting a login screen for the FTP site
I tried anonymous but it didn't go thru
I registered at the site but haven't got the email yet...then again it was 5 minutes ago
I am a big fan of the Gamers Edition and I would like to D/load it plz


I am sorry to say he could not handle the load & the file is too large for me to host. Torrent is your only option that I am aware of.

Re: Ultimate 1.8 Gamers Download

PostPosted: Thu Jul 24, 2008 10:51 pm
by cfgtech
Thanx for posting the link you are Da Man or rather TheeMahn
I will go ahead and try it !!
My laptop runs great I wanna put it on my desktop as well