diff options
Diffstat (limited to 'doc/sources/ttx')
-rw-r--r-- | doc/sources/ttx/Makefile.am | 9 | ||||
-rw-r--r-- | doc/sources/ttx/README | 3 | ||||
-rwxr-xr-x | doc/sources/ttx/compile-c++ | 8 | ||||
-rw-r--r-- | doc/sources/ttx/fmt_codec_ttx.cpp | 116 | ||||
-rw-r--r-- | doc/sources/ttx/fmt_codec_ttx.h | 37 | ||||
-rw-r--r-- | doc/sources/ttx/fmt_codec_ttx_defs.h | 27 |
6 files changed, 200 insertions, 0 deletions
diff --git a/doc/sources/ttx/Makefile.am b/doc/sources/ttx/Makefile.am new file mode 100644 index 0000000..4b3418e --- /dev/null +++ b/doc/sources/ttx/Makefile.am @@ -0,0 +1,9 @@ +INCLUDES = -I.. -I../include + +lib_LTLIBRARIES = libSQ_codec_ttx.la + +libSQ_codec_ttx_la_SOURCES = fmt_codec_ttx.cpp fmt_codec_ttx_defs.h + +libSQ_codec_ttx_la_LDFLAGS = -release 0.1.0 + +libSQ_codec_ttx_la_LIBADD = diff --git a/doc/sources/ttx/README b/doc/sources/ttx/README new file mode 100644 index 0000000..ce1269e --- /dev/null +++ b/doc/sources/ttx/README @@ -0,0 +1,3 @@ +this example should be compiled in ksquirrel-libs' tree. +Put this directory in ksquirrel-libs/kernel, then cd to "ttx" and +run ./compile-c++
\ No newline at end of file diff --git a/doc/sources/ttx/compile-c++ b/doc/sources/ttx/compile-c++ new file mode 100755 index 0000000..86d3acb --- /dev/null +++ b/doc/sources/ttx/compile-c++ @@ -0,0 +1,8 @@ +#!/bin/sh + +rm -f libkls_ttx.so + +g++ -I. -I../include -Wall -O2 -fPIC -c fmt_codec_ttx.cpp +g++ -I. -I../include -Wall -O2 -fPIC -c ../kls_lib/fileio.cpp +g++ -Wall -shared fileio.o fmt_codec_ttx.o -o libkls_ttx.so +rm -f fmt_codec_ttx.o fileio.o
\ No newline at end of file diff --git a/doc/sources/ttx/fmt_codec_ttx.cpp b/doc/sources/ttx/fmt_codec_ttx.cpp new file mode 100644 index 0000000..40c9f5d --- /dev/null +++ b/doc/sources/ttx/fmt_codec_ttx.cpp @@ -0,0 +1,116 @@ +/* This file is part of ksquirrel-libs (http://ksquirrel.sf.net) + + Copyright (c) 2005 Dmitry Baryshev <[email protected]> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later + version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include <iostream> + +#include "ksquirrel-libs/fmt_types.h" +#include "ksquirrel-libs/fileio.h" + +#include "fmt_codec_ttx_defs.h" +#include "fmt_codec_ttx.h" + +#include "ksquirrel-libs/error.h" + +fmt_codec::fmt_codec() : fmt_codec_base() +{} + +fmt_codec::~fmt_codec() +{} + +void fmt_codec::options(codec_options *o) +{ + o->version = "0.1.0"; + o->name = ""; + o->filter = "*. "; + o->mime = ""; + o->pixmap = ""; + o->config = ""; + o->readable = true; + o->writestatic = false; + o->writeanimated = false; + o->canbemultiple = false; + o->needtempfile = false; +} + +s32 fmt_codec::read_init(const std::string &file) +{ + frs.open(file.c_str(), ios::binary | ios::in); + + if(!frs.good()) + return SQE_R_NOFILE; + + currentImage = -1; + read_error = false; + + finfo.animated = false; + + return SQE_OK; +} + +s32 fmt_codec::read_next() +{ + currentImage++; + + if(currentImage) + return SQE_NOTOK; + + fmt_image image; + +/* + image.w = + image.h = + image.bpp = +*/ + + image.compression = ""; + image.colorspace = ""; + + finfo.image.push_back(image); + + return SQE_OK; +} + +s32 fmt_codec::read_next_pass() +{ + return SQE_OK; +} + +s32 fmt_codec::read_scanline(RGBA *scan) +{ + RGB rgb; + RGBA rgba; + fmt_image *im = image(currentImage); + + memset(scan, 255, im->w * sizeof(RGBA)); + + + return SQE_OK; +} + +void fmt_codec::read_close() +{ + frs.close(); + + finfo.meta.clear(); + finfo.image.clear(); +} + +#include "fmt_codec_cd_func.h" diff --git a/doc/sources/ttx/fmt_codec_ttx.h b/doc/sources/ttx/fmt_codec_ttx.h new file mode 100644 index 0000000..fd44432 --- /dev/null +++ b/doc/sources/ttx/fmt_codec_ttx.h @@ -0,0 +1,37 @@ +/* This file is part of ksquirrel-libs (http://ksquirrel.sf.net) + + Copyright (c) 2005 Dmitry Baryshev <[email protected]> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later + version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef KSQUIRREL_LIBS_CLASS_DEFINITION_ttx_H +#define KSQUIRREL_LIBS_CLASS_DEFINITION_ttx_H + +#include "ksquirrel-libs/fmt_codec_base.h" + +class fmt_codec : public fmt_codec_base +{ + public: + + BASE_CODEC_DECLARATIONS + + private: + // define variables you need here +}; + +#endif diff --git a/doc/sources/ttx/fmt_codec_ttx_defs.h b/doc/sources/ttx/fmt_codec_ttx_defs.h new file mode 100644 index 0000000..bd8bdcb --- /dev/null +++ b/doc/sources/ttx/fmt_codec_ttx_defs.h @@ -0,0 +1,27 @@ +/* This file is part of ksquirrel-libs (http://ksquirrel.sf.net) + + Copyright (c) 2005 Dmitry Baryshev <[email protected]> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later + version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef KSQUIRREL_CODEC_DEFS_ttx +#define KSQUIRREL_CODEC_DEFS_ttx + +// define constants here + +#endif |