Files
kichikuou 2ed44dab6d Move surface and graphic functions from modules/lib to modules/Gpx
Except for gr_blend_alpha_map(), which is used by oujimisc.
2025-02-19 14:57:40 +09:00

86 lines
2.2 KiB
C

/*
* graph_copy_amap.c alpha map のコピー
*
* 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: graph_copy_amap.c,v 1.2 2003/04/25 17:23:55 chikama Exp $ */
#include <string.h>
#include "portab.h"
#include "system.h"
#include "surface.h"
#include "ngraph.h"
#include "ags.h"
/**
* 指定の surface の alphamap を別の surface の指定領域にコピーする
*
* @param dst: 転送先 surface
* @param dx: 転送先X座標
* @param dy: 転送先Y座標
* @param src: 転送元surface
* @param sx: 転送元X座標
* @param sy: 転送元Y座標
* @param sw: 転送幅
* @param sh: 転送高さ
*/
void gr_copy_alpha_map(surface_t *dst, int dx, int dy, surface_t *src, int sx, int sy, int sw, int sh) {
uint8_t *sp, *dp;
if (!gr_clip(src, &sx, &sy, &sw, &sh, dst, &dx, &dy)) return;
sp = GETOFFSET_ALPHA(src, sx, sy);
dp = GETOFFSET_ALPHA(dst, dx, dy);
if (sp == NULL) {
WARNING("src alpha NULL");
return;
}
if (dp == NULL) {
WARNING("dst alpha NULL");
return;
}
if (src == dst) {
if (sy <= dy && dy < (sy + sh)) {
sp += (sh -1) * src->width;
dp += (sh -1) * dst->width;
while(sh--) {
memmove(dp, sp, sw);
sp -= src->width;
dp -= dst->width;
}
} else {
while(sh--) {
memmove(dp, sp, sw);
sp += src->width;
dp += dst->width;
}
}
} else {
while(sh--) {
memcpy(dp, sp, sw);
sp += src->width;
dp += dst->width;
}
}
}