]> 4ch.mooo.com Git - 16.git/blobdiff - src/lib/16text.h
updated the copyleft wwww i am not deAD! i just been 2 busy last 6 monthes
[16.git] / src / lib / 16text.h
old mode 100644 (file)
new mode 100755 (executable)
index 9f0034e..3a07783
@@ -1,3 +1,24 @@
+/* Project 16 Source Code~\r
+ * Copyright (C) 2012-2018 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
+ *\r
+ * This file is part of Project 16.\r
+ *\r
+ * Project 16 is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * Project 16 is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
+ * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
+ * Fifth Floor, Boston, MA 02110-1301 USA.\r
+ *\r
+ */\r
 /*\r
  * This is the text subsystem for project 16.\r
  * These functions provide for the rendering of text strings\r
  * They copy the font characters directly to VGA.\r
  */\r
 #ifndef TEXT_H\r
-#define TEXT_H
-#include <jstring.h>
+#define TEXT_H\r
+#ifdef __WATCOMC__\r
+#include <jstring.h>\r
 #include <jctype.h>\r
-#include "src/lib/types.h"\r
+#endif\r
+#include "src/lib/16_head.h"\r
 \r
 /* font information type */\r
 typedef struct font {\r
@@ -17,8 +40,17 @@ typedef struct font {
     byte  charSize;  //bytes in each character\r
 } font_t;\r
 \r
+typedef struct fontdata {\r
+       byte z[9];\r
+       byte col;       //color\r
+       byte bgcol;             //bg color!\r
+       word chw;               //char width\r
+       byte l[1024];\r
+} fontdata_t;\r
+\r
 /* storage for the rom fonts */\r
 extern font_t romFonts[4];\r
+extern fontdata_t romFontsData;\r
 #define ROM_FONT_8x14     0\r
 #define ROM_FONT_8x8_LOW  1\r
 #define ROM_FONT_8x8_HIGH 2\r