Plasma Explorer "PFR"

Announcements and discussion regarding the open source tools Plasma# tool set and PRP Explorer (Legacy)

Plasma Explorer "PFR"

Postby Tsar Hoikas » Tue Jul 01, 2008 9:25 pm

Hey guys,

I've been working since January... Erm, actually, I worked all of January, then stopped, then trashed everything and started over in late May...

Whatever!

Anyway, you guys (may or may not) know that I have been working on a tool to replace PRP Explorer. So, after working, working, working, I've decided that I need some feedback from you guys on how Plasma Explorer should work. So, I'm releasing to you a development copy of Plasma Explorer (release codename "Public Feedback Release"... creative, no?), straight out of he main development branch for your feedback. You should note that write support is disabled and HIGHLY UNTESTED (savvy people could probably turn it on, but I have never tried it myself, so I'd recommend you don't either :P). I'm not looking for bug reports at this time, since I am very aware that things are a bit buggy. What I'm looking to get from this is A) What kinds of editors you guys want to see. B) If the current editor design is up-to-scratch. C) Anything you feel may be helpful for the development process!

Okay, enough about that, let's talk about getting Plasma Explorer PFR. Before downloading plEX, you will need this following software.

Once you have all of the aforementioned software installed, you can grab Plasma Explorer, which is just a little zip file :)

Now, let me share with you bugs that I know about... Keep in mind that I'm not too terribly interested in bugs at this time (unless they're major show-stoppers)!
    * You can't open two ages with the same PageID/Location at the same time... So no PotS Phil's Relto and MOUL Tsogal at the same time!
    * The "Render Object" feature does very little other than waste some CPU cycles (unless the object just *happens* to be in the default viewport...)
    * The DrawableSpans reader will probably choke on MOUL and Hex Isle... I haven't spent time debugging that.
    * Myst 5 and Hex Isle have some... Issues... With the LogicModifier and Envmap editors
    * The Mipmap reader will barf if it finds an uncompressed texture
    * The "Blend Flags" in the layer editor LIE... Meaning, they're not hooked up to the data yet.
    * The Layer Editor is a bit... Buggy... On MOUL

You should also note that Plasma Explorer is licensed under the GNU GPL3, so the source code is available in a subversion repository here. You should use the trunk revision 1. Plasma and PlasmaExplorer are the relevant VS Projects... Ignore the other project, it does nothing useful (yet...)

Thanks for the interest and good luck!

Another edit, these are the editors that are supported: ClothingBase, ClothingItem, ClothingOutfit, CubicEnvironmap, DrawInterface, GMaterial, Layer, LogicModifier, Mipmap, PostEffectMod, SimulationInterface, and VisRegion
Last edited by Tsar Hoikas on Tue Jul 01, 2008 9:49 pm, edited 2 times in total.
Reason: I must be loosing it... I forgot to put in the SVN URL
Image
Tsar Hoikas
Councilor of Technical Direction
 
Posts: 2180
Joined: Fri Nov 16, 2007 9:45 pm
Location: South Georgia

Re: Plasma Explorer "PFR"

Postby Chacal » Tue Jul 01, 2008 11:20 pm

Tsar Hoikas wrote:Anyway, you guys (may or may not) know that I have been working on a tool to replace PRP Explorer


That's where I started drooling.

Downloading the files, I'll try that as soon as I can.
Chacal


"The weak can never forgive. Forgiveness is an attribute of the strong."
-- Mahatma Gandhi
User avatar
Chacal
 
Posts: 2508
Joined: Tue Nov 06, 2007 2:45 pm
Location: Quebec, Canada

Re: Plasma Explorer "PFR"

Postby Nek'rahm » Wed Jul 02, 2008 11:03 am

:)

Yay, we get Plasma teaching now. Woohoo :D
Nek'rahm
 
Posts: 461
Joined: Mon Nov 19, 2007 2:53 pm

Re: Plasma Explorer "PFR"

Postby Justintime9 » Wed Jul 02, 2008 1:08 pm

