[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Needed : Apple //gs test subjects
On Jan 24, 3:46 pm, magnusfalkirk <dean.pha...@gmail.com> wrote:
> On Jan 13, 10:35 pm, magnusfalkirk <dean.pha...@gmail.com> wrote:
>
>
>
> > On Jan 13, 10:18 pm, BLuRry <brendan.rob...@gmail.com> wrote:
>
> > > On Jan 13, 10:07 pm, magnusfalkirk <dean.pha...@gmail.com> wrote:
>
> > > > On Jan 13, 8:59 pm, BLuRry <brendan.rob...@gmail.com> wrote:
>
> > > > > I have this software I've been working on again for a few weeks, and
> > > > > after some struggle this week have a beta that needs testing on real
> > > > > hardware. The problem? I don't have a //gs (rom1 or 3) and need to
> > > > > know if this works.
>
> > > > > The software? Apple Game Server, juiced up with a graphical hi-res
> > > > > menu at that.
>
> > > > > For the willing, you will need to have a Java 6 (preferably, but 5
> > > > > should work) runtime installed and have the ability to transmit data
> > > > > between your java-running machine and your //gs. A quick test would
> > > > > be to set the //gs port to 7-bit (so hi-order is stripped) and type
> > > > > in#2 <return> pr#2 and see if you can get some fun applesoft goodness
> > > > > from a com window on the other end.
>
> > > > > The rest I can provide shortly. Just let me know you're willing to
> > > > > give it a shot and, potentially, help fix bugs (they shouldn't be
> > > > > major ones at this point).
>
> > > > > This release wouldn't have been possible without Nick Westgate's help
> > > > > in... well... pretty much every aspect of optimizing the code, testing
> > > > > and debugging. If you're out in his neck of the woods, buy 'em a beer
> > > > > for me would ya?
>
> > > > > Thank you for your help in advance!! :-D
>
> > > > > ][ Infinitum!
>
> > > > > -B
>
> > > > I'd be willing to volunteer, since I think I instigated this ;-) , but
> > > > I don't think I have the right Java for the job. My Mac Mini is a G4
> > > > running OS 10.4.11.
>
> > > > Dean
>
> > > Would this work?http://support.apple.com/downloads/Java_for_Mac_OS_X_10_4_Release_5
>
> > > Also, you'll need RXTX libraries installed -- this is the same as you
> > > would have to do to get ADT Pro working -- so that might be a good
> > > place to start getting your environment ready.
>
> > > -B
>
> > I may already have that version of Java installed, I'll have to check
> > it when I get home. I do have the RXTX libraries installed, since I
> > use ADTPro. If that all meets your minimum requirement to run this
> > version of AGS then feel free to send it my way and I'll let you know
> > how it works.
>
> > Dean
>
> Okay, I've downloaded and installed the latest version of Java for the
> Mac, Java for OS X 10.4.11 Release 7. When I try to launch AGS I get
> an error message "The jar file "ags.jar" couldn't be launched. Check
> the Console for possible error messages. When I open up the Console
> here is the error message I see:
>
> Exception in thread "main" java.lang.IllegalArgumentException:
> InputStream cannot be null
> at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:94)
> at ags.game.Games.parseConfiguration(Games.java:139)
> at ags.game.Games.readFromFile(Games.java:74)
> at ags.Main.main(Main.java:74)
>
> Any clue what is going on and how to fix it? I'd really like to try
> AGS on my GS, since I was the one who asked if it could be made to run
> on the GS. I'm using a Mac Mini G4/1.42GHz with 512MB RAM.
>
> Dean
It's getting a null when reading the games file. Chances are, the lib
directory is not properly part of your classpath. The readme gives
examples of commandlines for different platforms, and should be mostly
correct. ;-)
Heads up: The new version (in SVN, or to come out within a few weeks)
will require 1.6.0_04 or higher because of a dependency on JAXB 2.1.
You can continue running the new version on JDK 1.5 or above, but will
have to read the JAXB FAQ to get JAXB 2.1 working correctly on your
platform (JDK 5: add jaxb libs to classpath, JDK 6 thru 6_03: add libs
to endorsed directory, JDK 6_04+: do nothing) I hate introducing new
dependencies (jar hell is an un-fun place), but it is necessary to
have a very predictable and repeatable way to manage the games data
xml file as the need for structured information has become much
greater. This is because of a new search feature that has been added
(e.g. search for Author "contains" nasir. ;-)
-B