137 行
3.1 KiB

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. #if defined HAVE_CONFIG_H
  11. # include "config.h"
  12. #endif
  13. #if defined __ANDROID__
  14. #include <cmath>
  15. #include <jni.h>
  16. #include <android/log.h>
  17. #include "core.h"
  18. #include "image-private.h"
  19. using namespace std;
  20. namespace lol
  21. {
  22. extern JavaVM *g_vm;
  23. extern jobject g_activity;
  24. /*
  25. * Image implementation class
  26. */
  27. DECLARE_IMAGE_LOADER(AndroidImageData, 100)
  28. {
  29. public:
  30. virtual bool Open(char const *);
  31. virtual bool Close();
  32. virtual void *GetData() const;
  33. private:
  34. jobject bmp;
  35. jintArray array;
  36. jint *pixels;
  37. };
  38. bool AndroidImageData::Open(char const *path)
  39. {
  40. JNIEnv *env;
  41. jint res = g_vm->GetEnv((void **)&env, JNI_VERSION_1_2);
  42. if (res < 0)
  43. {
  44. #if !LOL_RELEASE
  45. Log::Error("could not get JVM environment\n");
  46. #endif
  47. return false;
  48. }
  49. jclass cls = env->GetObjectClass(g_activity);
  50. jmethodID mid;
  51. mid = env->GetMethodID(cls, "openImage",
  52. "(Ljava/lang/String;)Landroid/graphics/Bitmap;");
  53. jstring name = env->NewStringUTF(path);
  54. bmp = env->CallObjectMethod(g_activity, mid, name);
  55. env->DeleteLocalRef(name);
  56. if (!bmp)
  57. {
  58. #if !LOL_RELEASE
  59. Log::Error("could not load %s\n", path);
  60. #endif
  61. return false;
  62. }
  63. env->NewGlobalRef(bmp);
  64. /* Get image dimensions */
  65. mid = env->GetMethodID(cls, "getWidth", "(Landroid/graphics/Bitmap;)I");
  66. size.x = env->CallIntMethod(g_activity, mid, bmp);
  67. mid = env->GetMethodID(cls, "getHeight", "(Landroid/graphics/Bitmap;)I");
  68. size.y = env->CallIntMethod(g_activity, mid, bmp);
  69. /* Get pixels */
  70. array = env->NewIntArray(size.x * size.y);
  71. env->NewGlobalRef(array);
  72. mid = env->GetMethodID(cls, "getPixels", "(Landroid/graphics/Bitmap;[I)V");
  73. env->CallVoidMethod(g_activity, mid, bmp, array);
  74. pixels = env->GetIntArrayElements(array, 0);
  75. for (int n = 0; n < size.x * size.y; n++)
  76. {
  77. uint32_t u = pixels[n];
  78. u = (u & 0xff00ff00) | ((u & 0xff0000) >> 16) | ((u & 0xff) << 16);
  79. pixels[n] = u;
  80. }
  81. format = FORMAT_RGBA;
  82. return true;
  83. }
  84. bool AndroidImageData::Close()
  85. {
  86. JNIEnv *env;
  87. jint res = g_vm->GetEnv((void **)&env, JNI_VERSION_1_2);
  88. if (res < 0)
  89. {
  90. #if !LOL_RELEASE
  91. Log::Error("could not get JVM environment\n");
  92. #endif
  93. return false;
  94. }
  95. jclass cls = env->GetObjectClass(g_activity);
  96. jmethodID mid;
  97. env->ReleaseIntArrayElements(array, pixels, 0);
  98. env->DeleteGlobalRef(array);
  99. /* Free image */
  100. mid = env->GetMethodID(cls, "closeImage", "(Landroid/graphics/Bitmap;)V");
  101. env->CallVoidMethod(g_activity, mid, bmp);
  102. env->DeleteGlobalRef(bmp);
  103. return true;
  104. }
  105. void * AndroidImageData::GetData() const
  106. {
  107. return pixels;
  108. }
  109. } /* namespace lol */
  110. #endif /* __ANDROID__ */