Welcome to Anything Forums! We are a general discussion forum that believes in freedom of expression and aim to provide a low moderation (within reasonable means) environment to discuss any topic. If you want to join, simply click HERE to be taken to our account management system where you can make an account. If you had an account at iceteks.com, anythingforums.com, uovalor.com or uogateway.com in the past it has been transfered over and you can simply do a password reset.
/// decompresses until no more complete packets are left (half packets might remain)
/// pops (reads+removes complete packets) from in and pushes (writes complete packets) onto out
void HuffmanDecompress (cFIFO *pInFifo, cFIFO *pOutFifo) {
while (HuffmanDecompressOne(pInFifo,pOutFifo)) ;
}
/// returns true if packet was complete
/// pops (reads+removes) data out of infifo if and only if packet is complete
/// pushes (writes) data into outfifo if and only if packet is complete (implemented via rollback on incomplete packet end)
/// reads no more than 1 packet
bool HuffmanDecompressOne (cFIFO *pInFifo, cFIFO *pOutFifo) {
assert(pInFifo && "HuffmanDecompress : pInFifo missing");
assert(pOutFifo && "HuffmanDecompress : pOutFifo missing");
if (pInFifo->size() == 0) return false; // nothing to do
int bit_num = 8;
int treepos = 0;
int value = 0;
int mask = 0;
const unsigned char * psrc = (const unsigned char *)pInFifo->HackGetRawReader();//reinterpret_cast<const unsigned char *>(src);
int len = pInFifo->size();//src_size; // len will decrease
//int dest_index = 0;
// char *rw = mpInBuffer->HackGetRawWriter(kConMinRecvSpace);
// int fs = mpInBuffer->HackGetFreeSpace();
// prepare rollback
int iOutSizeBefore = pOutFifo->size();
while ( true ) {
if(bit_num == 8)
{
// End of input.
if(len == 0)
{
//dest_size = dest_index;
// src_size is unchanged
// if (treepos != 0) { printf("FATAL ! decompression error
"); exit(42); }
// rollback
// remove pushed bytes from out
pOutFifo->HackSubLength(pOutFifo->size() - iOutSizeBefore);
if(treepos <= 0) // this is a leaf.
{
if(treepos == -256) // special flush character, marks end of packet
{
bit_num = 8; // flush rest of byte
treepos = 0; // start on tree top again
// commit here, marks end of one uo packet
pInFifo->PopRaw(pInFifo->size() - len);
return true;
}
pOutFifo->PushUint8(-treepos); // data is negative value
treepos = 0; // start on tree top again
}
}
}
// ***** ***** ***** ***** ***** COMPRESSION
// compiler directives so we need as little change to the runuo2 source as possible (avoid errors)
typedef unsigned char byte;
// compress routine from runuo2, almost exactly copyed
// only needed for testing decompression
void HuffmanCompress ( byte* input, int length, out byte* &output, out int &outputLength )
{
if ( length >= m_OutputBufferLength )
{
output = null;
outputLength = length;
return;
}
lock ( m_SyncRoot )
{
int holdCount = 0;
int holdValue = 0;
That looks familiar... I forget what its called or how it works, but I remember seeing that before, think its based on logic gates or something, I forget.
Archived topic from Anythingforums, old topic ID:4, old post ID:64029
Honk if you love Jesus, text if you want to meet Him!
Jeff wrote: [<->-[<->-[<->-[<->-[<->-[<->-[<->-[<->-[<->-[<<<+>---------->->[-]]]]]]]]]]]<
]
<<[>>++++++++++++[<++++<++++>>-]<<[.[-]>]<<]
>[<++++++[>++++++++<-]>.[-]]<<
<<<.<<<<<.[<]>>>>>>>>>.<<<<<..>>>>>>>>.>>>>>>>.
I totally agree.
Archived topic from Anythingforums, old topic ID:4, old post ID:64030
"Your neighbor was kind enough to let us rip him off and burn his furniture for no reason."-ATHF
"He said no, Err. With his foot." -ATHF
"Please, stop fueling my silent rage." -ATHF
public class AnythingForums{
String Goalguarder12 = "alive";
String Admin = "RedSquirrel";
String RedSquirrel = "alive";
public AnythingForums(){
String Goalguarder12 = "Member";
}
public AnythingForums(String a){
Goalguarder12 = a;
}
public String killAdmin(){
If (Admin.equals"RedSquirrel"){
Admin = "Goalguarder12";
RedSquirrel = "Deceased";
}
else{
Admin = "Goalguarder12";
}
return Admin;
}
my code i made up that makes me admin and kills red...it's epic. written in Java
Archived topic from Anythingforums, old topic ID:4, old post ID:64032
"Your neighbor was kind enough to let us rip him off and burn his furniture for no reason."-ATHF
"He said no, Err. With his foot." -ATHF
"Please, stop fueling my silent rage." -ATHF
@ECHO OFF
:start
set nub=%random%
title Guess that Number - http://www.lamezz.com
cls
set /p new=Enter Number:^>
if "%new%" equ "showmetitle" goto show
if "%new%" equ "%nub%" goto crr
if "%new%" neq "%nub%" goto err
:crr
msg * Correct!
goto start
:err
msg * Incorrect!
goto start
:show
cls
set nub=%random%
title %nub% - Type cheatoff, to turn off cheat.
ECHO Cheat On.
ECHO.
set /p new=Enter Number:^>
if "%new%" equ "cheatoff" goto start
if "%new%" equ "%nub%" goto crr1
if "%new%" neq "%nub%" goto err1
:crr1
msg * Correct!
goto show
:err1
msg * Incorrect!
goto show
to run it copy and paste it in notepad, and save it as whatever.bat then double click on the wheel icon
Archived topic from Anythingforums, old topic ID:4, old post ID:64036
Archived topic from Anythingforums, old topic ID:4, old post ID:64040
"Your neighbor was kind enough to let us rip him off and burn his furniture for no reason."-ATHF
"He said no, Err. With his foot." -ATHF
"Please, stop fueling my silent rage." -ATHF
Chris Vogel wrote: Programming is torture. I’ve got to change majors.
I was thinking about taking up software engineering in college maybe...but then i decided not.
I love programming...but it hate it. I could never do it for a living unless maybe it was for video games...
Archived topic from Anythingforums, old topic ID:4, old post ID:64048
"Your neighbor was kind enough to let us rip him off and burn his furniture for no reason."-ATHF
"He said no, Err. With his foot." -ATHF
"Please, stop fueling my silent rage." -ATHF