Files
kichikuou_xsystem35-sdl2/modules/lib/surface.c
T
kichikuou 29a139c8a1 Use the standard integer types
This replaces BYTE, WORD and DWORD types with uint8_t, uint16_t and
uint32_t respectively.
2022-10-29 09:34:21 +09:00

187 lines
4.1 KiB
C

#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "portab.h"
#include "surface.h"
#include "system.h"
static surface_t *create(int width, int height, int depth, boolean has_pixel, boolean has_alpha) {
surface_t *s = calloc(1, sizeof(surface_t));
s->width = width;
s->height = height;
s->bytes_per_line = width;
s->bytes_per_pixel = 1;
s->depth = depth;
if (has_pixel) {
switch (s->depth) {
case 8:
s->pixel = calloc(width * (height +1), sizeof(uint8_t));
s->bytes_per_line = width;
s->bytes_per_pixel = 1;
break;
case 16:
s->pixel = calloc(width * (height +1) * 2, sizeof(uint8_t));
s->bytes_per_line = width * 2;
s->bytes_per_pixel = 2;
break;
case 24:
case 32:
s->pixel = calloc(width * (height +1) * 4, sizeof(uint8_t));
s->bytes_per_line = width * 4;
s->bytes_per_pixel = 4;
break;
default:
WARNING("depth %d is not supported", s->depth);
}
}
if (has_alpha) {
s->alpha = calloc(width * (height +1), sizeof(uint8_t));
}
return s;
}
/**
* surfaceの生成 (pixel + alpha)
* @param width: surfaceの幅
* @param height: surfaceの高さ
* @param depth: surfaceのpixelのBPP (8|16|24|32), alphaは8固定
* @return 生成した surface オブジェクト
*/
surface_t *sf_create_surface(int width, int height, int depth) {
return create(width, height, depth, TRUE, TRUE);
}
/**
* surfaceの生成 (alphaのみ)
* @param width: surfaceの幅
* @param height: surfaceの高さ
* @return 生成した surface オブジェクト
*/
surface_t *sf_create_alpha(int width, int height) {
return create(width, height, 8, FALSE, TRUE);
}
/**
* surfaceの生成 (pixelのみ)
* @param width: surfaceの幅
* @param height: surfaceの高さ
* @param depth: surfaceのBPP(8|16|24|32)
* @return 生成した surface オブジェクト
*/
surface_t *sf_create_pixel(int width, int height, int depth) {
return create(width, height, depth, TRUE, FALSE);
}
/**
* surfaceオブジェクトの開放
* @param s: 開放するオブジェクト
* @return: なし
*/
void sf_free(surface_t *s) {
if (s == NULL) return;
if (s->pixel) free(s->pixel);
if (s->alpha) free(s->alpha);
free(s);
}
/**
* surface の複製を作成(dupulicate)
* @param in: 複製もと
* @return : 複製したsurface
*/
surface_t *sf_dup(surface_t *in) {
surface_t *sf;
int len;
if (in == NULL) return NULL;
sf = malloc(sizeof(surface_t));
memcpy(sf, in, sizeof(surface_t));
if (in->pixel) {
len = sf->bytes_per_line * sf->height;
sf->pixel = malloc(sizeof(uint8_t) * (len + sf->bytes_per_line));
memcpy(sf->pixel, in->pixel, len);
}
if (in->alpha) {
len = sf->width * sf->height;
sf->alpha = malloc(sizeof(uint8_t) * (len + sf->width));
memcpy(sf->alpha, in->alpha, len);
}
return sf;
}
/**
* surface全体のコピー
* @param dst: コピー先 surface
* @param src: コピー元 surface
* @return なし
*/
void sf_copyall(surface_t *dst, surface_t *src) {
int len;
if (src == NULL || dst == NULL) return;
if (src->width != dst->width) return;
if (src->height != dst->height) return;
if (src->bytes_per_pixel != dst->bytes_per_pixel) return;
if (src->alpha && dst->alpha) {
len = src->width * src->height;
memcpy(dst->alpha, src->alpha, len);
}
if (src->pixel && dst->pixel) {
len = src->bytes_per_line * src->height;
memcpy(dst->pixel, src->pixel, len);
}
}
/**
* surface の複製
* @param in: 複製もと
* @param copypixel: pixelをコピーするか
* @param copyalpha: alpha pixel をコピーするか
* @return: 複製した surface
*/
surface_t *sf_dup2(surface_t *in, boolean copypixel, boolean copyalpha) {
surface_t *sf;
int len;
if (in == NULL) return NULL;
sf = malloc(sizeof(surface_t));
memcpy(sf, in, sizeof(surface_t));
if (in->pixel) {
len = sf->bytes_per_line * sf->height;
sf->pixel = malloc(sizeof(uint8_t) * (len + sf->bytes_per_line));
if (copypixel) {
memcpy(sf->pixel, in->pixel, len);
}
}
if (in->alpha) {
len = sf->width * sf->height;
sf->alpha = malloc(sizeof(uint8_t) * (len + sf->width));
if (copyalpha) {
memcpy(sf->alpha, in->alpha, len);
}
}
return sf;
}