Codebase list mirage / 376f0b3c-acea-4859-aa40-08a5f3c80d3b/main mirage / imgfuncs.c
376f0b3c-acea-4859-aa40-08a5f3c80d3b/main

Tree @376f0b3c-acea-4859-aa40-08a5f3c80d3b/main (Download .tar.gz)

imgfuncs.c @376f0b3c-acea-4859-aa40-08a5f3c80d3b/mainraw · history · blame

#include "Python.h"
/**
 * copy length chars from source to dest
 */
void copy(char *dest, const char *source, const int length)
{
	int i;
	for(i=0; i< length; i++, dest++, source++)
		*dest = *source;
}

/* Wrapper methods */
PyObject *rotate_right(PyObject *self, PyObject *args)
{
	char *a1;
	char *a2;
	int length;
	int w1, w2;
	int h1, h2;
	int rws1, rws2;
	int psz;
	int i1, i2;
	int x1, y1;
	PyObject *ret;
	
	/* Get Python Arguments */
	if(!PyArg_ParseTuple(args, "y#iiii", &a1, &length, &w1, &h1, &rws1, &psz)) 
	{
		return NULL;
	}
	
	/* Do the mirroring */
	w2 = h1;
	h2 = w1;
	
	if(w2 % 4 != 0)
		rws2 = ((w2/4 + 1) * 4) * psz;
	else
		rws2 = w2 * psz;

	length = rws2 * h2;
	a2 = malloc(length);
	
	for(x1=0; x1<w1; x1++)
	{
		for(y1=0; y1<h1; y1++)
		{
			i1 = y1 * rws1 + x1 * psz;
			i2 = (h1 - 1 - y1) * psz + rws2 * x1;
			copy(a2 + i2, a1 + i1, psz);
		}
	}
	
	ret = Py_BuildValue("y#iii", a2, length, w2, h2, rws2);
	free(a2);
	
	return ret;
}

PyObject *rotate_left(PyObject *self, PyObject *args)
{
	char *a1;
	char *a2;
	int length;
	int w1, w2;
	int h1, h2;
	int rws1, rws2;
	int psz;
	int i1, i2;
	int x1, y1;
	PyObject *ret;
	
	/* Get Python Arguments */
	if(!PyArg_ParseTuple(args, "y#iiii", &a1, &length, &w1, &h1, &rws1, &psz)) 
	{
		return NULL;
	}
	
	/* Do the mirroring */
	w2 = h1;
	h2 = w1;

	if(w2 % 4 != 0)
		rws2 = ((w2/4 + 1) * 4) * psz;
	else
		rws2 = w2 * psz;

	length = rws2 * h2;
	a2 = malloc(length);
	
	for(x1=0; x1<w1; x1++)
	{
		for(y1=0; y1<h1; y1++)
		{
			i1 = y1 * rws1 + x1 * psz;
			i2 = y1 * psz + rws2 * (w1 - 1 - x1);
			copy(a2 + i2, a1 + i1, psz);
		}
	}
	
	ret = Py_BuildValue("y#iii", a2, length, w2, h2, rws2);
	free(a2);
	
	return ret;
}

PyObject *rotate_mirror(PyObject *self, PyObject *args)
{
	char *a1;
	char *a2;
	int length;
	int w1, w2;
	int h1, h2;
	int rws1, rws2;
	int psz;
	int i1, i2;
	int x1, y1;
	PyObject *ret;
	
	/* Get Python Arguments */
	if(!PyArg_ParseTuple(args, "y#iiii", &a1, &length, &w1, &h1, &rws1, &psz)) 
	{
		return NULL;
	}
	
	/* Do the mirroring */
	w2 = w1;
	h2 = h1;
	rws2 = rws1;

	length = rws2 * h2;
	a2 = malloc(length);
	
	for(x1=0; x1<w1; x1++)
	{
		for(y1=0; y1<h1; y1++)
		{
			i1 = y1 * rws1 + x1 * psz;
			i2 = (w1 - 1 - x1) * psz + rws2 * (h1 - 1 - y1);
			copy(a2 + i2, a1 + i1, psz);
		}
	}
	
	ret = Py_BuildValue("y#iii", a2, length, w2, h2, rws2);
	free(a2);
	
	return ret;
}

PyObject *flip_vert(PyObject *self, PyObject *args)
{
	char *a1;
	char *a2;
	int length;
	int w1, w2;
	int h1, h2;
	int rws1, rws2;
	int psz;
	int i1, i2;
	int x1, y1;
	PyObject *ret;
	
	/* Get Python Arguments */
	if(!PyArg_ParseTuple(args, "y#iiii", &a1, &length, &w1, &h1, &rws1, &psz)) 
	{
		return NULL;
	}
	
	/* Do the mirroring */
	w2 = w1;
	h2 = h1;
	rws2 = rws1;

	length = rws2 * h2;
	a2 = malloc(length);
	
	for(x1=0; x1<w1; x1++)
	{
		for(y1=0; y1<h1; y1++)
		{
			i1 = y1 * rws1 + x1 * psz;
			i2 = x1 * psz + rws2 * (h1 - 1 - y1);
			copy(a2 + i2, a1 + i1, psz);
		}
	}
	
	ret = Py_BuildValue("y#iii", a2, length, w2, h2, rws2);
	free(a2);
	
	return ret;
}

PyObject *flip_horiz(PyObject *self, PyObject *args)
{
	char *a1;
	char *a2;
	int length;
	int w1, w2;
	int h1, h2;
	int rws1, rws2;
	int psz;
	int i1, i2;
	int x1, y1;
	PyObject *ret;
	
	/* Get Python Arguments */
	if(!PyArg_ParseTuple(args, "y#iiii", &a1, &length, &w1, &h1, &rws1, &psz)) 
	{
		return NULL;
	}
	
	/* Do the mirroring */
	w2 = w1;
	h2 = h1;
	rws2 = rws1;

	length = rws2 * h2;
	a2 = malloc(length);
	
	for(x1=0; x1<w1; x1++)
	{
		for(y1=0; y1<h1; y1++)
		{
			i1 = y1 * rws1 + x1 * psz;
			i2 = (w1 - 1 - x1) * psz + rws2 * y1;
			copy(a2 + i2, a1 + i1, psz);
		}
	}
	
	ret = Py_BuildValue("y#iii", a2, length, w2, h2, rws2);
	free(a2);
	
	return ret;
}

/* Method table mapping names to wrappers */
static PyMethodDef imgfuncs_methods[] = {
	{"left", rotate_left, METH_VARARGS},
	{"right", rotate_right, METH_VARARGS},
	{"mirror", rotate_mirror, METH_VARARGS},
	{"vert", flip_vert, METH_VARARGS},
	{"horiz", flip_horiz, METH_VARARGS},
	{NULL, NULL, 0}
};

static PyModuleDef imgfuncs_module = {
	PyModuleDef_HEAD_INIT,
	"imgfuncs",
	"Mirage image processing functions",
	-1,
	imgfuncs_methods
};

/* Module initialization function */
PyMODINIT_FUNC
PyInit_imgfuncs(void)
{
	return PyModule_Create(&imgfuncs_module);
}