Spelkontroll  ::  Emulation64  ::  DCEmu.co.ukNetwork Sites:    About  ::  Hosting  ::  Donate 
Home Files Forums Reviews Guides Articles Interviews



Welcome to EmuTalk.net

Go Back   EmuTalk.net > N64 Emulation > Mupen64

Welcome to EmuTalk

Reply
 
Thread Tools Display Modes
Old August 26th, 2005, 22:34   #1
Hacktarux
Moderator
 
Hacktarux's Avatar
 
Join Date: Nov 2001
Location: France
Posts: 1,165
Hacktarux is a glorious beacon of light
Send a message via Yahoo to Hacktarux
Mupen64 0.5 source code
Here, you can download the source code of mupen64 0.4 and all the plugins included in its binary package. Many plugins source code have been integrated directly into mupen64's source code. It should be easier for users who want to compile everything.

The core source code:
http://mupen64.emulation64.com/files...rc-0.5.tar.bz2

Gfx plugins:
rice's video plugin 6.1.0 (binary only until rice wants to release source code):
http://mupen64.emulation64.com/files...-6.1.0.tar.bz2
Glide64 0.7 SP8:
http://mupen64.emulation64.com/files....7.SP8.tar.bz2
TR64 0.7.8 (with GTK2 support):
http://mupen64.emulation64.com/files...-0.7.8.tar.bz2
Hacktarux is offline   Reply With Quote
Old August 28th, 2005, 05:16   #2
aminalshmu
linux gaming enthusiast
 
aminalshmu's Avatar
 
Join Date: Apr 2005
Location: Tallahassee, Florida
Posts: 15
aminalshmu is just really nice
Send a message via AIM to aminalshmu
thank you! the plugin source integration is a wonderful time saver. all of your hard work is greatly appreciated. thanks again, hacktarux.
aminalshmu is offline   Reply With Quote
Old August 29th, 2005, 06:24   #3
GameboyHippo
EmuTalk Member
 
Join Date: Aug 2004
Posts: 10
GameboyHippo is just really nice
PWNTASTIC!!! I want to add a feature to the .5 code. How do I submit code changes?
GameboyHippo is offline   Reply With Quote
Old August 29th, 2005, 15:35   #4
ciruZ
EmuTalk Member
 
ciruZ's Avatar
 
Join Date: Nov 2003
Location: /root
Posts: 220
ciruZ is just really nice
Small patch for the Makefile to be able to clean properly, even if not everything is already built yet:
Code:
--- Makefile.old 2005-08-29 17:31:11.000000000 +0200 +++ Makefile 2005-08-29 17:30:53.000000000 +0200 @@ -405,7 +405,7 @@ clean: find . -name '*.o' -print0 | xargs -0r rm -f - rm mupen64 mupen64_nogui mupen64_dbg plugins/mupen64_input.so blight_input/arial.ttf.c blight_input/ttftoh plugins/blight_input.so plugins/mupen64_hle_rsp_azimer.so plugins/dummyaudio.so plugins/mupen64_audio.so plugins/jttl_audio.so plugins/mupen64_soft_gfx.so plugins/glN64.so + rm -f mupen64 mupen64_nogui mupen64_dbg plugins/mupen64_input.so blight_input/arial.ttf.c blight_input/ttftoh plugins/blight_input.so plugins/mupen64_hle_rsp_azimer.so plugins/dummyaudio.so plugins/mupen64_audio.so plugins/jttl_audio.so plugins/mupen64_soft_gfx.so plugins/glN64.so clean_o: find . -name '*.o' -print0 | xargs -0r rm -f
// Edit:
Just another patch, this time for main/main.c. This way it's able to compile it without errors:
Code:
--- main/main.c.old 2005-08-29 17:38:55.000000000 +0200 +++ main/main.c 2005-08-29 17:39:15.000000000 +0200 @@ -37,6 +37,7 @@ #include <stdlib.h> #include <unistd.h> +#include <dirent.h> #include "main.h" #include "guifuncs.h"
// Edit 2:
HTML was enabled and therefore there were no < and >.

Last edited by ciruZ : August 29th, 2005 at 15:45.
ciruZ is offline   Reply With Quote
Old August 29th, 2005, 15:47   #5
Hacktarux
Moderator
 
Hacktarux's Avatar
 
Join Date: Nov 2001
Location: France
Posts: 1,165
Hacktarux is a glorious beacon of light
Send a message via Yahoo to Hacktarux
Quote:
Originally Posted by GameboyHippo
PWNTASTIC!!! I want to add a feature to the .5 code. How do I submit code changes?
Just submit a patch like ciruz did or attach it to your post if it's bigger
Hacktarux is offline   Reply With Quote
Old August 29th, 2005, 15:52   #6
ciruZ
EmuTalk Member
 
ciruZ's Avatar
 
Join Date: Nov 2003
Location: /root
Posts: 220
ciruZ is just really nice
Another interesting fact: Tried to build it for multiuser, the binary only gives a "Resource temporary unaviable" then. Don't know why and I have no interest to investigate further into this because I don't needed (just wanted to test it).
ciruZ is offline   Reply With Quote
Old August 29th, 2005, 21:25   #7
GameboyHippo
EmuTalk Member
 
Join Date: Aug 2004
Posts: 10
GameboyHippo is just really nice
When I try to build it for multiuser, it compiles. But when I run it, it segfaults. Also it does not build the guiless version when compiling for multiuser.
GameboyHippo is offline   Reply With Quote
Old August 29th, 2005, 21:57   #8
Hacktarux
Moderator
 
Hacktarux's Avatar
 
Join Date: Nov 2001
Location: France
Posts: 1,165
Hacktarux is a glorious beacon of light
Send a message via Yahoo to Hacktarux
Sorry for that, to fix the nogui version just add those two lines in main/main.c :

Code:
#include <dirent.h> #include <sys/stat.h>
Concerning the segfault... of course you have done a "make install" as root after compilation, you have checked that you have some plugins in PREFIX/share/mupen64/plugins/ ?

Last edited by Hacktarux : August 30th, 2005 at 21:41.
Hacktarux is offline   Reply With Quote
Old August 29th, 2005, 22:08   #9
smcd
EmuTalk Member
 
smcd's Avatar
 
Join Date: Jun 2004
Posts: 2,391
smcd is just really nice
Can't see the needed #include files
emutalk likes to eat things between '<' and '>' maybe if you put it in [ code ] and [ / code ] tags it'll show? Or otherwise you can just use "file.h"
smcd is offline   Reply With Quote
Old August 30th, 2005, 17:11   #10
ciruZ
EmuTalk Member
 
ciruZ's Avatar
 
Join Date: Nov 2003
Location: /root
Posts: 220
ciruZ is just really nice
Yeah, it's more or less a bug. HTML is enabled (what shouldn't be, I guess, since XSS would be possible). Just write &amp;lt; and &amp;gt; instead.
ciruZ is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Mupen64 0.4 source code Hacktarux Mupen64 35 August 5th, 2005 12:27
Mupen64 0.1 source code Hacktarux Mupen64 15 May 27th, 2003 10:48
mupen64 0.0.90 source code Hacktarux Mupen64 13 March 1st, 2003 11:58
mupen64 source code (0.0.4 prerelease) Hacktarux Mupen64 3 June 9th, 2002 23:19
i download your source code of Mupen64. but winace and winzip says it not vaild zip lightknight Mupen64 15 May 20th, 2002 17:13


All times are GMT +1. The time now is 04:32.


Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.