Integrating android support.
This commit is contained in:
parent
51f2e90c7d
commit
d38b4abd68
8 changed files with 822 additions and 93 deletions
96
Android.mk
Normal file
96
Android.mk
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
########### Main tuxpaint library ###########
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := tuxpaint
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(LOCAL_PATH)/../SDL2/src/main/android \
|
||||
$(LOCAL_PATH)/src \
|
||||
$(LOCAL_PATH)/src/mouse \
|
||||
$(NULL)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
../SDL2/src/main/android/SDL_android_main.c \
|
||||
src/tuxpaint.c \
|
||||
src/i18n.c \
|
||||
src/im.c \
|
||||
src/get_fname.c \
|
||||
src/fonts.c \
|
||||
src/dirwalk.c \
|
||||
src/parse.c \
|
||||
src/cursor.c \
|
||||
src/pixels.c \
|
||||
src/playsound.c \
|
||||
src/progressbar.c \
|
||||
src/rgblinear.c \
|
||||
src/onscreen_keyboard.c \
|
||||
src/android_print.c \
|
||||
src/android_mbstowcs.c
|
||||
|
||||
MY_CFLAGS:= -O0 -g -W -Wall -fno-common -ffloat-store \
|
||||
-Wcast-align -Wredundant-decls \
|
||||
-Wbad-function-cast -Wwrite-strings \
|
||||
-Waggregate-return \
|
||||
-Wstrict-prototypes -Wmissing-prototypes \
|
||||
-Wstrict-aliasing=2
|
||||
|
||||
MY_VER_VERSION :=0.9.23
|
||||
MY_VER_DATE :=$(shell date +"%Y-%m-%d")
|
||||
MY_NOSOUNDFLAG :=
|
||||
# MY_NOSOUNDFLAG := -DNOSOUND
|
||||
MY_NOPANGOFLAG :=
|
||||
# MY_NOPANGOFLAG := -DNO_SDLPANGO
|
||||
MY_NOSVGFLAG :=
|
||||
# MY_NOSVGFLAG := -DNOSVG
|
||||
MY_INTERNAL_DIR := /data/data/org.tuxpaint/files
|
||||
# Data:
|
||||
MY_DATA_PREFIX := $(MY_INTERNAL_DIR)/data/
|
||||
# Doc files, but DOC_PREFIX is useless on the Android currently
|
||||
MY_DOC_PREFIX := $(MY_INTERNAL_DIR)/doc/
|
||||
# Locale files
|
||||
MY_LOCALE_PREFIX := $(MY_INTERNAL_DIR)/locale/
|
||||
# IM files
|
||||
MY_IM_PREFIX := $(MY_DATA_PREFIX)/im/
|
||||
# 'System-wide' Config file, but CONFDIR is useless on the Android currently
|
||||
MY_CONFDIR := $(MY_DATA_PREFIX)/etc/
|
||||
# Magic Tool plug-ins
|
||||
MY_MAGIC_PREFIX:= /data/data/org.tuxpaint/lib/
|
||||
|
||||
MY_DEFS := \
|
||||
-DVER_DATE=\"$(MY_VER_DATE)\" \
|
||||
-DVER_VERSION=\"$(MY_VER_VERSION)\" \
|
||||
-DDATA_PREFIX=\"$(MY_DATA_PREFIX)\" \
|
||||
-DDOC_PREFIX=\"$(MY_DOC_PREFIX)\" \
|
||||
-DLOCALEDIR=\"$(MY_LOCALE_PREFIX)\" \
|
||||
-DIMDIR=\"$(MY_IM_PREFIX)\" \
|
||||
-DCONFDIR=\"$(MY_CONFDIR)\" \
|
||||
-DMAGIC_PREFIX=\"$(MY_MAGIC_PREFIX)\" \
|
||||
-DHAVE_STRCASESTR \
|
||||
$(MY_NOSOUNDFLAG) $(MY_NOSVGFLAG) $(MY_NOPANGOFLAG)
|
||||
|
||||
LOCAL_CFLAGS := \
|
||||
$(MY_CFLAGS) \
|
||||
$(MY_DEFS)
|
||||
|
||||
LOCAL_LDLIBS := \
|
||||
-lz -llog -lGLESv1_CM -lGLESv2 \
|
||||
$(NULL)
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := SDL2 SDL2_image SDL2_mixer SDL2_ttf SDL2_Pango tuxpaint_intl tuxpaint_fribidi tuxpaint_png tuxpaint_rsvg tuxpaint_cairo
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
########### Magic plugin libraries ###########
|
||||
MAGIC_FILES := $(wildcard $(LOCAL_PATH)/magic/src/*.c)
|
||||
MAGIC_NAMES := $(patsubst %.c, %, $(notdir $(MAGIC_FILES)))
|
||||
$(foreach _magic, $(MAGIC_NAMES),\
|
||||
$(eval include $(CLEAR_VARS))\
|
||||
$(eval LOCAL_MODULE := $(_magic))\
|
||||
$(eval LOCAL_C_INCLUDES := $(LOCAL_PATH)/src)\
|
||||
$(eval MAGIC_CFLAGS:=-g3 -O2 -fno-common -W -Wstrict-prototypes -Wmissing-prototypes -Wall)\
|
||||
$(eval LOCAL_SRC_FILES := magic/src/$(_magic).c)\
|
||||
$(eval LOCAL_SHARED_LIBRARIES := SDL2 SDL2_image SDL2_mixer SDL2_ttf tuxpaint_intl)\
|
||||
$(eval include $(BUILD_SHARED_LIBRARY))\
|
||||
)
|
||||
|
|
@ -122,7 +122,7 @@ char * halftone_get_name(magic_api * api ATTRIBUTE_UNUSED, int which)
|
|||
const char * our_name_localized;
|
||||
|
||||
our_name_english = names[which];
|
||||
our_name_localized = gettext(our_name_english);
|
||||
our_name_localized = gettext_noop(our_name_english);
|
||||
|
||||
return(strdup(our_name_localized));
|
||||
}
|
||||
|
|
@ -133,7 +133,7 @@ char * halftone_get_description(magic_api * api ATTRIBUTE_UNUSED, int which, int
|
|||
const char * our_desc_localized;
|
||||
|
||||
our_desc_english = descs[which];
|
||||
our_desc_localized = gettext(our_desc_english);
|
||||
our_desc_localized = gettext_noop(our_desc_english);
|
||||
|
||||
return(strdup(our_desc_localized));
|
||||
}
|
||||
|
|
|
|||
87
src/android_mbstowcs.c
Normal file
87
src/android_mbstowcs.c
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
/*
|
||||
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
|
||||
(See COPYING.txt)
|
||||
*/
|
||||
|
||||
/*
|
||||
refer to https://tools.ietf.org/html/rfc3629
|
||||
Char. number range | UTF-8 octet sequence
|
||||
(hexadecimal) | (binary)
|
||||
--------------------+---------------------------------------------
|
||||
0000 0000-0000 007F | 0xxxxxxx
|
||||
0000 0080-0000 07FF | 110xxxxx 10xxxxxx
|
||||
0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx
|
||||
0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
|
||||
*/
|
||||
|
||||
#include "android_mbstowcs.h"
|
||||
#include <string.h>
|
||||
|
||||
// This implementation may be simple, but can work fine for all of Android devices
|
||||
size_t mbstowcs(wchar_t * __restrict pwcs, const char * __restrict s, size_t n){
|
||||
int length = strnlen (s, n);
|
||||
// w is the index of pwcs, s is the index of s
|
||||
int w = 0, c = 0;
|
||||
|
||||
while (1) {
|
||||
pwcs[w] = '\0';
|
||||
char first = s[c];
|
||||
int len = 0;
|
||||
if ((first & 0x80) == 0) {
|
||||
pwcs[w] = (wchar_t)s[c];
|
||||
len = 1;
|
||||
}
|
||||
else if ((first & 0xe0) == 0xc0) {
|
||||
pwcs[w] |= first & 0x1f;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+1] & 0x3f;
|
||||
len = 2;
|
||||
}
|
||||
else if ((first & 0xf0) == 0xe0) {
|
||||
pwcs[w] |= first & 0x0f;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+1] & 0x3f;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+2] & 0x3f;
|
||||
len = 3;
|
||||
}
|
||||
else if ((first & 0xf8) == 0xf0) {
|
||||
pwcs[w] |= first & 0x07;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+1] & 0x3f;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+2] & 0x3f;
|
||||
pwcs[w] <<= 6;
|
||||
pwcs[w] |= s[c+3] & 0x3f;
|
||||
len = 4;
|
||||
}
|
||||
else {
|
||||
return -1;
|
||||
}
|
||||
|
||||
c += len;
|
||||
w++;
|
||||
|
||||
if (c > length){
|
||||
pwcs[w] = '\0';
|
||||
return -1;
|
||||
}
|
||||
if (c == length){
|
||||
pwcs[w] = '\0';
|
||||
return w;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
36
src/android_mbstowcs.h
Normal file
36
src/android_mbstowcs.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
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
|
||||
(See COPYING.txt)
|
||||
*/
|
||||
|
||||
/*
|
||||
Why we need android_wchar.h here?
|
||||
Actually, Android NDK has wchar.h header file, and implements related functions.
|
||||
However, it is likely that Bionic C library implements those funtions in a very simple
|
||||
(or wrong ?) way on old Android devices ( API < 21), while they come to work on the new Android devices (API >= 21).
|
||||
Thus, tuxpaint im.c file depends on "mbstowcs" function which cannot work properly on old Android devices.
|
||||
Anyway, using our own implementation of "mbstowcs" can fix this problem.
|
||||
*/
|
||||
#ifndef TUXPAINT_ANDROID_SUPPORT_MBSTOWCS_H
|
||||
#define TUXPAINT_ANDROID_SUPPORT_MBSTOWCS_H
|
||||
|
||||
#include <wchar.h>
|
||||
|
||||
#undef mbsrtowcs
|
||||
|
||||
// redefine mbstowcs function
|
||||
size_t mbstowcs(wchar_t * __restrict pwcs, const char * __restrict s, size_t n);
|
||||
|
||||
#endif
|
||||
77
src/android_print.c
Normal file
77
src/android_print.c
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
/* android_print.cpp */
|
||||
|
||||
/* printing support for Tux Paint */
|
||||
|
||||
/*
|
||||
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
|
||||
(See COPYING.txt)
|
||||
|
||||
*/
|
||||
|
||||
// Based on JNI and PrintHelper class
|
||||
// https://developer.android.com/reference/android/support/v4/print/PrintHelper.html
|
||||
// https://developer.android.com/training/printing/photos.html
|
||||
|
||||
#include "android_print.h"
|
||||
#include "jni.h"
|
||||
|
||||
// Since Print work is based on Java PrintHelper class, which may not be supported on some old versions
|
||||
int IsPrinterAvailable( void )
|
||||
{
|
||||
JNIEnv *mEnv = Android_JNI_GetEnv();
|
||||
jclass mPrintHelperClass = (*mEnv)->FindClass(mEnv, "android/support/v4/print/PrintHelper");
|
||||
|
||||
if (mPrintHelperClass == NULL)
|
||||
return 0;
|
||||
|
||||
jmethodID mSupportMethod = (*mEnv)->GetStaticMethodID(mEnv, mPrintHelperClass, "systemSupportsPrint", "()Z");
|
||||
jboolean support = (*mEnv)->CallStaticBooleanMethod(mEnv, mPrintHelperClass, mSupportMethod);
|
||||
|
||||
return support ? 1 : 0;
|
||||
}
|
||||
|
||||
// This function is based on
|
||||
// (1) convert surface to Java BitMap object
|
||||
// (2) call Java PrintHelper to do print job.
|
||||
const char *SurfacePrint(SDL_Surface *surface)
|
||||
{
|
||||
JNIEnv *mEnv = Android_JNI_GetEnv();
|
||||
jclass mBitmapClass = (*mEnv)->FindClass(mEnv, "android/graphics/Bitmap");
|
||||
jmethodID mCreateMethod = (*mEnv)->GetStaticMethodID(mEnv, mBitmapClass, "createBitmap", "([IIILandroid/graphics/Bitmap$Config;)Landroid/graphics/Bitmap;");
|
||||
jintArray mSurfaceArray = (*mEnv)->NewIntArray(mEnv, surface->w * surface->h);
|
||||
(*mEnv)->SetIntArrayRegion(mEnv,mSurfaceArray, 0, surface->w * surface->h, surface->pixels);
|
||||
jclass mConfigClass = (*mEnv)->FindClass(mEnv, "android/graphics/Bitmap$Config");
|
||||
jfieldID mConfigField = (*mEnv)->GetStaticFieldID(mEnv, mConfigClass , "ARGB_8888", "Landroid/graphics/Bitmap$Config;");
|
||||
jobject mConfig = (*mEnv)->GetStaticObjectField(mEnv, mConfigClass, mConfigField);
|
||||
jobject mBitMap = (*mEnv)->CallStaticObjectMethod(mEnv, mBitmapClass, mCreateMethod, mSurfaceArray, surface->w, surface->h, mConfig);
|
||||
|
||||
jobject mContext = (jobject)SDL_AndroidGetActivity();
|
||||
jclass mPrintClass = (*mEnv)->FindClass(mEnv, "android/support/v4/print/PrintHelper");
|
||||
// sometimes android v4 support library may be not ready
|
||||
if (mPrintClass == NULL)
|
||||
return "There is no android v4 support library.";
|
||||
jmethodID mInitMethod = (*mEnv)->GetMethodID(mEnv, mPrintClass, "<init>", "(Landroid/content/Context;)V");
|
||||
jobject mPrint = (*mEnv)->NewObject(mEnv, mPrintClass, mInitMethod, mContext);
|
||||
jmethodID mPrintMethod = (*mEnv)->GetMethodID(mEnv, mPrintClass, "printBitmap", "(Ljava/lang/String;Landroid/graphics/Bitmap;)V");
|
||||
jstring mString = (*mEnv)->NewStringUTF(mEnv, "TuxPaint");
|
||||
(*mEnv)->CallVoidMethod(mEnv, mPrint, mPrintMethod, mString, mBitMap);
|
||||
|
||||
// clean up
|
||||
(*mEnv)->DeleteLocalRef(mEnv, mSurfaceArray);
|
||||
(*mEnv)->DeleteLocalRef(mEnv, mConfig);
|
||||
(*mEnv)->DeleteLocalRef(mEnv, mPrint);
|
||||
(*mEnv)->DeleteLocalRef(mEnv, mString);
|
||||
return NULL;
|
||||
}
|
||||
31
src/android_print.h
Normal file
31
src/android_print.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/* android_print.h */
|
||||
|
||||
/* printing support for Tux Paint */
|
||||
|
||||
/*
|
||||
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
|
||||
(See COPYING.txt)
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __ANDROID_PRINT_H__
|
||||
#define __ANDROID_PRINT_H__
|
||||
|
||||
#include "SDL.h"
|
||||
|
||||
extern const char *SurfacePrint(SDL_Surface *surface);
|
||||
extern int IsPrinterAvailable(void);
|
||||
|
||||
#endif /* __ANDROID_PRINT__ */
|
||||
|
|
@ -1 +1,8 @@
|
|||
/* #define DEBUG */
|
||||
#define DEBUG
|
||||
|
||||
#ifdef __ANDROID__
|
||||
#include <android/log.h>
|
||||
#define LOG_TAG "TuxPaint"
|
||||
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
|
||||
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
|
||||
#endif
|
||||
|
|
|
|||
575
src/tuxpaint.c
575
src/tuxpaint.c
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue