1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/*
* cg.c DLLѤ CG surface Ÿ
*
* Copyright (C) 1997-1998 Masaki Chikama (Wren) <chikama@kasumi.ipl.mech.nagoya-u.ac.jp>
* 1998- <masaki-c@is.aist-nara.ac.jp>
*
* 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; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* $Id: cg.c,v 1.2 2003/04/22 16:29:52 chikama Exp $ */
#include "config.h"
#include <stdio.h>
#include <glib.h>
#include "portab.h"
#include "system.h"
#include "surface.h"
#include "cg.h"
#include "ags.h"
#include "pms.h"
#include "qnt.h"
#include "ngraph.h"
#include "dri.h"
#include "ald_manager.h"
/**
* ХåեΥǡɤCGǽοХȤߤƥå
*
* @param data: ǡ
* @return CGμ(QNT/PMS8/PMS16Τ줫)
*/
static CG_TYPE check_cgformat(BYTE *data) {
if (qnt_checkfmt(data)) {
return ALCG_QNT;
} else if (pms256_checkfmt(data)) {
return ALCG_PMS8;
} else if (pms64k_checkfmt(data)) {
return ALCG_PMS16;
}
return ALCG_UNKNOWN;
}
/**
* եɤ߹CGǡsurfaceŸ
*
* @param b: ǡ
* @return CG Ÿ줿 surface
* ̤ΤηΤȤ NULL ֤
*/
surface_t *sf_getcg(void *b) {
surface_t *sf = NULL;
int type;
cgdata *cg = NULL;
type = check_cgformat(b);
switch(type) {
case ALCG_PMS8:
cg = pms256_extract(b);
break;
case ALCG_PMS16:
cg = pms64k_extract(b);
break;
case ALCG_QNT:
cg = qnt_extract(b);
break;
default:
break;
}
if (cg == NULL) {
WARNING("Unknown Cg Type\n");
return NULL;
}
switch(type) {
case ALCG_PMS8:
sf = sf_create_alpha(cg->width, cg->height);
gr_draw_amap(sf, cg->x, cg->y, cg->pic, cg->width, cg->height, cg->width);
break;
case ALCG_PMS16:
if (cg->alpha) {
sf = sf_create_surface(cg->width, cg->height, sf0->depth);
gr_drawimage16(sf, cg, cg->x, cg->y);
gr_draw_amap(sf, cg->x, cg->y, cg->alpha, cg->width, cg->height, cg->width);
} else {
sf = sf_create_pixel(cg->width, cg->height, sf0->depth);
gr_drawimage16(sf, cg, cg->x, cg->y);
}
break;
case ALCG_QNT:
if (cg->alpha) {
sf = sf_create_surface(cg->width, cg->height, sf0->depth);
gr_drawimage24(sf, cg, cg->x, cg->y);
gr_draw_amap(sf, cg->x, cg->y, cg->alpha, cg->width, cg->height, cg->width);
} else {
sf = sf_create_pixel(cg->width, cg->height, sf0->depth);
gr_drawimage24(sf, cg, cg->x, cg->y);
}
break;
}
if (cg->pic) g_free(cg->pic);
if (cg->pal) g_free(cg->pal);
if (cg->alpha) g_free(cg->alpha);
g_free(cg);
return sf;
}
/**
* ALDե뤫ֹCGɤ߹ surfaceŸ
*
* @param no: եֹ (0-)
* @return CGŸ줿 surface
*/
surface_t *sf_loadcg_no(int no) {
dridata *dfile;
surface_t *sf;
if (NULL == (dfile = ald_getdata(DRIFILE_CG, no))) {
return NULL;
}
sf = sf_getcg(dfile->data);
ald_freedata(dfile);
return sf;
}
|