You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.9 KiB
112 lines
2.9 KiB
#ifndef MAKEDOC_H
|
|
#define MAKEDOC_H
|
|
// based on: MakeDoc, version 2
|
|
// I only took the tBuf class from there and adapted it.
|
|
//
|
|
// Compresses text files into a format that is ready to export to a Pilot
|
|
// and work with Rick Bram's PilotDOC reader.
|
|
// Copyright (C) Reinhold Kainhofer, 2002
|
|
// Copyrigth (C) Pat Beirne, 2000
|
|
//
|
|
// Original file (makedoc9.cpp) copyright by:
|
|
// Copyright (C) Pat Beirne, 2000.
|
|
// Distributable under the GNU General Public License Version 2 or later.
|
|
//
|
|
// ver 0.6 enforce 31 char limit on database names
|
|
// ver 0.7 change header and record0 to structs
|
|
// ver 2.0 added category control on the command line
|
|
// changed extensions from .prc to .pdb
|
|
|
|
/*
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program in a file called COPYING; if not, write to
|
|
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
** MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
typedef unsigned char byte;
|
|
typedef unsigned long DWORD;
|
|
typedef unsigned short WORD;
|
|
|
|
#define DISP_BITS 11
|
|
#define COUNT_BITS 3
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
///////////////////// //////////////////////
|
|
///////////////////// tBuf class //////////////////////
|
|
///////////////////// //////////////////////
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
class tBuf {
|
|
private:
|
|
// byte hichar[10];
|
|
// int hicharnum;
|
|
// bool space;
|
|
|
|
byte * buf;
|
|
unsigned len;
|
|
bool isCompressed;
|
|
public:
|
|
tBuf() {
|
|
buf = 0L;
|
|
len=0;
|
|
isCompressed=false;
|
|
};
|
|
|
|
~tBuf()
|
|
{
|
|
if (buf)
|
|
delete[]buf;
|
|
}
|
|
|
|
void Clear() {
|
|
delete[]buf;
|
|
buf = 0L;
|
|
}
|
|
void setText(const byte * text, unsigned int txtlen =
|
|
0, bool txtcomp = false);
|
|
byte *text() const {
|
|
return buf;
|
|
}
|
|
unsigned Len() const {
|
|
return len;
|
|
}
|
|
void setCompressed(bool compressed = true) {
|
|
isCompressed = compressed;
|
|
}
|
|
bool compressed() const {
|
|
return isCompressed;
|
|
}
|
|
unsigned RemoveBinary();
|
|
unsigned DuplicateCR();
|
|
|
|
unsigned Decompress();
|
|
unsigned Compress();
|
|
|
|
private:
|
|
unsigned Issue(byte src, int &bSpace);
|
|
void Dump() const {
|
|
printf("\nbuffer len=%d", len);
|
|
}};
|
|
|
|
|
|
#endif
|