Valhalla Legends Archive

Programming => General Programming => Topic started by: Fr3DBr on September 24, 2006, 10:23 PM

Title: TGA Icon Extrapolation
Post by: Fr3DBr on September 24, 2006, 10:23 PM
Ok, now lets start about building separated files for each icon.

How anyone would plan doing that ?

We know that each icon has a 28x14 size.
We know each string that corresponds to each icon (in the extracted tga file), since the strings are in the same sequence as the icons shown on it !

So now we need to extrapolate then ! :D, how do you guys think it could be done ? :D
Title: Re: TGA Icon Extrapolation
Post by: FrostWraith on September 24, 2006, 11:03 PM
Same way you read them. Just instead of stripping off the TGA Header, export it along with the pixel data to a new TGA File.
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 25, 2006, 05:10 AM
can you give more details on that ?
Title: Re: TGA Icon Extrapolation
Post by: Joe[x86] on September 25, 2006, 07:14 AM
Well, you know VB, right? Then it shouldn't be a problem.
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 25, 2006, 07:50 AM
i know C#, but im just copying the tga data directly to a file... now i need to know how to cut each icon from its data buffer.
Title: Re: TGA Icon Extrapolation
Post by: Joe[x86] on September 25, 2006, 09:22 PM
If you know C#, plus what I'm about to tell you, it'll be easy.

In VB, to create a new file, you use this code: Open Filename For Output As FileHandle where Filename is the full path of the file you wish to create and FileHandle is a number, usually hardcoded (such as #1).

To write to that file, use Print FileHandle, Data (String). However, this will put a CRLF after it. A nifty but awkward way of fixing this is to use Print Filehandle, Data (String); (notice the semicolon).

The data is written immediately, but to release the filehandle, use Close FileHandle.

There's a proper way of getting a free file handle but I've long forgotten it. Object Browser should be your friend on that, if you must know. Also, sorry for coming off as a jackass in the above post. :)
Title: Re: TGA Icon Extrapolation
Post by: RealityRipple on September 25, 2006, 09:32 PM
Dim nFile as integer
nFile = FreeFile
Open Filename for Whatever as #nFile
Print #nFile, strData;
Close #nFile
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 04:29 AM
actually duh i know how to write files without crlf as i stated i know C#....what i dont know is how to extrapolate each icon from the tga image....
Title: Re: TGA Icon Extrapolation
Post by: RealityRipple on September 26, 2006, 04:40 AM
split the file up into little 16x28 squares?
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 08:20 AM
how?????
Title: Re: TGA Icon Extrapolation
Post by: RealityRipple on September 26, 2006, 08:29 AM
Read 16 rows of 28 pixels, put it into a file.
Read the next 16 rows of 28 pixels, put it into a second file.
Repeat until you reach the last pixel.
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 10:54 AM
hmmm its starting to make sense... how do i know when a row have 28 pixels ?
Title: Re: TGA Icon Extrapolation
Post by: rabbit on September 26, 2006, 11:47 AM
Tell your program to read 28 pixels' data?
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 01:22 PM
its easy saying, if you tell me to read 28 sequential bytes per row assuming that each pixel is byte then fine.... if not it stills like saying to hit a small point on a microscope with a bazooka.
Title: Re: TGA Icon Extrapolation
Post by: rabbit on September 26, 2006, 03:28 PM
That's easy... bazookas can hit a lot of points.
Title: Re: TGA Icon Extrapolation
Post by: Joe[x86] on September 26, 2006, 03:47 PM
Quote from: Fr3DBr on September 26, 2006, 04:29 AM
actually duh i know how to write files without crlf as i stated i know C#....what i dont know is how to extrapolate each icon from the tga image....

Aren't you brilliant? Of course you know how to write a file using VB, subverting a VB feature, because you know the wonderful all-featured C#. Oh! How foolish of me not to have guessed?
Title: Re: TGA Icon Extrapolation
Post by: Warrior on September 26, 2006, 03:50 PM
Quote from: Joex86] link=topic=15785.msg159043#msg159043 date=1159303659]
Quote from: Fr3DBr on September 26, 2006, 04:29 AM
actually duh i know how to write files without crlf as i stated i know C#....what i dont know is how to extrapolate each icon from the tga image....

Aren't you brilliant? Of course you know how to write a file using VB, subverting a VB feature, because you know the wonderful all-featured C#. Oh! How foolish of me not to have guessed?

Considering using C# is a little harder it'd be pretty silly if he didn't know how, or couldn't pick it up right away.
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 04:39 PM
lets dont forget the scope of this thread... the question still remains on what should be done to properly extrapolate the images.
Title: Re: TGA Icon Extrapolation
Post by: FrostWraith on September 26, 2006, 04:49 PM
Dude, seriously. http://bnetdocs.valhallalegends.com/content.php?Section=d&id=3