Awesome!! :D forgive my newbieness, but... what does it do? I thought at first that it was annother program like plasmashop, but when you mentioned rendering, it appeared to be an easier age designer then blender... anyway, whatever it is, good work! :D
User avatar
Justintime9
 
Posts: 1188
Joined: Sat Sep 29, 2007 5:37 am

Re: Plasma Explorer "PFR"

Postby Preachr46 » Wed Jul 02, 2008 2:00 pm

Question:

Does this mean I HAVE to use the latest DirectX SDK? Or can I run with the March 2008 release i'm currently using?
User avatar
Preachr46
 
Posts: 37
Joined: Sat Nov 24, 2007 2:40 pm
Location: Lima, Ohio

Re: Plasma Explorer "PFR"

Postby Tsar Hoikas » Wed Jul 02, 2008 2:24 pm

Nah, I actually developed this on the March 2008 SDK.

It just needs to be recent-ish. From 2007 and beyond will likely work.
Image
Tsar Hoikas
Councilor of Technical Direction
 
Posts: 2180
Joined: Fri Nov 16, 2007 9:45 pm
Location: South Georgia

Re: Plasma Explorer "PFR"

Postby Preachr46 » Wed Jul 02, 2008 3:49 pm

Thanks Tsar Hoikas! :D

You just saved me some work! :lol:
User avatar
Preachr46
 
Posts: 37
Joined: Sat Nov 24, 2007 2:40 pm
Location: Lima, Ohio

Re: Plasma Explorer "PFR"

Postby realXCV » Wed Jul 02, 2008 9:01 pm

Major show-stopper: FormatException when opening a file. Not everyone is using a dot as a decimal sparator.

Fix involving only 3 lines (in AgeDescriptor.cs):

Code: Select all
      using System.Globalization; //<--------------------add this
      (...)
        public void Read(string file) {
            //Normal stuff
            CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US"); //<------------------add this too
            fAgeName = Path.GetFileNameWithoutExtension(file);
            fAgeDirectory = file.Replace(Path.PathSeparator.ToString() + Path.GetFileName(file), "");

            hsStream s = plEncryptedStream.Create(file);

            //Break it down! (Dot dot dah do deeYAH...)
            while (!s.IsEOF) {
                string[] line = s.ReadLine().Split(new char[] { '=' });

                if (line[0] == "StartDateTime") {
                    fStart = new DateTime(Convert.ToInt64(line[1]), DateTimeKind.Unspecified);
                } else if (line[0] == "DayLength") {
                    fDayLength = Convert.ToSingle(line[1],culture); //<--------------and change this
                } else if (line[0] == "Page") {
                    fPages.Add(new plAgePage(line));
                } else if (line[0] == "MaxCapacity") {
                    fMaxCapacity = Convert.ToInt16(line[1]);
                } else if (line[0] == "LingerTime") {
                    fLingerTime = Convert.ToInt16(line[1]);
                } else if (line[0] == "SequencePrefix") {
                    fSeqPrefix = Convert.ToInt32(line[1]);
                } else if (line[0] == "ReleaseVersion") {
                    fReleaseVersion = Convert.ToUInt32(line[1]);
                }
            }

            s.Close();
        }

realXCV
 
Posts: 9
Joined: Sat Sep 29, 2007 11:53 pm

Re: Plasma Explorer "PFR"

Postby Tsar Hoikas » Wed Jul 02, 2008 10:57 pm

Thanks! I tend to look over things like that :\

That fix will be included in my next commit to the subversion repository (you also made me realize that fAgeDirectory isn't being set correctly).
Image
Tsar Hoikas
Councilor of Technical Direction
 
Posts: 2180
Joined: Fri Nov 16, 2007 9:45 pm
Location: South Georgia

Re: Plasma Explorer "PFR"

Postby Paradox » Fri Jul 04, 2008 7:44 am

Please ensure that you use globalization for file paths as well. In order for the program to run under Mono on Mac or Linux, the file paths need the / character rather than \ (Windows).
Paradox
 
Posts: 1290
Joined: Fri Sep 28, 2007 6:48 pm
Location: Canada

Next

Return to Plasma#

Who is online

Users browsing this forum: No registered users and 2 guests