Page 11 of 11

Re: Something to drool over...

PostPosted: Mon Jun 18, 2012 9:55 pm
by Graveen
Ok, you have now accesses to SVN in write mode... if you want to push your code in the VCS under /Utils.... /salute :)

http://dolserver.svn.sourceforge.net/viewvc/dolserver/

Re: Something to drool over...

PostPosted: Mon Jul 16, 2012 4:41 pm
by silakka

Re: Something to drool over...

PostPosted: Sat Jul 21, 2012 4:00 pm
by Graveen
Thank you, it's perfect ! can you land a quick how-to i'll add to our wiki section ?
(what tools / jre version, how to compile, how to run... in example eclipse/netbean, with jdk 7 x86 ou x64, load with File -> open, etc...)

/bow :)

Re: Something to drool over...

PostPosted: Tue Jul 24, 2012 10:19 pm
by silakka
"Project" have Eclipse setup (not required really) and I think works java 1.4 and up (java.nio in use) on any platform :)
Class have javadocs attached including simple example :)
Anyway there is only few methods, "open"(mpk) , "readFile"(from mpk) and if need to read all content there is "entrySet" to provide content as Map <String "filename",ByteArrayOutputStream> so it's easy "for" looping :)

Here is simplified example reading "fixtures.csv" .
try {
MpakFile mpakDat = new MpakFile(new File(srcPath+"/zone000/dat000.mpk"));
String[] lines = mpakDat.readFile("fixtures.csv").toString().split("\\n");
for ( String c : lines ) {
...
...
}
} catch(...

Re: Something to drool over...

PostPosted: Tue Jul 24, 2012 10:33 pm
by silakka
Actually unit test (test directory) have also quite good working example which reads all zone dat files :)

Re: Something to drool over...

PostPosted: Tue Oct 09, 2012 9:12 pm
by silakka
Collected some mpk/npk related tools to my git hub https://github.com/mharj/ (got also permission to add original dempak.c to github)
And added some content to niftools wiki about DAoC (nif) model features and some extra info http://niftools.sourceforge.net/wiki/Da ... of_Camelot :)

Re: Something to drool over...

PostPosted: Tue Oct 09, 2012 9:26 pm
by Graveen
Interesting mate :) good job :)

Re: Something to drool over...

PostPosted: Thu Oct 11, 2012 6:00 am
by silakka
Interesting mate :) good job :)
Thanks :) , added DAoC nif version number list to wiki (collected from all nif models)
In case if need to have some info from all daoc nif models files, please PM or post here, I'll try to get some lists out :)

Re: Something to drool over...

PostPosted: Wed May 01, 2013 9:27 am
by silakka
Added small Unity terrain testing to blog http://mharjula.blogspot.com
Looks like Unity works quite similar way than Gamebryo, even terrain scale was directly correct when imported heightmap (4096 x 4096 x 4096).
Also able to on-fly async file loading, like zone loading is quite similar what Gamebryo is using, though limited to Pro license :)

Re: Something to drool over...

PostPosted: Wed May 01, 2013 11:53 am
by Tolakram
Nice update. :)