Also, TGA images are one of the easiest to Read. If I can do it in VB, so can you.
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 04:51 PM
man actually i know the document, i just dont know how to separate the TGA DATA i got on my tga file... i have all the icons merged together in one vertical line.... i want to have one file to each icon....
Title: Re: TGA Icon Extrapolation
Post by: FrostWraith on September 26, 2006, 05:14 PM
OK, after each looping of reading images, call this sub:
sry, its VB
Public Sub WriteValues(strData As String, sFilename As String)
Dim nFileNum As Integer

nFileNum = FreeFile

Open sFilename For Binary Lock Read Write As #nFileNum
    Put #nFileNum, , strData
Close #nFileNum

End Sub
Title: Re: TGA Icon Extrapolation
Post by: Fr3DBr on September 26, 2006, 05:29 PM
(DWORD)      Size of BNI header
(WORD)      BNI Version
(WORD)      Alignment Padding (Unused)
(DWORD)      Number of Icons
(DWORD)      Data Offset

For each icon:
   (DWORD)      Flags
   (DWORD)      X Size
   (DWORD)      Y Size
   (DWORD[32])   Products for this icon*

Image in Targa format

Lets discuss about it...

First you parse : 16 Bytes that are the (BNI HEADER) no problem...

Then since you have : 20 Icons You will have to parse 12Bytes + (8Bytes if the Flags are 0 or 4 Bytes if its != than 0) Sure...

Then after all that... you have the TGA Image wich you (SHOULD) separate from all the data you parsed before...
No problem with that i already have the Good Working Targa File that i can see the 20 icons on it in a Vertical Line... (now) how can i have EACH of these icons in one independant file ? Thats what im talking about .... because when looping the First data that tells you wich String Reamins to Wich ICON you dont get anything related to targa format... got me now ?

Thanks.
Title: Re: TGA Icon Extrapolation
Post by: RealityRipple on September 26, 2006, 06:07 PM
wtf is Binary Lock Read Write? that sounds like way too much for just writing data. Try Binary Access Write. In that situation, Lock and Read are useless.
Title: Re: TGA Icon Extrapolation
Post by: FrostWraith on September 26, 2006, 06:35 PM
Meh, just from a tuturial I read. I just never got out of the habit of putting it all there.
Title: Re: TGA Icon Extrapolation
Post by: Maddox on October 01, 2006, 02:11 PM
I wrote this a couple of years ago.  This will take a BNI file, parse it, and let you draw it to a DC.  I hope this helps.

http://www.yousendit.com/transfer.php?action=download&ufid=E3C3E0486D1B28AB
Title: Re: TGA Icon Extrapolation
Post by: Hero on October 01, 2006, 03:17 PM
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=56537&lngWId=1
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=28587&lngWId=1
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=35713&lngWId=1
Title: Re: TGA Icon Extrapolation
Post by: topaz on October 01, 2006, 09:03 PM
Quote from: heRo on October 01, 2006, 03:17 PM
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=56537&lngWId=1
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=28587&lngWId=1
http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=35713&lngWId=1

Cool. +1
Title: Re: TGA Icon Extrapolation
Post by: l)ragon on October 03, 2006, 08:19 PM
'**********************************************
'*         l)ragon,  Dec. 19, 2002            *
'*         TGA Runlength decodeing            *
'**********************************************
Private Sub RLEDecode(ByVal cRead As FileReader)
Dim outBuf As String
Dim BytesToRead As Long
Dim DecodedSize As Long
Dim n As Long
Dim pt As Byte
Dim bufi As Long
Dim tLength As Long
Dim l As Long, b As Long, c As Long, iBul As Long

    BytesToRead = THead.BitsPerPixel / &H8
    DecodedSize = THead.Height * THead.Width * BytesToRead
    While bufi < DecodedSize
        pt = cRead.GetByteAt(l + 1)
        c = 0
        If pt > 127 Then
            n = pt - 127
            For b = 0 To (n - 1)
                For iBul = (l + 2) To ((BytesToRead + (l + 2)) - 1)
                    outBuf = outBuf & Chr$(cRead.GetByteAt(iBul))
                Next
                bufi = bufi + BytesToRead
            Next b
            l = BytesToRead + 1 + l
            n = c + (n * BytesToRead) + 1
        Else
            n = pt + 1
            tLength = n * BytesToRead
            For iBul = (l + 2) To ((tLength + (l + 2)) - 1)
                outBuf = outBuf & Chr$(cRead.GetByteAt(iBul))
            Next
            c = c + tLength
            bufi = bufi + c
            l = (n * BytesToRead + 1) + l
            n = c + n
        End If
    Wend
    Call cRead.SetFileData(outBuf)
