BLF Splitter and Merger
- miinaturvat
- Readers Club
- Posts: 75
- Joined: Thu Apr 10, 2008 10:04 am
BLF Splitter and Merger
Ever get bored of having to extract a usermap from a CON file to edit it with sandbox, then have to put it back in the CON file again?
Not any more!
With the BLF splitter and merger, extracting and injecting BLFs is made easy!
Some examples of BLFs are maps, gametypes and film clips inside Halo 3 CON files.
BLF splitter and merger is attached to this post.
Not any more!
With the BLF splitter and merger, extracting and injecting BLFs is made easy!
Some examples of BLFs are maps, gametypes and film clips inside Halo 3 CON files.
BLF splitter and merger is attached to this post.
- Attachments
-
- BLFSplitrMerge.zip
- (12.75 KiB) Downloaded 117 times

- mxrider108
- Posts: 456
- Joined: Thu Jun 29, 2006 6:39 pm
- Location: Cary, NC
- Contact:
![]() |
![]() |
- grimdoomer
- Posts: 1440
- Joined: Mon Oct 09, 2006 4:36 pm
![]() |
Not only does this take forever to extract a small file, it doesent even extract files larger then 696320 bytes properly!

AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
- miinaturvat
- Readers Club
- Posts: 75
- Joined: Thu Apr 10, 2008 10:04 am
-
- Posts: 5426
- Joined: Sat Jul 24, 2004 12:12 pm
- Location: I'm a Paranoid
- Contact:
![]() |
![]() |
It has nothing to do with the RAM probably...I didn't take a look at the application and of course neither of the source code but I'm pretty sure you used a loop inefficient.miinaturvat wrote:And it's not my fault your computer is slow! Buy some more RAMNot only does this take forever to extract a small file, it doesent even extract files larger then 696320 bytes properly!
Loops have more or less a fixed cycling time, which can be speed up immensely if you copy the code inside the loop multiple times.
Code: Select all
for (int c;c<=Size;c++)
{
Br.BaseStream.Location = c
Br.Read()
}
This would take forever...this though would already be five times faster.
Code: Select all
for (int c;c<=Size;c++)
{
Br.BaseStream.Location = c
Br.Read()
c+=1
Br.BaseStream.Location = c
Br.Read()
c+=1
Br.BaseStream.Location = c
Br.Read()
c+=1
Br.BaseStream.Location = c
Br.Read()
c+=1
Br.BaseStream.Location = c
Br.Read()
}
I take everything back if this is not the case in your application.
...left for good
- miinaturvat
- Readers Club
- Posts: 75
- Joined: Thu Apr 10, 2008 10:04 am
- LuxuriousMeat
- Posts: 824
- Joined: Thu Nov 03, 2005 6:43 pm
- Location: zzzzzzzzzzzzzzzz
- Contact:
- grimdoomer
- Posts: 1440
- Joined: Mon Oct 09, 2006 4:36 pm
![]() |
Or you could goto the clustor and read X (being the filesize) amount of bytes like any sane personPatrickssj6 wrote:.........


AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
- grimdoomer
- Posts: 1440
- Joined: Mon Oct 09, 2006 4:36 pm
![]() |
Yea well he did't take the hash tables into consideration nor does he care so it doesn't matter now.Anthony wrote:stupid*grimdoomer wrote:Or you could goto the clustor and read X (being the filesize) amount of bytes like any sane personPatrickssj6 wrote:.........
anyone that knows a thing or two about the STFS file system would know thats not how they work...

AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
-
- Posts: 5426
- Joined: Sat Jul 24, 2004 12:12 pm
- Location: I'm a Paranoid
- Contact:
![]() |
![]() |
I must have been so stupid to not include full source code to proof my point.grimdoomer wrote: Yea well he did't take the hash tables into consideration
You just wanted to find something to bash on.
Like LuxuriousMeat said, if you mean C++ compiled inside the .NET environment, all languages in that particular environment get compiled into an Intermediate Language called IL.miinaturvat wrote:Ah. I know what the problem is...
I wrote this in VB for some stupid reason![]()
VB is crap. I should've done it in C++
There are just some fine differences between the compilation of the individual languages into IL which, in this case, don't affect the performance (almost) at all.
...left for good
- grimdoomer
- Posts: 1440
- Joined: Mon Oct 09, 2006 4:36 pm
![]() |
If you don't take the hash tables into consideration you will never be able yo extract or inject a file larger then 696320 bytes.

AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
-
- Posts: 1262
- Joined: Sun Sep 03, 2006 10:43 pm
- Location: Michigan
![]() |
![]() |
Grimdoomer don't just ignore Anthony proving you wrong. Learn off what he's telling you.
Last edited by Supermodder911 on Tue Jul 22, 2008 12:34 pm, edited 1 time in total.
- miinaturvat
- Readers Club
- Posts: 75
- Joined: Thu Apr 10, 2008 10:04 am