Jump to content

eezstreet

Members
  • Posts

    5,207
  • Joined

  • Last visited

Everything posted by eezstreet

  1. Thanks, I will check it out. EDIT: Where does this occur? Can you give some more details?
  2. I've started work on getting JK2:Enhanced working using rend2, based on SomaZ's work with DF2 mod (which made me realize how much code is actually shared between the two projects, interestingly enough). Currently so far I've got it merged in a rend2-sp branch. Current status: it crashes upon startup with this error: https://pastebin.com/Gcpqphqq
  3. It's going to be a branch for right now.
  4. The source code for all of the JK:Enhanced is now on one codebase. The OP has been updated with this information.
  5. That would mean it's failing anywhere in this chunk of code: Cmd_Init (); Cvar_Init (); // get the commandline cvars set Com_StartupVariable( NULL ); // done early so bind command exists CL_InitKeyCommands(); #ifdef _XBOX extern void Sys_FilecodeScan_f(); Sys_InitFileCodes(); Cmd_AddCommand("filecodes", Sys_FilecodeScan_f); extern void Sys_StreamInit(); Sys_StreamInit(); // This just forces the static singleton in the function to call // its constructor, which allocates a stupid 12 byte block of // memory that never gets freed. Otherwise, it ends up stranded in // the middle of the zone: TheGhoul2InfoArray(); #endif FS_InitFilesystem (); //uses z_malloc R_InitWorldEffects(); // this doesn't do much but I want to be sure certain variables are intialized. Cbuf_AddText ("exec default.cfg\n"); // skip the jaconfig.cfg if "safe" is on the command line if ( !Com_SafeMode() ) { Cbuf_AddText ("exec jaconfig.cfg\n"); } Cbuf_AddText ("exec autoexec.cfg\n"); Cbuf_Execute (); // override anything from the config files with command line args Com_StartupVariable( NULL ); // allocate the stack based hunk allocator Com_InitHunkMemory(); // if any archived cvars are modified after this, we will trigger a writing // of the config file cvar_modifiedFlags &= ~CVAR_ARCHIVE; // // init commands and vars // Cmd_AddCommand ("quit", Com_Quit_f); Cmd_AddCommand ("writeconfig", Com_WriteConfig_f ); com_maxfps = Cvar_Get ("com_maxfps", "85", CVAR_ARCHIVE); com_developer = Cvar_Get ("developer", "0", CVAR_TEMP ); com_logfile = Cvar_Get ("logfile", "0", CVAR_TEMP ); com_speedslog = Cvar_Get ("speedslog", "0", CVAR_TEMP ); com_timescale = Cvar_Get ("timescale", "1", CVAR_CHEAT ); com_fixedtime = Cvar_Get ("fixedtime", "0", CVAR_CHEAT); com_showtrace = Cvar_Get ("com_showtrace", "0", CVAR_CHEAT); com_terrainPhysics = Cvar_Get ("com_terrainPhysics", "1", CVAR_CHEAT); com_viewlog = Cvar_Get( "viewlog", "0", CVAR_TEMP ); com_speeds = Cvar_Get ("com_speeds", "0", 0); #ifdef G2_PERFORMANCE_ANALYSIS com_G2Report = Cvar_Get("com_G2Report", "0", 0); #endif cl_paused = Cvar_Get ("cl_paused", "0", CVAR_ROM); sv_paused = Cvar_Get ("sv_paused", "0", CVAR_ROM); com_sv_running = Cvar_Get ("sv_running", "0", CVAR_ROM); com_cl_running = Cvar_Get ("cl_running", "0", CVAR_ROM); com_skippingcin = Cvar_Get ("skippingCinematic", "0", CVAR_ROM); com_buildScript = Cvar_Get( "com_buildScript", "0", 0 ); if ( com_developer && com_developer->integer ) { Cmd_AddCommand ("error", Com_Error_f); Cmd_AddCommand ("crash", Com_Crash_f ); Cmd_AddCommand ("freeze", Com_Freeze_f); } s = va("%s %s %s", Q3_VERSION, CPUSTRING, __DATE__ ); com_version = Cvar_Get ("version", s, CVAR_ROM | CVAR_SERVERINFO ); // So any controller can skip the logo movies: inSplashMenu = Cvar_Get( "inSplashMenu", "1", 0 ); controllerOut= Cvar_Get( "ControllerOutNum", "-1", 0); #ifdef XBOX_DEMO // Cvar used to hide "QUIT TO DEMOS MENU" options if we weren't started by CDX extern bool demoLaunchDataValid; if( demoLaunchDataValid ) Cvar_SetValue( "ui_allowDemoQuit", 1 ); else Cvar_SetValue( "ui_allowDemoQuit", 0 ); #endif SE_Init(); // Initialize StringEd Sys_Init(); // this also detects CPU type, so I can now do this CPU check below... Netchan_Init( Com_Milliseconds() & 0xffff ); // pick a port value that should be nice and random // VM_Init(); SV_Init(); CL_Init(); #ifdef _XBOX // Experiment. Sound memory never gets freed, move it earlier. This // will also let us play movies sooner, if we need to. extern void CL_StartSound(void); CL_StartSound(); #endif Sys_ShowConsole( com_viewlog->integer, qfalse ); // set com_frameTime so that if a map is started on the // command line it will still be able to count on com_frameTime // being random enough for a serverid com_frameTime = Com_Milliseconds(); // add + commands from command line #ifndef _XBOX if ( !Com_AddStartupCommands() ) { #ifdef NDEBUG // if the user didn't give any commands, run default action // if ( !com_dedicated->integer ) { Cbuf_AddText ("cinematic openinglogos\n"); // if( !com_introPlayed->integer ) { // Cvar_Set( com_introPlayed->name, "1" ); // Cvar_Set( "nextmap", "cinematic intro" ); // } } #endif } #endif
  6. Removed a lot of pointless drama here (10+ posts), but bottom line: when a file says as its license, "Other players may not share or modify this work." that means you don't share or modify the work. Likewise, you don't attack people for their decision to license such a work that way. That's their decision, and their right to defend their work. If you don't understand that or why that's bad, that's your problem, not theirs. Let's keep it civil now and stay on topic.
  7. Which screen does it fail at? Before the license screen? After the license screen?
  8. @@Teancum here, try this version out: https://www.dropbox.com/s/kjymtlvp7e29jlu/gobconvert_test.zip?dl=0 You'll want to specify compression level in the commandline with the argument: gobconvert.exe <filename.zip> -compress=<number from 0 to 9> So for instance: gobconvert.exe assets_mp.zip -compress=1
  9. Thread(s) merged.
  10. I think it'd make more sense to pursue a hilt system like Jedi Academy, but that's just me.
  11. I didn't think the game had backwards compatibility?
  12. Are you running it on a physical device or are you using an emulator (XDK?)
  13. zlib's compression algorithm doesn't change across versions, it's the same every time, otherwise you'd get issues with extraction for every application that uses zlib (and there are a lot). I tried it with all 9 compression levels and it never produced anything that had the same size as the original archive, always either smaller (with compression) or larger (without compression). I ran `gobextract <> <> -noextract -echodata -debug` to see if there was any differences between the two files and they both validated correctly, although the converted assets had backslashes and a leading dot in front of them, so for example: Mine: botfiles/alora.jkb Theirs: .\botfiles\alora.jkb That alone couldn't cause freezing though, because the filesystem is smart enough to handle the paths correctly (at least this is the case on the pc version) EDIT: Oh yeah, nope. That would definitely cause a problem. The filename is hashed and compared to other files in the file control table...that was my bad I'll make some modifications and do a third revision, with a couple of planned features: gobconvert: ability to specify how compressed you want it to be with -level=X (scale of 0 to 9, 1 default, 0 for totally uncompressed)gobextract: drag and drop support, output argument optional (defaults to ./out/)EDIT #2: In the meantime @@Teancum, could you test this for me? It should have the correct paths: https://www.dropbox.com/s/aozovacngesuyv5/gobconvert_test.zip?dl=0
  14. I used simply zlib's compress() function. It must not play nice with that for some reason. Try using gobconvett and then gobextract to verify all of the files got added.
  15. I'd rather keep it as a separate download, because it's not related to GOB files.
  16. Yep, JK2 MP maps will work in Jedi Academy as long as the textures and shaders exist for it. SP maps, not so much. You can see my efforts in reverse engineering the JA SP game prior to the source release to load the JK2 SP maps with the JK2:Uncut mod: https://jkhub.org/files/file/1018-%7B%3F%7D/ https://jkhub.org/files/file/1024-%7B%3F%7D/
  17. Keep in mind, you'll need to make some modifications that are specific to the console you're working with. So as a result, you'll need to edit a _console_dir_list_ file in models/players (although I'm not sure this is actually used by the game) and you'll need to make sure your textures are the correct format for the console - DDS for xbox and TDF for gamecube. For maps you'll need to break the BSP into its component lumps (the code for it exists in the xbox code).
  18. v2 of the GOB tools is out now, it has gobconvert in it. I think that's about all that people should need to do console modding. Eat your hearts out etc
  19. maybe? no idea
  20. It's a proprietary format so most likely not.
  21. Dude. Holy fuck. Wrote gobconvert which converts a PK3 directly into a GOB and GFC, and now I can understand why they decided to use this format. As a baseline, I'll use hdassets0.pk3 from JK2:Enhanced. No compression: 23,261,184 bytes (0% compression ratio)PK3/Minizip compression: 18,108,416 bytes (22.15% compression ratio)GOB file (jediCodec, bitmask 1): 1,249,280 bytes (94.6% compression ratio)RAR ("best" quality): 528,679 bytes (97.72% compression ratio)GOB is pretty damn good, suprisingly. Next version will be coming out soon hopefully. I just need to finish up some stuff and it'll be good to go.
  22. Released first version: https://jkhub.org/files/file/3234-unofficial-vicarious-visions-gob-tools/ gobextract: a tool for extracting content from .gob/gfc files.
  23. 507 downloads

    PLEASE READ THE LICENSE FILE BEFORE EXTRACTING. These unofficial Vicarious Visions .GOB Tools allow you to manipulate the archive format of the console versions of Jedi Knight 2 and Jedi Academy (among other games). They include the following: gobextract: Extract content from the .gob/gfc files. gobconvert: Convert a zip/pk3 into a .gob/gfc pair. Please note that these are commandline tools - you will need to use them using the cmd.exe terminal on Windows.
  24. There is no real reason, honestly. You're probably better off putting stuff in gclient_t instead of the playerstate.
  25. I got it to print out a list of all of the files in the JA Xbox version. I don't have access to a JK2 Xbox version, and the Gamecube JK2 version has some odd quirks (the file count is absurdly high, so there's something obfuscating the actual read functions that are going on..and i don't have a clue how the gamecube version actually handles this stuff) which are making it hard to work with. Here's the metadata that got printed out: https://www.dropbox.com/s/cv0pzelvgwxt1j1/ja_xbox.txt?dl=0
×
×
  • Create New...