End Sub

Feel free to use it, I still think it looks like crap though.
Title: Re: TGA Icon Extrapolation
Post by: Joe[x86] on October 05, 2006, 07:13 AM
What VB code doesn't?
Title: Re: TGA Icon Extrapolation
Post by: Mystical on October 05, 2006, 07:24 AM
this doesn't look like crap.

Debug.Print "vb6 rocks out with the cock out"
Title: Re: TGA Icon Extrapolation
Post by: Joe[x86] on October 05, 2006, 11:42 AM
Yes it does. It looks horrible. Java is much more ellegent.

public static void main(String args[])
{
    System.out.println("Visual Basic is fugly and nothing you do or say will ever change that.");
}


Also, check out this nifty calculator I wrote. Fugly.

Private Sub cmdClear_Click()
    txtEquation = ""
End Sub

Private Sub cmdEquals_Click()
    txtEquation = sc.Eval(txtEquation)
End Sub

Private Sub cmdMul_Click()
    txtEquation = txtEquation & "*"
End Sub
Private Sub cmdDiv_Click()
    txtEquation = txtEquation & "/"
End Sub

Private Sub cmdAdd_Click()
    txtEquation = txtEquation & "+"
End Sub

Private Sub cmdSub_Click()
    txtEquation = txtEquation & "-"
End Sub

Private Sub cmdCalculatorKey_Click(Index As Integer)
    txtEquation = txtEquation & CStr(Index)
End Sub
Title: Re: TGA Icon Extrapolation
Post by: l)ragon on October 05, 2006, 06:21 PM
Quote from: Joex86] link=topic=15785.msg159451#msg159451 date=1160066553]
Yes it does. It looks horrible. Java is much more ellegent.

public static void main(String args[])
{
    System.out.println("Visual Basic is fugly and nothing you do or say will ever change that.");
}

Sub Main()
    MsgBox "Messy java code soon to be detected." + vbCrLf + vbCrLf + _
           "To format C: please press OK or just close this message box.", vbCritical, "Fatal-Error"
End Sub


Quote from: Joex86] link=topic=15785.msg159451#msg159451 date=1160066553]
Also, check out this nifty calculator I wrote. Fugly.

Private Sub cmdClear_Click()
    txtEquation = ""
End Sub

Private Sub cmdEquals_Click()
    txtEquation = sc.Eval(txtEquation)
End Sub

Private Sub cmdMul_Click()
    txtEquation = txtEquation & "*"
End Sub
Private Sub cmdDiv_Click()
    txtEquation = txtEquation & "/"
End Sub

Private Sub cmdAdd_Click()
    txtEquation = txtEquation & "+"
End Sub

Private Sub cmdSub_Click()
    txtEquation = txtEquation & "-"
End Sub

Private Sub cmdCalculatorKey_Click(Index As Integer)
    txtEquation = txtEquation & CStr(Index)
End Sub

That is such a waste of memory.
Title: Re: TGA Icon Extrapolation
Post by: UserLoser on October 05, 2006, 07:18 PM
(http://forums.clubrsx.com/images/smilies/beat-dead-horse.gif)
Title: Re: TGA Icon Extrapolation
Post by: Mystical on October 05, 2006, 07:47 PM
HAHA LOVE IT!
Title: Re: TGA Icon Extrapolation
Post by: Warrior on October 06, 2006, 01:59 PM
Quote from: Joex86] link=topic=15785.msg159451#msg159451 date=1160066553]
Yes it does. It looks horrible. Java is much more ellegent.

public static void main(String args[])
{
System.out.println("Visual Basic is fugly and nothing you do or say will ever change that.");
}

By elegant if you mean cross compatible then yes, you're right. Bear in mind that it's only possible advantage. It's not nearly as a great as you make it out to be
Title: Re: TGA Icon Extrapolation
Post by: l)ragon on October 06, 2006, 07:06 PM
Anyways back to the topic wtf would you want to extract them anyways, there's no need for that when you could use them directly with a few tricks.
Title: Re: TGA Icon Extrapolation
Post by: Zakath on October 27, 2006, 01:41 PM
Quote from: Joex86] link=topic=15785.msg159451#msg159451 date=1160066553]
Yes it does. It looks horrible. Java is much more ellegent.

You misspelled 'elegant.'
Title: Re: TGA Icon Extrapolation
Post by: Hero on October 27, 2006, 05:19 PM
Quote from: Zakath on October 27, 2006, 01:41 PM
Quote from: Joex86] link=topic=15785.msg159451#msg159451 date=1160066553]
Yes it does. It looks horrible. Java is much more ellegent.

You misspelled 'elegant.'

Owned, imo.