diff -pruN --exclude build ./demo_clean/CMakeLists.txt ./demo_dev/CMakeLists.txt
---- ./demo_clean/CMakeLists.txt 2024-03-28 18:19:03.168248400 +0000
-+++ ./demo_dev/CMakeLists.txt 2024-03-28 18:23:33.549413300 +0000
+--- ./demo_clean/CMakeLists.txt 2025-03-23 03:36:37.047279100 +0000
++++ ./demo_dev/CMakeLists.txt 2025-03-23 03:37:32.320173600 +0000
@@ -9,7 +9,7 @@ option(
# Set app name.
set(APP_NAME Demo)
# Set directory paths.
-set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../..)
-+set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../CubismSdkForNative-5-r.1)
++set(SDK_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../CubismSdkForNative-5-r.3)
set(CORE_PATH ${SDK_ROOT_PATH}/Core)
set(FRAMEWORK_PATH ${SDK_ROOT_PATH}/Framework)
set(THIRD_PARTY_PATH ${SDK_ROOT_PATH}/Samples/OpenGL/thirdParty)
-@@ -41,7 +41,7 @@ set(GLFW_INSTALL OFF CACHE BOOL "" FORCE
+@@ -17,7 +17,6 @@ set(STB_PATH ${THIRD_PARTY_PATH}/stb)
+ set(GLEW_PATH ${THIRD_PARTY_PATH}/glew)
+ set(GLFW_PATH ${THIRD_PARTY_PATH}/glfw)
+ set(RES_PATH ${SDK_ROOT_PATH}/Samples/Resources)
+-set(SAMPLE_SHADER_PATH ${SDK_ROOT_PATH}/Samples/OpenGL/Shaders/Standard)
+
+ # Set project.
+ project(${APP_NAME})
+@@ -42,7 +41,7 @@ set(GLFW_INSTALL OFF CACHE BOOL "" FORCE
set(BUILD_UTILS OFF CACHE BOOL "" FORCE)
# Specify version of compiler.
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
-@@ -113,6 +113,9 @@ target_link_libraries(Framework Live2DCu
+@@ -55,7 +54,10 @@ else()
+ message(FATAL_ERROR "[${APP_NAME}] Invalid linker flag ${CMAKE_EXE_LINKER_FLAGS}.")
+ endif()
+ # Detect compiler.
+-if(MSVC_VERSION MATCHES 1900)
++if(MSVC_VERSION MATCHES 1800)
++ # Visual Studio 2013
++ set(COMPILER 120)
++elseif(MSVC_VERSION MATCHES 1900)
+ # Visual Studio 2015
+ set(COMPILER 140)
+ elseif(MSVC_VERSION GREATER_EQUAL 1910 AND MSVC_VERSION LESS 1920)
+@@ -64,7 +66,7 @@ elseif(MSVC_VERSION GREATER_EQUAL 1910 A
+ elseif(MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1930)
+ # Visual Studio 2019
+ set(COMPILER 142)
+-elseif(MSVC_VERSION GREATER_EQUAL 1930 AND MSVC_VERSION LESS 1950)
++elseif(MSVC_VERSION GREATER_EQUAL 1930 AND MSVC_VERSION LESS 1940)
+ # Visual Studio 2022
+ set(COMPILER 143)
+ elseif(MSVC)
+@@ -111,22 +113,26 @@ target_link_libraries(Framework Live2DCu
# Find opengl libraries.
find_package(OpenGL REQUIRED)
# Make executable app.
add_executable(${APP_NAME})
# Add source files.
-@@ -122,12 +125,14 @@ target_link_libraries(${APP_NAME}
+ add_subdirectory(src)
+-
+ # Link libraries to app.
+ target_link_libraries(${APP_NAME}
Framework
glfw
${OPENGL_LIBRARIES}
# Build in multi-process.
target_compile_options(${APP_NAME} PRIVATE /MP)
+@@ -134,8 +140,9 @@ target_compile_options(${APP_NAME} PRIVA
+ add_custom_command(
+ TARGET ${APP_NAME}
+ POST_BUILD
+- COMMAND ${CMAKE_COMMAND} -E copy_directory ${RES_PATH} $<TARGET_FILE_DIR:${APP_NAME}>/Resources
+- COMMAND ${CMAKE_COMMAND} -E copy_directory ${SAMPLE_SHADER_PATH} $<TARGET_FILE_DIR:${APP_NAME}>/SampleShaders
++ COMMAND
++ ${CMAKE_COMMAND} -E
++ copy_directory ${RES_PATH} $<TARGET_FILE_DIR:${APP_NAME}>/Resources
+ )
+
+ # Set project properties.
+diff -pruN --exclude build ./demo_clean/scripts/nmake_msvc2013.bat ./demo_dev/scripts/nmake_msvc2013.bat
+--- ./demo_clean/scripts/nmake_msvc2013.bat 1970-01-01 00:00:00.000000000 +0000
++++ ./demo_dev/scripts/nmake_msvc2013.bat 2023-03-05 23:22:11.000449600 +0000
+@@ -0,0 +1,14 @@
++@echo off
++
++setlocal
++
++set SCRIPT_PATH=%~dp0
++set MSVC_VERSION=2013
++set MSVC_NUMBER=12
++set VCVARSALL=%VS120COMNTOOLS%..\..\VC\vcvarsall.bat
++set GENERATOR=nmake
++
++call "%SCRIPT_PATH%_msvc_common.bat"
++if %errorlevel% neq 0 pause & exit /b %errorlevel%
++
++pause & exit /b 0
+diff -pruN --exclude build ./demo_clean/scripts/proj_msvc2013.bat ./demo_dev/scripts/proj_msvc2013.bat
+--- ./demo_clean/scripts/proj_msvc2013.bat 1970-01-01 00:00:00.000000000 +0000
++++ ./demo_dev/scripts/proj_msvc2013.bat 2023-03-05 23:22:10.998452600 +0000
+@@ -0,0 +1,14 @@
++@echo off
++
++setlocal
++
++set SCRIPT_PATH=%~dp0
++set MSVC_VERSION=2013
++set MSVC_NUMBER=12
++set VCVARSALL=%VS120COMNTOOLS%..\..\VC\vcvarsall.bat
++set GENERATOR=proj
++
++call "%SCRIPT_PATH%_msvc_common.bat"
++if %errorlevel% neq 0 pause & exit /b %errorlevel%
++
++pause & exit /b 0
diff -pruN --exclude build ./demo_clean/src/CMakeLists.txt ./demo_dev/src/CMakeLists.txt
---- ./demo_clean/src/CMakeLists.txt 2024-03-28 18:19:03.998153300 +0000
+--- ./demo_clean/src/CMakeLists.txt 2025-03-23 03:36:38.235304800 +0000
+++ ./demo_dev/src/CMakeLists.txt 2023-03-05 23:22:10.976777100 +0000
-@@ -1,49 +1,22 @@
+@@ -1,51 +1,22 @@
-if (CSM_MINIMUM_DEMO)
- target_sources(${APP_NAME}
+target_sources(${APP_NAME}
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppPal.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppSprite.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppSprite.hpp
+- ${CMAKE_CURRENT_SOURCE_DIR}/LAppSpriteShader.cpp
+- ${CMAKE_CURRENT_SOURCE_DIR}/LAppSpriteShader.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppTextureManager.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppTextureManager.hpp
- ${CMAKE_CURRENT_SOURCE_DIR}/LAppView.cpp
+ ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
+)
diff -pruN --exclude build ./demo_clean/src/CubismUserModelExtend.cpp ./demo_dev/src/CubismUserModelExtend.cpp
---- ./demo_clean/src/CubismUserModelExtend.cpp 2024-03-28 18:19:03.868189000 +0000
+--- ./demo_clean/src/CubismUserModelExtend.cpp 2025-03-23 03:36:38.046874500 +0000
+++ ./demo_dev/src/CubismUserModelExtend.cpp 2023-03-05 23:22:10.780128700 +0000
@@ -1,4 +1,4 @@
-/**
}
-std::string CubismUserModelExtend::MakeAssetPath(const std::string& assetFileName)
-+void CubismUserModelExtend::LoadAssets(const Csm::csmChar* fileName)
- {
+-{
- return _currentModelDirectory + assetFileName;
-}
-
-void CubismUserModelExtend::SetAssetDirectory(const std::string& path)
--{
++void CubismUserModelExtend::LoadAssets(const Csm::csmChar* fileName)
+ {
- _currentModelDirectory = path;
-}
-+ csmSizeInt size;
-+ const csmString path = csmString(_currentModelDirectory.c_str()) + fileName;
-
+-
-void CubismUserModelExtend::LoadAsset(const std::string & fiileName, const std::function<void(Csm::csmByte*, Csm::csmSizeInt)>& afterLoadCallback)
-{
- Csm::csmSizeInt bufferSize = 0;
- {
- return;
- }
++ csmSizeInt size;
++ const csmString path = csmString(_currentModelDirectory.c_str()) + fileName;
+
+- // バッファの設定
+- buffer = LAppPal::LoadFileAsBytes(MakeAssetPath(fiileName).c_str(), &bufferSize);
+ csmByte* buffer = CreateBuffer(path.GetRawString(), &size);
+ _modelJson = new CubismModelSettingJson(buffer, size);
+ DeleteBuffer(buffer, path.GetRawString());
-- // バッファの設定
-- buffer = LAppPal::LoadFileAsBytes(MakeAssetPath(fiileName).c_str(), &bufferSize);
--
- // コールバック関数の呼び出し
- afterLoadCallback(buffer, bufferSize);
-
+ csmString name = _modelJson->GetExpressionName(i);
+ csmString path = _modelJson->GetExpressionFileName(i);
+ path = csmString(_currentModelDirectory.c_str()) + path;
-
-- if (motion)
++
+ buffer = CreateBuffer(path.GetRawString(), &size);
+ ACubismMotion* motion = LoadExpression(buffer, size, name.GetRawString());
-+
+
+- if (motion)
+ if (_expressions[name])
{
- if (_expressions[expressionName])
// Layout
csmMap<csmString, csmFloat32> layout;
-@@ -196,29 +210,26 @@ void CubismUserModelExtend::PreloadMotio
+@@ -194,17 +208,28 @@ void CubismUserModelExtend::PreloadMotio
+ csmSizeInt size;
+ buffer = CreateBuffer(path.GetRawString(), &size);
// モーションデータの読み込み
- CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString()));
+- CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString(), NULL, NULL, _modelJson, group, i));
++ CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString()));
- if (tmpMotion)
+ // フェードインの時間を取得
+ csmFloat32 fadeTime = _modelJson->GetMotionFadeInTimeValue(group, i);
+ if (fadeTime >= 0.0f)
{
-- // フェードインの時間を取得
-- csmFloat32 fadeTime = _modelJson->GetMotionFadeInTimeValue(group, i);
-- if (fadeTime >= 0.0f)
+- if (_motions[name])
- {
-- tmpMotion->SetFadeInTime(fadeTime);
+- // インスタンスを破棄
+- ACubismMotion::Delete(_motions[name]);
- }
+- _motions[name] = tmpMotion;
+ tmpMotion->SetFadeInTime(fadeTime);
+ }
-
-- // フェードアウトの時間を取得
-- fadeTime = _modelJson->GetMotionFadeOutTimeValue(group, i);
-- if (fadeTime >= 0.0f)
-- {
-- tmpMotion->SetFadeOutTime(fadeTime);
-- }
++
+ // フェードアウトの時間を取得
+ fadeTime = _modelJson->GetMotionFadeOutTimeValue(group, i);
+ if (fadeTime >= 0.0f)
+ {
+ tmpMotion->SetFadeOutTime(fadeTime);
+ }
-
-- if (_motions[name])
-- {
-- // インスタンスを破棄
-- ACubismMotion::Delete(_motions[name]);
-- }
-- _motions[name] = tmpMotion;
++
+ if (_motions[name])
+ {
+ // インスタンスを破棄
DeleteBuffer(buffer, path.GetRawString());
}
-@@ -292,24 +303,21 @@ Csm::CubismMotionQueueEntryHandle Cubism
+@@ -237,9 +262,10 @@ void CubismUserModelExtend::ReleaseModel
+ * @param[in] group モーショングループ名
+ * @param[in] no グループ内の番号
+ * @param[in] priority 優先度
++* @param[in] onFinishedMotionHandler モーション再生終了時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
+ * @return 開始したモーションの識別番号を返す。個別のモーションが終了したか否かを判定するIsFinished()の引数で使用する。開始できない時は「-1」
+ */
+-Csm::CubismMotionQueueEntryHandle CubismUserModelExtend::StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority)
++Csm::CubismMotionQueueEntryHandle CubismUserModelExtend::StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler)
+ {
+ // モーション数が取得出来なかった、もしくは0の時
+ if (!(_modelJson->GetMotionCount(group)))
+@@ -275,16 +301,30 @@ Csm::CubismMotionQueueEntryHandle Cubism
+ csmSizeInt size;
+ buffer = CreateBuffer(path.GetRawString(), &size);
// 一番先頭のモーションを読み込む
- motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, onFinishedMotionHandler));
+- motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, NULL, NULL, _modelJson, group, no));
++ motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, onFinishedMotionHandler));
- if (motion)
+ csmFloat32 fadeTime = _modelJson->GetMotionFadeInTimeValue(group, no);
+ if (fadeTime >= 0.0f)
{
-- csmFloat32 fadeTime = _modelJson->GetMotionFadeInTimeValue(group, no);
-- if (fadeTime >= 0.0f)
-- {
-- motion->SetFadeInTime(fadeTime);
-- }
--
-- fadeTime = _modelJson->GetMotionFadeOutTimeValue(group, no);
-- if (fadeTime >= 0.0f)
-- {
-- motion->SetFadeOutTime(fadeTime);
-- }
-+ motion->SetFadeInTime(fadeTime);
-+ }
-
- // 終了時にメモリから削除
- autoDelete = true;
++ motion->SetFadeInTime(fadeTime);
+ }
+
+ fadeTime = _modelJson->GetMotionFadeOutTimeValue(group, no);
+ if (fadeTime >= 0.0f)
+ {
+ motion->SetFadeOutTime(fadeTime);
- }
-
++ }
++
+ // 終了時にメモリから削除
+ autoDelete = true;
+
DeleteBuffer(buffer, path.GetRawString());
}
- else
-@@ -355,16 +363,6 @@ void CubismUserModelExtend::ModelParamUp
++ else
++ {
++ // モーションの再生終了コールバックを登録
++ motion->SetFinishedMotionHandler(onFinishedMotionHandler);
++ }
+
+ // 優先度を設定してモーションを始める
+ return _motionManager->StartMotionPriority(motion, autoDelete, priority);
+@@ -323,16 +363,6 @@ void CubismUserModelExtend::ModelParamUp
_model->SaveParameters();
//-----------------------------------------------------------------
if (_expressionManager)
{
// 表情でパラメータ更新(相対変化)
-@@ -387,12 +385,6 @@ void CubismUserModelExtend::ModelParamUp
+@@ -355,12 +385,6 @@ void CubismUserModelExtend::ModelParamUp
_model->AddParameterValue(_idParamEyeBallX, _dragX); // -1から1の値を加える
_model->AddParameterValue(_idParamEyeBallY, _dragY);
if (_physics)
{
diff -pruN --exclude build ./demo_clean/src/CubismUserModelExtend.hpp ./demo_dev/src/CubismUserModelExtend.hpp
---- ./demo_clean/src/CubismUserModelExtend.hpp 2024-03-28 18:19:03.926168700 +0000
+--- ./demo_clean/src/CubismUserModelExtend.hpp 2025-03-23 03:36:38.131318200 +0000
+++ ./demo_dev/src/CubismUserModelExtend.hpp 2023-03-05 23:22:10.986750400 +0000
@@ -27,17 +27,13 @@ class CubismUserModelExtend :
{
/**
* @brief モデルの更新
-@@ -48,35 +44,24 @@ public:
+@@ -48,35 +44,25 @@ public:
private:
/**
- * @param[in] group モーショングループ名
- * @param[in] no グループ内の番号
- * @param[in] priority 優先度
-- * @param[in] onFinishedMotionHandler モーション再生終了時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
- * @return 開始したモーションの識別番号を返す。個別のモーションが終了したか否かを判定するIsFinished()の引数で使用する。開始できない時は「-1」
- */
- Csm::CubismMotionQueueEntryHandle StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL);
+- Csm::CubismMotionQueueEntryHandle StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority);
++ Csm::CubismMotionQueueEntryHandle StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL);
/**
+ * @brief 解放
diff -pruN --exclude build ./demo_clean/src/LAppAllocator.cpp ./demo_dev/src/LAppAllocator.cpp
---- ./demo_clean/src/LAppAllocator.cpp 2024-03-28 18:19:03.800631600 +0000
+--- ./demo_clean/src/LAppAllocator.cpp 2025-03-23 03:36:37.920013100 +0000
+++ ./demo_dev/src/LAppAllocator.cpp 2023-03-05 23:22:10.847976000 +0000
@@ -1,4 +1,4 @@
-/**
return malloc(size);
}
diff -pruN --exclude build ./demo_clean/src/LAppAllocator.hpp ./demo_dev/src/LAppAllocator.hpp
---- ./demo_clean/src/LAppAllocator.hpp 2024-03-28 18:19:04.446046500 +0000
+--- ./demo_clean/src/LAppAllocator.hpp 2025-03-23 03:36:38.879598000 +0000
+++ ./demo_dev/src/LAppAllocator.hpp 2023-03-05 23:22:10.953083600 +0000
@@ -1,4 +1,4 @@
-/**
*
* Use of this source code is governed by the Live2D Open Software license
diff -pruN --exclude build ./demo_clean/src/LAppDefine.cpp ./demo_dev/src/LAppDefine.cpp
---- ./demo_clean/src/LAppDefine.cpp 2024-03-28 18:19:04.269187200 +0000
+--- ./demo_clean/src/LAppDefine.cpp 2025-03-23 03:36:38.612775000 +0000
+++ ./demo_dev/src/LAppDefine.cpp 2023-03-05 23:22:10.995458800 +0000
@@ -1,4 +1,4 @@
-/**
const csmFloat32 ViewLogicalMaxLeft = -2.0f;
const csmFloat32 ViewLogicalMaxRight = 2.0f;
-@@ -38,6 +38,18 @@ namespace LAppDefine {
+@@ -37,14 +37,19 @@ namespace LAppDefine {
+ // 終了ボタン
const csmChar* PowerImageName = "close.png";
+- // シェーダー相対パス
+- const csmChar* ShaderPath = "SampleShaders/";
+- // 頂点シェーダー
+- const csmChar* VertShaderName = "VertSprite.vert";
+- // フラグメントシェーダー
+- const csmChar* FragShaderName = "FragSprite.frag";
+-
// モデル定義------------------------------------------
+ // モデルを配置したディレクトリ名の配列
+ // ディレクトリ名とmodel3.jsonの名前を一致させておくこと
// 外部定義ファイル(json)と合わせる
const csmChar* MotionGroupIdle = "Idle"; // アイドリング
const csmChar* MotionGroupTapBody = "TapBody"; // 体をタップしたとき
-@@ -52,9 +64,6 @@ namespace LAppDefine {
+@@ -59,9 +64,6 @@ namespace LAppDefine {
const csmInt32 PriorityNormal = 2;
const csmInt32 PriorityForce = 3;
const csmBool DebugLogEnable = true;
const csmBool DebugTouchLogEnable = false;
diff -pruN --exclude build ./demo_clean/src/LAppDefine.hpp ./demo_dev/src/LAppDefine.hpp
---- ./demo_clean/src/LAppDefine.hpp 2024-03-28 18:19:03.690794600 +0000
+--- ./demo_clean/src/LAppDefine.hpp 2025-03-23 03:36:37.737316700 +0000
+++ ./demo_dev/src/LAppDefine.hpp 2023-03-05 23:22:10.947784100 +0000
@@ -1,9 +1,10 @@
-/**
#pragma once
#include <CubismFramework.hpp>
-@@ -36,6 +37,9 @@ namespace LAppDefine {
+@@ -35,11 +36,10 @@ namespace LAppDefine {
+ extern const csmChar* GearImageName; ///< 歯車画像ファイル
extern const csmChar* PowerImageName; ///< 終了ボタン画像ファイル
+- extern const csmChar* ShaderPath; ///< シェーダーパス
+- extern const csmChar* VertShaderName; ///< 頂点シェーダー
+- extern const csmChar* FragShaderName; ///< フラグメントシェーダー
+-
// モデル定義--------------------------------------------
+ extern const csmChar* ModelDir[]; ///< モデルを配置したディレクトリ名の配列. ディレクトリ名とmodel3.jsonの名前を一致させておく.
+ extern const csmInt32 ModelDirSize; ///< モデルディレクトリ配列のサイズ
// 外部定義ファイル(json)と合わせる
extern const csmChar* MotionGroupIdle; ///< アイドリング時に再生するモーションのリスト
extern const csmChar* MotionGroupTapBody; ///< 体をタップした時に再生するモーションのリスト
-@@ -50,8 +54,6 @@ namespace LAppDefine {
+@@ -54,8 +54,6 @@ namespace LAppDefine {
extern const csmInt32 PriorityNormal; ///< モーションの優先度定数: 2
extern const csmInt32 PriorityForce; ///< モーションの優先度定数: 3
extern const csmBool DebugLogEnable; ///< デバッグ用ログ表示の有効・無効
extern const csmBool DebugTouchLogEnable; ///< タッチ処理のデバッグ用ログ表示の有効・無効
diff -pruN --exclude build ./demo_clean/src/LAppDelegate.cpp ./demo_dev/src/LAppDelegate.cpp
---- ./demo_clean/src/LAppDelegate.cpp 2024-03-28 18:19:03.753278100 +0000
+--- ./demo_clean/src/LAppDelegate.cpp 2025-03-23 03:36:37.873913500 +0000
+++ ./demo_dev/src/LAppDelegate.cpp 2023-03-05 23:22:10.975780100 +0000
@@ -1,4 +1,4 @@
-/**
}
glfwTerminate();
return GL_FALSE;
-@@ -93,10 +101,6 @@ bool LAppDelegate::Initialize()
+@@ -93,22 +101,24 @@ bool LAppDelegate::Initialize()
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// ウィンドウサイズ記憶
int width, height;
glfwGetWindowSize(LAppDelegate::GetInstance()->GetWindow(), &width, &height);
-@@ -106,9 +110,15 @@ bool LAppDelegate::Initialize()
+ _windowWidth = width;
+ _windowHeight = height;
+
+- // Cubism SDK の初期化
+- InitializeCubism();
+-
//AppViewの初期化
_view->Initialize();
-- // Cubism SDK の初期化
+ // Cubism3の初期化
- InitializeCubism();
-
++ InitializeCubism();
++
+ //load model
+ LAppLive2DManager::GetInstance();
+
_view = new LAppView();
_textureManager = new LAppTextureManager();
}
-@@ -202,58 +208,10 @@ void LAppDelegate::InitializeCubism()
+@@ -202,54 +208,72 @@ void LAppDelegate::InitializeCubism()
//Initialize cubism
CubismFramework::Initialize();
CubismMatrix44 projection;
LAppPal::UpdateTime();
--
-- _view->InitializeSprite();
--}
--
+ }
+
-void LAppDelegate::OnMouseCallBack(GLFWwindow* window, int button, int action, int modify)
--{
++GLuint LAppDelegate::CreateShader()
+ {
- if (_view == NULL)
- {
- return;
- {
- return;
- }
--
++ //バーテックスシェーダのコンパイル
++ GLuint vertexShaderId = glCreateShader(GL_VERTEX_SHADER);
++ const char* vertexShader =
++ "#version 120\n"
++ "attribute vec3 position;"
++ "attribute vec2 uv;"
++ "varying vec2 vuv;"
++ "void main(void){"
++ " gl_Position = vec4(position, 1.0);"
++ " vuv = uv;"
++ "}";
++ glShaderSource(vertexShaderId, 1, &vertexShader, NULL);
++ glCompileShader(vertexShaderId);
++
++ //フラグメントシェーダのコンパイル
++ GLuint fragmentShaderId = glCreateShader(GL_FRAGMENT_SHADER);
++ const char* fragmentShader =
++ "#version 120\n"
++ "varying vec2 vuv;"
++ "uniform sampler2D texture;"
++ "uniform vec4 baseColor;"
++ "void main(void){"
++ " gl_FragColor = texture2D(texture, vuv) * baseColor;"
++ "}";
++ glShaderSource(fragmentShaderId, 1, &fragmentShader, NULL);
++ glCompileShader(fragmentShaderId);
++
++ //プログラムオブジェクトの作成
++ GLuint programId = glCreateProgram();
++ glAttachShader(programId, vertexShaderId);
++ glAttachShader(programId, fragmentShaderId);
++
++ // リンク
++ glLinkProgram(programId);
+
- if (GLFW_PRESS == action)
- {
- _captured = true;
- _view->OnTouchesEnded(_mouseX, _mouseY);
- }
- }
--}
--
++ glUseProgram(programId);
++
++ return programId;
+ }
+
-void LAppDelegate::OnMouseCallBack(GLFWwindow* window, double x, double y)
--{
++void LAppDelegate::SetRootDirectory(std::string rootDir)
+ {
- _mouseX = static_cast<float>(x);
- _mouseY = static_cast<float>(y);
--
++ this->_rootDirectory = rootDir + "/";
++}
+
- if (!_captured)
- {
- return;
- }
- if (_view == NULL)
-- {
-- return;
-- }
--
-- _view->OnTouchesMoved(_mouseX, _mouseY);
- }
-
- GLuint LAppDelegate::CreateShader()
-@@ -271,10 +229,6 @@ GLuint LAppDelegate::CreateShader()
- "}";
- glShaderSource(vertexShaderId, 1, &vertexShader, NULL);
- glCompileShader(vertexShaderId);
-- if(!CheckShader(vertexShaderId))
-- {
-- return 0;
-- }
-
- //フラグメントシェーダのコンパイル
- GLuint fragmentShaderId = glCreateShader(GL_FRAGMENT_SHADER);
-@@ -288,10 +242,6 @@ GLuint LAppDelegate::CreateShader()
- "}";
- glShaderSource(fragmentShaderId, 1, &fragmentShader, NULL);
- glCompileShader(fragmentShaderId);
-- if (!CheckShader(fragmentShaderId))
-- {
-- return 0;
-- }
-
- //プログラムオブジェクトの作成
- GLuint programId = glCreateProgram();
-@@ -306,25 +256,24 @@ GLuint LAppDelegate::CreateShader()
- return programId;
- }
-
--bool LAppDelegate::CheckShader(GLuint shaderId)
-+void LAppDelegate::SetRootDirectory(std::string rootDir)
- {
-- GLint status;
-- GLint logLength;
-- glGetShaderiv(shaderId, GL_INFO_LOG_LENGTH, &logLength);
-- if (logLength > 0)
-- {
-- GLchar* log = reinterpret_cast<GLchar*>(CSM_MALLOC(logLength));
-- glGetShaderInfoLog(shaderId, logLength, &logLength, log);
-- CubismLogError("Shader compile log: %s", log);
-- CSM_FREE(log);
-- }
-+ this->_rootDirectory = rootDir + "/";
-+}
-+
+Csm::csmVector<string> LAppDelegate::Split(const std::string& baseString, char delimiter)
+{
+ Csm::csmVector<string> elems;
+ stringstream ss(baseString);
+ string item;
-
-- glGetShaderiv(shaderId, GL_COMPILE_STATUS, &status);
-- if (status == GL_FALSE)
++
+ while(getline(ss, item, delimiter))
{
-- glDeleteShader(shaderId);
-- return false;
+- return;
+ if(!item.empty())
+ {
+ elems.PushBack(item);
+ }
}
-- return true;
+- _view->OnTouchesMoved(_mouseX, _mouseY);
+ return elems;
}
diff -pruN --exclude build ./demo_clean/src/LAppDelegate.hpp ./demo_dev/src/LAppDelegate.hpp
---- ./demo_clean/src/LAppDelegate.hpp 2024-03-28 18:19:04.100879300 +0000
+--- ./demo_clean/src/LAppDelegate.hpp 2025-03-23 03:36:38.383882300 +0000
+++ ./demo_dev/src/LAppDelegate.hpp 2023-03-05 23:22:10.789104800 +0000
@@ -1,4 +1,4 @@
-/**
/**
* @brief 解放する。
-@@ -51,25 +54,6 @@ public:
+@@ -51,23 +54,9 @@ public:
void Run();
/**
- * @param[in] window コールバックを呼んだWindow情報
- * @param[in] x x座標
- * @param[in] y x座標
-- */
-- void OnMouseCallBack(GLFWwindow* window, double x, double y);
--
-- /**
- * @brief シェーダーを登録する。
++ * @brief シェーダーを登録する。
*/
- GLuint CreateShader();
-@@ -94,6 +78,21 @@ public:
+- void OnMouseCallBack(GLFWwindow* window, double x, double y);
++ GLuint CreateShader();
+
+ /**
+ * @brief Window情報を取得する。
+@@ -89,6 +78,21 @@ public:
*/
void AppEnd() { _isEnd = true; }
LAppTextureManager* GetTextureManager() { return _textureManager; }
private:
-@@ -108,17 +107,17 @@ private:
+@@ -103,12 +107,17 @@ private:
~LAppDelegate();
/**
*/
void InitializeCubism();
- /**
-- * @brief CreateShader内部関数 エラーチェック
-+ * @brief 文字列を指定の文字で切り分ける
- */
-- bool CheckShader(GLuint shaderId);
-+ Csm::csmVector<std::string> Split(const std::string& baseString, char delim);
-
- LAppAllocator _cubismAllocator; ///< Cubism SDK Allocator
- Csm::CubismFramework::Option _cubismOption; ///< Cubism SDK Option
++ /**
++ * @brief 文字列を指定の文字で切り分ける
++ */
++ Csm::csmVector<std::string> Split(const std::string& baseString, char delim);
++
+ LAppAllocator _cubismAllocator; ///< Cubism3 Allocator
+ Csm::CubismFramework::Option _cubismOption; ///< Cubism3 Option
GLFWwindow* _window; ///< OpenGL ウィンドウ
LAppView* _view; ///< View情報
bool _captured; ///< クリックしているか
-@@ -126,28 +125,8 @@ private:
+@@ -116,28 +125,8 @@ private:
float _mouseY; ///< マウスY座標
bool _isEnd; ///< APP終了しているか
LAppTextureManager* _textureManager; ///< テクスチャマネージャー
-
-};
diff -pruN --exclude build ./demo_clean/src/LAppLive2DManager.cpp ./demo_dev/src/LAppLive2DManager.cpp
---- ./demo_clean/src/LAppLive2DManager.cpp 2024-03-28 18:19:04.069617100 +0000
+--- ./demo_clean/src/LAppLive2DManager.cpp 2025-03-23 03:36:38.336819400 +0000
+++ ./demo_dev/src/LAppLive2DManager.cpp 2023-03-05 23:22:10.967799000 +0000
@@ -1,4 +1,4 @@
-/**
* Copyright(c) Live2D Inc. All rights reserved.
*
* Use of this source code is governed by the Live2D Open Software license
-@@ -6,9 +6,7 @@
+@@ -6,10 +6,7 @@
*/
#include "LAppLive2DManager.hpp"
+-#include <windows.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <io.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <Rendering/CubismRenderer.hpp>
-@@ -17,6 +15,7 @@
+@@ -18,6 +15,7 @@
#include "LAppDelegate.hpp"
#include "LAppModel.hpp"
#include "LAppView.hpp"
using namespace Csm;
using namespace LAppDefine;
-@@ -27,13 +26,7 @@ namespace {
+@@ -26,20 +24,9 @@ using namespace std;
+ namespace {
+ LAppLive2DManager* s_instance = NULL;
+- void BeganMotion(ACubismMotion* self)
+- {
+- LAppPal::PrintLogLn("Motion Began: %x", self);
+- }
+-
void FinishedMotion(ACubismMotion* self)
{
- LAppPal::PrintLogLn("Motion Finished: %x", self);
}
}
-@@ -59,18 +52,16 @@ void LAppLive2DManager::ReleaseInstance(
+@@ -65,18 +52,16 @@ void LAppLive2DManager::ReleaseInstance(
LAppLive2DManager::LAppLive2DManager()
: _viewMatrix(NULL)
}
void LAppLive2DManager::ReleaseAllModel()
-@@ -83,50 +74,6 @@ void LAppLive2DManager::ReleaseAllModel(
+@@ -89,63 +74,6 @@ void LAppLive2DManager::ReleaseAllModel(
_models.Clear();
}
-{
- // ResourcesPathの中にあるフォルダ名を全てクロールし、モデルが存在するフォルダを定義する。
- // フォルダはあるが同名の.model3.jsonが見つからなかった場合はリストに含めない。
+- // 一部文字が受け取れないためワイド文字で受け取ってUTF8に変換し格納する。
+-
- csmString crawlPath(ResourcesPath);
- crawlPath += "*.*";
-
-- struct _finddata_t fdata;
-- intptr_t fh = _findfirst(crawlPath.GetRawString(), &fdata);
-- if (fh == -1) return;
+- wchar_t wideStr[MAX_PATH];
+- csmChar name[MAX_PATH];
+- LAppPal::ConvertMultiByteToWide(crawlPath.GetRawString(), wideStr, MAX_PATH);
+-
+- struct _wfinddata_t fdata;
+- intptr_t fh = _wfindfirst(wideStr, &fdata);
+- if (fh == -1)
+- {
+- return;
+- }
-
- _modelDir.Clear();
-
-- while (_findnext(fh, &fdata) == 0)
+- while (_wfindnext(fh, &fdata) == 0)
- {
-- if ((fdata.attrib & _A_SUBDIR) && strcmp(fdata.name, "..") != 0)
+- if ((fdata.attrib & _A_SUBDIR) && wcscmp(fdata.name, L"..") != 0)
- {
+- LAppPal::ConvertWideToMultiByte(fdata.name, name, MAX_PATH);
+-
- // フォルダと同名の.model3.jsonがあるか探索する
- csmString model3jsonPath(ResourcesPath);
-- model3jsonPath += fdata.name;
+- model3jsonPath += name;
- model3jsonPath.Append(1, '/');
-- model3jsonPath += fdata.name;
+- model3jsonPath += name;
- model3jsonPath += ".model3.json";
-
-- struct _finddata_t fdata2;
-- if (_findfirst(model3jsonPath.GetRawString(), &fdata2) != -1)
+- LAppPal::ConvertMultiByteToWide(model3jsonPath.GetRawString(), wideStr, MAX_PATH);
+-
+- struct _wfinddata_t fdata2;
+- if (_wfindfirst(wideStr, &fdata2) != -1)
- {
-- _modelDir.PushBack(csmString(fdata.name));
+- _modelDir.PushBack(csmString(name));
- }
- }
- }
LAppModel* LAppLive2DManager::GetModel(csmUint32 no) const
{
if (no < _models.GetSize())
-@@ -151,27 +98,7 @@ void LAppLive2DManager::OnTap(csmFloat32
+@@ -170,27 +98,7 @@ void LAppLive2DManager::OnTap(csmFloat32
{
if (DebugLogEnable)
{
- {
- LAppPal::PrintLogLn("[APP]hit area: [%s]", HitAreaNameBody);
- }
-- _models[i]->StartRandomMotion(MotionGroupTapBody, PriorityNormal, FinishedMotion);
+- _models[i]->StartRandomMotion(MotionGroupTapBody, PriorityNormal, FinishedMotion, BeganMotion);
- }
+ LAppPal::PrintLog("[APP]tap point: {x:%.2f y:%.2f}", x, y);
}
}
-@@ -180,15 +107,15 @@ void LAppLive2DManager::OnUpdate() const
+@@ -199,15 +107,15 @@ void LAppLive2DManager::OnUpdate() const
int width, height;
glfwGetWindowSize(LAppDelegate::GetInstance()->GetWindow(), &width, &height);
continue;
}
-@@ -196,12 +123,15 @@ void LAppLive2DManager::OnUpdate() const
+@@ -215,12 +123,15 @@ void LAppLive2DManager::OnUpdate() const
{
// 横に長いモデルを縦長ウィンドウに表示する際モデルの横サイズでscaleを算出する
model->GetModelMatrix()->SetWidth(2.0f);
// 必要があればここで乗算
if (_viewMatrix != NULL)
-@@ -209,45 +139,24 @@ void LAppLive2DManager::OnUpdate() const
+@@ -228,45 +139,24 @@ void LAppLive2DManager::OnUpdate() const
projection.MultiplyByMatrix(_viewMatrix);
}
/*
* モデル半透明表示を行うサンプルを提示する。
-@@ -268,16 +177,21 @@ void LAppLive2DManager::ChangeScene(Csm:
+@@ -287,16 +177,21 @@ void LAppLive2DManager::ChangeScene(Csm:
#if defined(USE_RENDER_TARGET) || defined(USE_MODEL_RENDER_TARGET)
// モデル個別にαを付けるサンプルとして、もう1体モデルを作成し、少し位置をずらす
LAppDelegate::GetInstance()->GetView()->SwitchRenderingTarget(useRenderTarget);
- // 別レンダリング先を選択した際の背景クリア色
-- float clearColor[3] = { 1.0f, 1.0f, 1.0f };
+- float clearColor[3] = { 0.0f, 0.0f, 0.0f };
- LAppDelegate::GetInstance()->GetView()->SetRenderTargetClearColor(clearColor[0], clearColor[1], clearColor[2]);
+ if(useRenderTarget)
+ {
}
}
-@@ -292,3 +206,20 @@ void LAppLive2DManager::SetViewMatrix(Cu
+@@ -311,3 +206,20 @@ void LAppLive2DManager::SetViewMatrix(Cu
_viewMatrix->GetArray()[i] = m->GetArray()[i];
}
}
+ _translateY = translateY;
+}
diff -pruN --exclude build ./demo_clean/src/LAppLive2DManager.hpp ./demo_dev/src/LAppLive2DManager.hpp
---- ./demo_clean/src/LAppLive2DManager.hpp 2024-03-28 18:19:04.607350600 +0000
+--- ./demo_clean/src/LAppLive2DManager.hpp 2025-03-23 03:36:39.098754200 +0000
+++ ./demo_dev/src/LAppLive2DManager.hpp 2023-03-05 23:22:10.829032000 +0000
@@ -1,18 +1,20 @@
-/**
+ float _translateY;
};
diff -pruN --exclude build ./demo_clean/src/LAppModel.cpp ./demo_dev/src/LAppModel.cpp
---- ./demo_clean/src/LAppModel.cpp 2024-03-28 18:19:04.524642700 +0000
+--- ./demo_clean/src/LAppModel.cpp 2025-03-23 03:36:38.969736900 +0000
+++ ./demo_dev/src/LAppModel.cpp 2024-03-28 18:26:32.604595000 +0000
@@ -1,4 +1,4 @@
-/**
//Layout
csmMap<csmString, csmFloat32> layout;
_modelSetting->GetLayoutMap(layout);
-@@ -274,7 +226,7 @@ void LAppModel::PreloadMotionGroup(const
+@@ -274,24 +226,32 @@ void LAppModel::PreloadMotionGroup(const
if (_debugMode)
{
}
csmByte* buffer;
-@@ -282,27 +234,24 @@ void LAppModel::PreloadMotionGroup(const
+ csmSizeInt size;
buffer = CreateBuffer(path.GetRawString(), &size);
- CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString()));
+- CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString(), NULL, NULL, _modelSetting, group, i));
++ CubismMotion* tmpMotion = static_cast<CubismMotion*>(LoadMotion(buffer, size, name.GetRawString()));
- if (tmpMotion)
+ csmFloat32 fadeTime = _modelSetting->GetMotionFadeInTimeValue(group, i);
+ if (fadeTime >= 0.0f)
{
-- csmFloat32 fadeTime = _modelSetting->GetMotionFadeInTimeValue(group, i);
-- if (fadeTime >= 0.0f)
-- {
-- tmpMotion->SetFadeInTime(fadeTime);
-- }
+- tmpMotion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
+ tmpMotion->SetFadeInTime(fadeTime);
+ }
-- fadeTime = _modelSetting->GetMotionFadeOutTimeValue(group, i);
-- if (fadeTime >= 0.0f)
+- if (_motions[name] != NULL)
- {
-- tmpMotion->SetFadeOutTime(fadeTime);
+- ACubismMotion::Delete(_motions[name]);
- }
-- tmpMotion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
+- _motions[name] = tmpMotion;
+ fadeTime = _modelSetting->GetMotionFadeOutTimeValue(group, i);
+ if (fadeTime >= 0.0f)
+ {
+ tmpMotion->SetFadeOutTime(fadeTime);
-+ }
+ }
+ tmpMotion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
-
-- if (_motions[name] != NULL)
-- {
-- ACubismMotion::Delete(_motions[name]);
-- }
-- _motions[name] = tmpMotion;
++
+ if (_motions[name] != NULL)
+ {
+ ACubismMotion::Delete(_motions[name]);
- }
++ }
+ _motions[name] = tmpMotion;
DeleteBuffer(buffer, path.GetRawString());
}
-@@ -357,62 +306,57 @@ void LAppModel::Update()
+@@ -346,62 +306,57 @@ void LAppModel::Update()
const csmFloat32 deltaTimeSeconds = LAppPal::GetDeltaTime();
_userTimeSeconds += deltaTimeSeconds;
- //-----------------------------------------------------------------
- _model->LoadParameters(); // 前回セーブされた状態をロード
- if (_motionManager->IsFinished())
-- {
++ if (_detector)
+ {
- // モーションの再生がない場合、待機モーションの中からランダムで再生する
- StartRandomMotion(MotionGroupIdle, PriorityIdle);
- }
- else
-+ if (_detector)
- {
+- {
- motionUpdated = _motionManager->UpdateMotion(_model, deltaTimeSeconds); // モーションを更新
- }
- _model->SaveParameters(); // 状態を保存
- //-----------------------------------------------------------------
--
-- // 不透明度
-- _opacity = _model->GetModelOpacity();
+ auto idMan = CubismFramework::GetIdManager();
+ auto params = _detector->getParams();
+- // 不透明度
+- _opacity = _model->GetModelOpacity();
+-
- // まばたき
- if (!motionUpdated)
- {
}
// 物理演算の設定
-@@ -421,22 +365,6 @@ void LAppModel::Update()
+@@ -410,22 +365,6 @@ void LAppModel::Update()
_physics->Evaluate(_model, deltaTimeSeconds);
}
// ポーズの設定
if (_pose != NULL)
{
-@@ -457,7 +385,7 @@ CubismMotionQueueEntryHandle LAppModel::
+@@ -436,7 +375,7 @@ void LAppModel::Update()
+
+ }
+
+-CubismMotionQueueEntryHandle LAppModel::StartMotion(const csmChar* group, csmInt32 no, csmInt32 priority, ACubismMotion::FinishedMotionCallback onFinishedMotionHandler, ACubismMotion::BeganMotionCallback onBeganMotionHandler)
++CubismMotionQueueEntryHandle LAppModel::StartMotion(const csmChar* group, csmInt32 no, csmInt32 priority, ACubismMotion::FinishedMotionCallback onFinishedMotionHandler)
+ {
+ if (priority == PriorityForce)
+ {
+@@ -446,7 +385,7 @@ CubismMotionQueueEntryHandle LAppModel::
{
if (_debugMode)
{
}
return InvalidMotionQueueEntryHandleValue;
}
-@@ -478,23 +406,19 @@ CubismMotionQueueEntryHandle LAppModel::
+@@ -466,19 +405,25 @@ CubismMotionQueueEntryHandle LAppModel::
+ csmByte* buffer;
csmSizeInt size;
buffer = CreateBuffer(path.GetRawString(), &size);
- motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, onFinishedMotionHandler));
--
-- if (motion)
+- motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, onFinishedMotionHandler, onBeganMotionHandler, _modelSetting, group, no));
++ motion = static_cast<CubismMotion*>(LoadMotion(buffer, size, NULL, onFinishedMotionHandler));
+ csmFloat32 fadeTime = _modelSetting->GetMotionFadeInTimeValue(group, no);
+ if (fadeTime >= 0.0f)
- {
-- csmFloat32 fadeTime = _modelSetting->GetMotionFadeInTimeValue(group, no);
-- if (fadeTime >= 0.0f)
-- {
-- motion->SetFadeInTime(fadeTime);
-- }
++ {
+ motion->SetFadeInTime(fadeTime);
+ }
-- fadeTime = _modelSetting->GetMotionFadeOutTimeValue(group, no);
-- if (fadeTime >= 0.0f)
-- {
-- motion->SetFadeOutTime(fadeTime);
-- }
-- motion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
-- autoDelete = true; // 終了時にメモリから削除
+- if (motion)
+ fadeTime = _modelSetting->GetMotionFadeOutTimeValue(group, no);
+ if (fadeTime >= 0.0f)
-+ {
+ {
+- motion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
+- autoDelete = true; // 終了時にメモリから削除
+ motion->SetFadeOutTime(fadeTime);
}
+ motion->SetEffectIds(_eyeBlinkIds, _lipSyncIds);
DeleteBuffer(buffer, path.GetRawString());
}
-@@ -509,12 +433,11 @@ CubismMotionQueueEntryHandle LAppModel::
+ else
+ {
+- motion->SetBeganMotionHandler(onBeganMotionHandler);
+ motion->SetFinishedMotionHandler(onFinishedMotionHandler);
+ }
+
+@@ -488,17 +433,16 @@ CubismMotionQueueEntryHandle LAppModel::
{
csmString path = voice;
path = _modelHomeDir + path;
}
return _motionManager->StartMotionPriority(motion, autoDelete, priority);
}
-@@ -579,7 +502,7 @@ void LAppModel::SetExpression(const csmC
+
+-CubismMotionQueueEntryHandle LAppModel::StartRandomMotion(const csmChar* group, csmInt32 priority, ACubismMotion::FinishedMotionCallback onFinishedMotionHandler, ACubismMotion::BeganMotionCallback onBeganMotionHandler)
++CubismMotionQueueEntryHandle LAppModel::StartRandomMotion(const csmChar* group, csmInt32 priority, ACubismMotion::FinishedMotionCallback onFinishedMotionHandler)
+ {
+ if (_modelSetting->GetMotionCount(group) == 0)
+ {
+@@ -507,7 +451,7 @@ CubismMotionQueueEntryHandle LAppModel::
+
+ csmInt32 no = rand() % _modelSetting->GetMotionCount(group);
+
+- return StartMotion(group, no, priority, onFinishedMotionHandler, onBeganMotionHandler);
++ return StartMotion(group, no, priority, onFinishedMotionHandler);
+ }
+
+ void LAppModel::DoDraw()
+@@ -558,16 +502,16 @@ void LAppModel::SetExpression(const csmC
ACubismMotion* motion = _expressions[expressionID];
if (_debugMode)
{
}
if (motion != NULL)
-@@ -588,7 +511,7 @@ void LAppModel::SetExpression(const csmC
+ {
+- _expressionManager->StartMotion(motion, false);
++ _expressionManager->StartMotionPriority(motion, false, PriorityForce);
}
else
{
}
}
-@@ -662,29 +585,36 @@ Csm::Rendering::CubismOffscreenSurface_O
+@@ -641,29 +585,36 @@ Csm::Rendering::CubismOffscreenSurface_O
return _renderBuffer;
}
}
+
diff -pruN --exclude build ./demo_clean/src/LAppModel.hpp ./demo_dev/src/LAppModel.hpp
---- ./demo_clean/src/LAppModel.hpp 2024-03-28 18:19:04.414826700 +0000
+--- ./demo_clean/src/LAppModel.hpp 2025-03-23 03:36:38.828478700 +0000
+++ ./demo_dev/src/LAppModel.hpp 2024-03-28 18:25:30.566916900 +0000
@@ -1,4 +1,4 @@
-/**
/**
* @brief デストラクタ
-@@ -115,12 +118,11 @@ public:
+@@ -66,10 +69,9 @@ public:
+ * @param[in] no グループ内の番号
+ * @param[in] priority 優先度
+ * @param[in] onFinishedMotionHandler モーション再生終了時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
+- * @param[in] onBeganMotionHandler モーション再生開始時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
+ * @return 開始したモーションの識別番号を返す。個別のモーションが終了したか否かを判定するIsFinished()の引数で使用する。開始できない時は「-1」
+ */
+- Csm::CubismMotionQueueEntryHandle StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL, Csm::ACubismMotion::BeganMotionCallback onBeganMotionHandler = NULL);
++ Csm::CubismMotionQueueEntryHandle StartMotion(const Csm::csmChar* group, Csm::csmInt32 no, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL);
+
+ /**
+ * @brief ランダムに選ばれたモーションの再生を開始する。
+@@ -77,10 +79,9 @@ public:
+ * @param[in] group モーショングループ名
+ * @param[in] priority 優先度
+ * @param[in] onFinishedMotionHandler モーション再生終了時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
+- * @param[in] onBeganMotionHandler モーション再生開始時に呼び出されるコールバック関数。NULLの場合、呼び出されない。
+ * @return 開始したモーションの識別番号を返す。個別のモーションが終了したか否かを判定するIsFinished()の引数で使用する。開始できない時は「-1」
+ */
+- Csm::CubismMotionQueueEntryHandle StartRandomMotion(const Csm::csmChar* group, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL, Csm::ACubismMotion::BeganMotionCallback onBeganMotionHandler = NULL);
++ Csm::CubismMotionQueueEntryHandle StartRandomMotion(const Csm::csmChar* group, Csm::csmInt32 priority, Csm::ACubismMotion::FinishedMotionCallback onFinishedMotionHandler = NULL);
+
+ /**
+ * @brief 引数で指定した表情モーションをセットする
+@@ -117,12 +118,11 @@ public:
Csm::Rendering::CubismOffscreenSurface_OpenGLES2& GetRenderBuffer();
/**
protected:
/**
-@@ -175,6 +177,17 @@ private:
+@@ -177,6 +177,17 @@ private:
*/
void ReleaseExpressions();
Csm::ICubismModelSetting* _modelSetting; ///< モデルセッティング情報
Csm::csmString _modelHomeDir; ///< モデルセッティングが置かれたディレクトリ
Csm::csmFloat32 _userTimeSeconds; ///< デルタ時間の積算値[秒]
-@@ -191,7 +204,10 @@ private:
+@@ -193,7 +204,10 @@ private:
const Csm::CubismId* _idParamEyeBallX; ///< パラメータID: ParamEyeBallX
const Csm::CubismId* _idParamEyeBallY; ///< パラメータID: ParamEyeBallXY
+
+
diff -pruN --exclude build ./demo_clean/src/LAppPal.cpp ./demo_dev/src/LAppPal.cpp
---- ./demo_clean/src/LAppPal.cpp 2024-03-28 18:19:04.037915500 +0000
+--- ./demo_clean/src/LAppPal.cpp 2025-03-23 03:36:38.287821100 +0000
+++ ./demo_dev/src/LAppPal.cpp 2023-03-05 23:22:10.834981800 +0000
@@ -1,4 +1,4 @@
-/**
* Copyright(c) Live2D Inc. All rights reserved.
*
* Use of this source code is governed by the Live2D Open Software license
-@@ -6,7 +6,9 @@
+@@ -6,8 +6,9 @@
*/
#include "LAppPal.hpp"
+-#include <windows.h>
-#include <cstdio>
+#include <stdexcept>
+#include <stdio.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <iostream>
-@@ -35,37 +37,18 @@ csmByte* LAppPal::LoadFileAsBytes(const
- if (stat(path, &statBuf) == 0)
+@@ -28,55 +29,30 @@ double LAppPal::s_deltaTime = 0.0;
+
+ csmByte* LAppPal::LoadFileAsBytes(const string filePath, csmSizeInt* outSize)
+ {
+- wchar_t wideStr[MAX_PATH];
+- MultiByteToWideChar(CP_UTF8, 0U, filePath.c_str(), -1, wideStr, MAX_PATH);
++ //filePath;//
++ const char* path = filePath.c_str();
+
+ int size = 0;
+- struct _stat statBuf;
+- if (_wstat(wideStr, &statBuf) == 0)
++ struct stat statBuf;
++ if (stat(path, &statBuf) == 0)
{
size = statBuf.st_size;
-
- {
- if (DebugLogEnable)
- {
-- PrintLogLn("Stat succeeded but file size is zero. path:%s", path);
+- PrintLogLn("Stat succeeded but file size is zero. path:%s", filePath.c_str());
- }
- return NULL;
- }
- {
- if (DebugLogEnable)
- {
-- PrintLogLn("Stat failed. errno:%d path:%s", errno, path);
+- PrintLogLn("Stat failed. errno:%d path:%s", errno, filePath.c_str());
- }
- return NULL;
+ PrintLog(path);
}
- std::fstream file;
+- std::wfstream file;
+- file.open(wideStr, std::ios::in | std::ios::binary);
++ std::fstream file;
+ char* buf = new char[size];
+
- file.open(path, std::ios::in | std::ios::binary);
++ file.open(path, std::ios::in | std::ios::binary);
if (!file.is_open())
{
- if (DebugLogEnable)
- {
-- PrintLogLn("File open failed. path:%s", path);
+- PrintLogLn("File open failed. path:%s", filePath.c_str());
- }
+ throw std::runtime_error("Failed to open file " + filePath);
return NULL;
}
-
-- char* buf = new char[size];
- file.read(buf, size);
+- // ファイル名はワイド文字で探しているがファイルの中身はutf-8なので、1バイトずつ取得する。
+-
+- *outSize = size;
+- csmChar* buf = new char[*outSize];
+- std::wfilebuf* fileBuf = file.rdbuf();
+- for (csmUint32 i = 0; i < *outSize; i++)
+- {
+- buf[i] = fileBuf->sbumpc();
+- }
++ file.read(buf, size);
file.close();
-@@ -95,28 +78,8 @@ void LAppPal::PrintLog(const csmChar* fo
++ *outSize = size;
+ return reinterpret_cast<csmByte*>(buf);
+ }
+
+@@ -102,28 +78,8 @@ void LAppPal::PrintLog(const csmChar* fo
va_list args;
csmChar buf[256];
va_start(args, format);
va_end(args);
}
-@@ -124,8 +87,3 @@ void LAppPal::PrintMessage(const csmChar
+@@ -131,18 +87,3 @@ void LAppPal::PrintMessage(const csmChar
{
PrintLog("%s", message);
}
-{
- PrintLogLn("%s", message);
-}
+-
+-bool LAppPal::ConvertMultiByteToWide(const csmChar* multiByte, wchar_t* wide, int wideSize)
+-{
+- return MultiByteToWideChar(CP_UTF8, 0U, multiByte, -1, wide, wideSize) != 0;
+-}
+-
+-bool LAppPal::ConvertWideToMultiByte(const wchar_t* wide, csmChar* multiByte, int multiByteSize)
+-{
+- return WideCharToMultiByte(CP_UTF8, 0U, wide, -1, multiByte, multiByteSize, NULL, NULL) != 0;
+-}
diff -pruN --exclude build ./demo_clean/src/LAppPal.hpp ./demo_dev/src/LAppPal.hpp
---- ./demo_clean/src/LAppPal.hpp 2024-03-28 18:19:03.957378000 +0000
+--- ./demo_clean/src/LAppPal.hpp 2025-03-23 03:36:38.181753100 +0000
+++ ./demo_dev/src/LAppPal.hpp 2023-03-05 23:22:10.939820800 +0000
@@ -1,4 +1,4 @@
-/**
* @brief メッセージを出力する
*
* メッセージを出力する
-@@ -82,16 +72,6 @@ public:
+@@ -82,34 +72,6 @@ public:
*/
static void PrintMessage(const Csm::csmChar* message);
- */
- static void PrintMessageLn(const Csm::csmChar* message);
-
+- /**
+- * @brief マルチバイト文字からワイド文字に変換する
+- *
+- * @param[in] multiByte 変換元
+- * @param[in] wide 格納先
+- * @param[in] wideSize 格納先の大きさ
+- */
+- static bool ConvertMultiByteToWide(const Csm::csmChar* multiByte, wchar_t* wide, int wideSize);
+-
+- /**
+- * @brief ワイド文字からマルチバイト文字に変換する
+- *
+- * @param[in] wide 変換元
+- * @param[in] multiByte 格納先
+- * @param[in] multiByteSize 格納先の大きさ
+- */
+- static bool ConvertWideToMultiByte(const wchar_t* wide, Csm::csmChar* multiByte, int multiByteSize);
+-
private:
static double s_currentFrame;
static double s_lastFrame;
diff -pruN --exclude build ./demo_clean/src/LAppSprite.cpp ./demo_dev/src/LAppSprite.cpp
---- ./demo_clean/src/LAppSprite.cpp 2024-03-28 18:19:04.304960000 +0000
+--- ./demo_clean/src/LAppSprite.cpp 2025-03-23 03:36:38.649078200 +0000
+++ ./demo_dev/src/LAppSprite.cpp 2023-03-05 23:22:10.900085700 +0000
@@ -1,4 +1,4 @@
-/**
- _maxHeight = height;
-}
diff -pruN --exclude build ./demo_clean/src/LAppSprite.hpp ./demo_dev/src/LAppSprite.hpp
---- ./demo_clean/src/LAppSprite.hpp 2024-03-28 18:19:03.831886500 +0000
+--- ./demo_clean/src/LAppSprite.hpp 2025-03-23 03:36:37.970299000 +0000
+++ ./demo_dev/src/LAppSprite.hpp 2023-03-05 23:22:10.876156000 +0000
@@ -1,4 +1,4 @@
-/**
- int _maxHeight; ///< ウインドウ高さ
};
+diff -pruN --exclude build ./demo_clean/src/LAppSpriteShader.cpp ./demo_dev/src/LAppSpriteShader.cpp
+--- ./demo_clean/src/LAppSpriteShader.cpp 2025-03-23 03:36:37.781727200 +0000
++++ ./demo_dev/src/LAppSpriteShader.cpp 1970-01-01 00:00:00.000000000 +0000
+@@ -1,108 +0,0 @@
+-/**
+- * Copyright(c) Live2D Inc. All rights reserved.
+- *
+- * Use of this source code is governed by the Live2D Open Software license
+- * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
+- */
+-
+-#include "LAppSpriteShader.hpp"
+-#include <Utils/CubismDebug.hpp>
+-#include "LAppDefine.hpp"
+-#include "LAppPal.hpp"
+-
+-using namespace LAppDefine;
+-
+-LAppSpriteShader::LAppSpriteShader()
+-{
+- _programId = CreateShader();
+-}
+-
+-LAppSpriteShader::~LAppSpriteShader()
+-{
+- glDeleteShader(_programId);
+-}
+-
+-GLuint LAppSpriteShader::GetShaderId() const
+-{
+- return _programId;
+-}
+-
+-GLuint LAppSpriteShader::CreateShader()
+-{
+- // シェーダーのパスの作成
+- Csm::csmString vertShaderFile(ShaderPath);
+- vertShaderFile += VertShaderName;
+- Csm::csmString fragShaderFile(ShaderPath);
+- fragShaderFile += FragShaderName;
+-
+- // シェーダーのコンパイル
+- GLuint vertexShaderId = CompileShader(vertShaderFile, GL_VERTEX_SHADER);
+- GLuint fragmentShaderId = CompileShader(fragShaderFile, GL_FRAGMENT_SHADER);
+-
+- if (!vertexShaderId || !fragmentShaderId)
+- {
+- return 0;
+- }
+-
+- //プログラムオブジェクトの作成
+- GLuint programId = glCreateProgram();
+- glAttachShader(programId, vertexShaderId);
+- glAttachShader(programId, fragmentShaderId);
+-
+- // リンク
+- glLinkProgram(programId);
+-
+- glUseProgram(programId);
+-
+- // 不要になったシェーダーオブジェクトの削除
+- glDeleteShader(vertexShaderId);
+- glDeleteShader(fragmentShaderId);
+-
+- return programId;
+-}
+-
+-bool LAppSpriteShader::CheckShader(GLuint shaderId)
+-{
+- GLint status;
+- GLint logLength;
+- glGetShaderiv(shaderId, GL_INFO_LOG_LENGTH, &logLength);
+- if (logLength > 0)
+- {
+- GLchar* log = reinterpret_cast<GLchar*>(CSM_MALLOC(logLength));
+- glGetShaderInfoLog(shaderId, logLength, &logLength, log);
+- CubismLogError("Shader compile log: %s", log);
+- CSM_FREE(log);
+- }
+-
+- glGetShaderiv(shaderId, GL_COMPILE_STATUS, &status);
+- if (status == GL_FALSE)
+- {
+- glDeleteShader(shaderId);
+- return false;
+- }
+-
+- return true;
+-}
+-
+-GLuint LAppSpriteShader::CompileShader(Csm::csmString filename, GLenum shaderType)
+-{
+- // ファイル読み込み
+- Csm::csmSizeInt bufferSize = 0;
+- const char* shaderString = reinterpret_cast<const char*>(LAppPal::LoadFileAsBytes(filename.GetRawString(), &bufferSize));
+- const GLint glSize = (GLint)bufferSize;
+-
+- // コンパイル
+- GLuint shaderId = glCreateShader(shaderType);
+- glShaderSource(shaderId, 1, &shaderString, &glSize);
+- glCompileShader(shaderId);
+-
+- // 読み込んだシェーダー文字列の開放
+- LAppPal::ReleaseBytes(reinterpret_cast<Csm::csmByte*>(const_cast<char*>(shaderString)));
+-
+- if (!CheckShader(shaderId))
+- {
+- return 0;
+- }
+-
+- return shaderId;
+-}
+diff -pruN --exclude build ./demo_clean/src/LAppSpriteShader.hpp ./demo_dev/src/LAppSpriteShader.hpp
+--- ./demo_clean/src/LAppSpriteShader.hpp 2025-03-23 03:36:38.009877400 +0000
++++ ./demo_dev/src/LAppSpriteShader.hpp 1970-01-01 00:00:00.000000000 +0000
+@@ -1,57 +0,0 @@
+-/**
+- * Copyright(c) Live2D Inc. All rights reserved.
+- *
+- * Use of this source code is governed by the Live2D Open Software license
+- * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
+- */
+-
+-#pragma once
+-
+-#include <GL/glew.h>
+-#include <GLFW/glfw3.h>
+-#include <Utils/CubismString.hpp>
+-#include "CubismFramework.hpp"
+-
+-/**
+-* @brief スプライト用のシェーダー設定を保持するクラス
+-*/
+-class LAppSpriteShader
+-{
+-public:
+- /**
+- * @brief コンストラクタ
+- */
+- LAppSpriteShader();
+-
+- /**
+- * @brief デストラクタ
+- */
+- ~LAppSpriteShader();
+-
+- /**
+- * @brief シェーダーIDを取得する
+- */
+- GLuint GetShaderId() const;
+-
+-private:
+- /**
+- * @brief シェーダーオブジェクトを作成する。
+- */
+- GLuint CreateShader();
+-
+- /**
+- * @brief CreateShader内部関数 エラーチェック
+- */
+- bool CheckShader(GLuint shaderId);
+-
+- /**
+- * @brief シェーダーをコンパイルする。
+- * コンパイルに失敗した場合には 0 が戻る。
+- *
+- * @param[in] filename シェーダーファイル名
+- * @param[in] shaderType 作成するシェーダーの種類
+- */
+- GLuint CompileShader(Csm::csmString filename, GLenum shaderType);
+-
+- GLuint _programId; ///< シェーダID
+-};
diff -pruN --exclude build ./demo_clean/src/LAppTextureManager.cpp ./demo_dev/src/LAppTextureManager.cpp
---- ./demo_clean/src/LAppTextureManager.cpp 2024-03-28 18:19:04.226438800 +0000
+--- ./demo_clean/src/LAppTextureManager.cpp 2025-03-23 03:36:38.568277100 +0000
+++ ./demo_dev/src/LAppTextureManager.cpp 2023-03-05 23:22:10.765166600 +0000
@@ -1,4 +1,4 @@
-/**
#include "LAppPal.hpp"
LAppTextureManager::LAppTextureManager()
-@@ -89,6 +96,46 @@ LAppTextureManager::TextureInfo* LAppTex
+@@ -89,11 +96,50 @@ LAppTextureManager::TextureInfo* LAppTex
}
void LAppTextureManager::ReleaseTextures()
{
for (Csm::csmUint32 i = 0; i < _textures.GetSize(); i++)
+ {
+- glDeleteTextures(1, &(_textures[i]->id));
+ delete _textures[i];
+ }
+
+@@ -108,7 +154,6 @@ void LAppTextureManager::ReleaseTexture(
+ {
+ continue;
+ }
+- glDeleteTextures(1, &(_textures[i]->id));
+ delete _textures[i];
+ _textures.Remove(i);
+ break;
+@@ -121,7 +166,6 @@ void LAppTextureManager::ReleaseTexture(
+ {
+ if (_textures[i]->fileName == fileName)
+ {
+- glDeleteTextures(1, &(_textures[i]->id));
+ delete _textures[i];
+ _textures.Remove(i);
+ break;
diff -pruN --exclude build ./demo_clean/src/LAppTextureManager.hpp ./demo_dev/src/LAppTextureManager.hpp
---- ./demo_clean/src/LAppTextureManager.hpp 2024-03-28 18:19:04.351863200 +0000
+--- ./demo_clean/src/LAppTextureManager.hpp 2025-03-23 03:36:38.735450300 +0000
+++ ./demo_dev/src/LAppTextureManager.hpp 2023-03-05 23:22:10.822016600 +0000
@@ -1,4 +1,4 @@
-/**
private:
diff -pruN --exclude build ./demo_clean/src/LAppView.cpp ./demo_dev/src/LAppView.cpp
---- ./demo_clean/src/LAppView.cpp 2024-03-28 18:19:03.722026200 +0000
+--- ./demo_clean/src/LAppView.cpp 2025-03-23 03:36:37.822279000 +0000
+++ ./demo_dev/src/LAppView.cpp 2024-03-28 18:26:14.230329000 +0000
@@ -1,4 +1,4 @@
-/**
#include "LAppDefine.hpp"
-#include "TouchManager.hpp"
#include "LAppSprite.hpp"
+-#include "LAppSpriteShader.hpp"
#include "LAppModel.hpp"
+#include <Rendering/OpenGL/CubismOffscreenSurface_OpenGLES2.hpp>
using namespace LAppDefine;
LAppView::LAppView():
- _programId(0),
++ _programId(0),
_back(NULL),
- _gear(NULL),
- _power(NULL),
// デバイス座標からスクリーン座標に変換するための
_deviceToScreen = new CubismMatrix44();
-@@ -47,12 +44,10 @@ LAppView::~LAppView()
+@@ -46,14 +43,11 @@ LAppView::LAppView():
+ LAppView::~LAppView()
{
_renderBuffer.DestroyOffscreenSurface();
+- delete _spriteShader;
delete _renderSprite;
+
delete _viewMatrix;
}
void LAppView::Initialize()
-@@ -75,7 +70,7 @@ void LAppView::Initialize()
+@@ -76,7 +70,7 @@ void LAppView::Initialize()
_viewMatrix->SetScreenRect(left, right, bottom, top); // デバイスに対応する画面の範囲。 Xの左端, Xの右端, Yの下端, Yの上端
_viewMatrix->Scale(ViewScale, ViewScale);
if (width > height)
{
float screenW = fabsf(right - left);
-@@ -103,16 +98,7 @@ void LAppView::Initialize()
+@@ -100,25 +94,11 @@ void LAppView::Initialize()
+ ViewLogicalMaxBottom,
+ ViewLogicalMaxTop
+ );
+-
+- // シェーダー作成
+- _spriteShader = new LAppSpriteShader();
+-
+- InitializeSprite();
+ }
void LAppView::Render()
{
LAppLive2DManager* Live2DManager = LAppLive2DManager::GetInstance();
-@@ -132,16 +118,15 @@ void LAppView::Render()
+@@ -138,16 +118,15 @@ void LAppView::Render()
1.0f, 0.0f,
};
}
}
}
-@@ -155,85 +140,22 @@ void LAppView::InitializeSprite()
+@@ -155,91 +134,28 @@ void LAppView::Render()
+
+ void LAppView::InitializeSprite()
+ {
+- GLuint programId = _spriteShader->GetShaderId();
++ _programId = LAppDelegate::GetInstance()->CreateShader();
+
+ int width, height;
glfwGetWindowSize(LAppDelegate::GetInstance()->GetWindow(), &width, &height);
LAppTextureManager* textureManager = LAppDelegate::GetInstance()->GetTextureManager();
float y = height * 0.5f;
- float fWidth = static_cast<float>(backgroundTexture->width * 2.0f);
- float fHeight = static_cast<float>(height * 0.95f);
-+ float fWidth = static_cast<float>(width);
-+ float fHeight = static_cast<float>(height);
- _back = new LAppSprite(x, y, fWidth, fHeight, backgroundTexture->id, _programId);
-
+- _back = new LAppSprite(x, y, fWidth, fHeight, backgroundTexture->id, programId);
+-
- imageName = GearImageName;
- LAppTextureManager::TextureInfo* gearTexture = textureManager->CreateTextureFromPngFile(resourcesPath + imageName);
-
- y = static_cast<float>(height - gearTexture->height * 0.5f);
- fWidth = static_cast<float>(gearTexture->width);
- fHeight = static_cast<float>(gearTexture->height);
-- _gear = new LAppSprite(x, y, fWidth, fHeight, gearTexture->id, _programId);
+- _gear = new LAppSprite(x, y, fWidth, fHeight, gearTexture->id, programId);
-
- imageName = PowerImageName;
- LAppTextureManager::TextureInfo* powerTexture = textureManager->CreateTextureFromPngFile(resourcesPath + imageName);
- y = static_cast<float>(powerTexture->height * 0.5f);
- fWidth = static_cast<float>(powerTexture->width);
- fHeight = static_cast<float>(powerTexture->height);
-- _power = new LAppSprite(x, y, fWidth, fHeight, powerTexture->id, _programId);
--
+- _power = new LAppSprite(x, y, fWidth, fHeight, powerTexture->id, programId);
++ float fWidth = static_cast<float>(width);
++ float fHeight = static_cast<float>(height);
++ _back = new LAppSprite(x, y, fWidth, fHeight, backgroundTexture->id, _programId);
+
// 画面全体を覆うサイズ
x = width * 0.5f;
y = height * 0.5f;
- _renderSprite = new LAppSprite(x, y, static_cast<float>(width), static_cast<float>(height), 0, _programId);
+- _renderSprite = new LAppSprite(x, y, static_cast<float>(width), static_cast<float>(height), 0, programId);
-}
-
-void LAppView::OnTouchesBegan(float px, float py) const
- LAppPal::PrintLogLn("[APP]touchesEnded x:%.2f y:%.2f", x, y);
- }
- live2DManager->OnTap(x, y);
++ _renderSprite = new LAppSprite(x, y, static_cast<float>(width), static_cast<float>(height), 0, _programId);
- // 歯車にタップしたか
- if (_gear->IsHit(px, py))
}
float LAppView::TransformViewX(float deviceX) const
-@@ -258,7 +180,7 @@ float LAppView::TransformScreenY(float d
+@@ -264,7 +180,7 @@ float LAppView::TransformScreenY(float d
return _deviceToScreen->TransformY(deviceY);
}
{
// 別のレンダリングターゲットへ向けて描画する場合の使用するフレームバッファ
Csm::Rendering::CubismOffscreenSurface_OpenGLES2* useTarget = NULL;
-@@ -271,12 +193,13 @@ void LAppView::PreModelDraw(LAppModel& r
+@@ -277,12 +193,13 @@ void LAppView::PreModelDraw(LAppModel& r
if (!useTarget->IsValid())
{// 描画ターゲット内部未作成の場合はここで作成
}
}
-@@ -286,7 +209,7 @@ void LAppView::PreModelDraw(LAppModel& r
+@@ -292,7 +209,7 @@ void LAppView::PreModelDraw(LAppModel& r
}
}
{
// 別のレンダリングターゲットへ向けて描画する場合の使用するフレームバッファ
Csm::Rendering::CubismOffscreenSurface_OpenGLES2* useTarget = NULL;
-@@ -312,12 +235,6 @@ void LAppView::PostModelDraw(LAppModel&
+@@ -318,12 +235,6 @@ void LAppView::PostModelDraw(LAppModel&
};
_renderSprite->SetColor(1.0f, 1.0f, 1.0f, GetSpriteAlpha(0));
_renderSprite->RenderImmidiate(useTarget->GetColorBuffer(), uvVertex);
}
}
-@@ -382,32 +299,4 @@ void LAppView::ResizeSprite()
+@@ -388,32 +299,4 @@ void LAppView::ResizeSprite()
_back->ResetRect(x, y, fWidth, fHeight);
}
}
- }
}
diff -pruN --exclude build ./demo_clean/src/LAppView.hpp ./demo_dev/src/LAppView.hpp
---- ./demo_clean/src/LAppView.hpp 2024-03-28 18:19:03.659043800 +0000
+--- ./demo_clean/src/LAppView.hpp 2025-03-23 03:36:37.693545200 +0000
+++ ./demo_dev/src/LAppView.hpp 2024-03-28 18:25:01.124283600 +0000
@@ -1,4 +1,4 @@
-/**
* Copyright(c) Live2D Inc. All rights reserved.
*
* Use of this source code is governed by the Live2D Open Software license
-@@ -14,7 +14,6 @@
+@@ -14,10 +14,8 @@
#include "CubismFramework.hpp"
#include <Rendering/OpenGL/CubismOffscreenSurface_OpenGLES2.hpp>
-class TouchManager;
class LAppSprite;
class LAppModel;
+-class LAppSpriteShader;
-@@ -61,35 +60,11 @@ public:
+ /**
+ * @brief 描画クラス
+@@ -62,35 +60,11 @@ public:
void InitializeSprite();
/**
* @brief X座標をView座標に変換する。
*
* @param[in] deviceX デバイスX座標
-@@ -120,12 +95,12 @@ public:
+@@ -121,12 +95,12 @@ public:
/**
* @brief モデル1体を描画する直前にコールされる
*/
/**
* @brief 別レンダリングターゲットにモデルを描画するサンプルで
-@@ -147,16 +122,13 @@ public:
+@@ -148,18 +122,14 @@ public:
void SetRenderTargetClearColor(float r, float g, float b);
private:
- TouchManager* _touchManager; ///< タッチマネージャー
Csm::CubismMatrix44* _deviceToScreen; ///< デバイスからスクリーンへの行列
Csm::CubismViewMatrix* _viewMatrix; ///< viewMatrix
- GLuint _programId; ///< シェーダID
++ GLuint _programId; ///< シェーダID
LAppSprite* _back; ///< 背景画像
- LAppSprite* _gear; ///< ギア画像
- LAppSprite* _power; ///< 電源画像
Csm::Rendering::CubismOffscreenSurface_OpenGLES2 _renderBuffer; ///< モードによってはCubismモデル結果をこっちにレンダリング
SelectTarget _renderTarget; ///< レンダリング先の選択肢
float _clearColor[4]; ///< レンダリングターゲットのクリアカラー
+-
+- LAppSpriteShader* _spriteShader; ///< シェーダー作成委譲クラス
+ };
diff -pruN --exclude build ./demo_clean/src/LAppWavFileHandler.cpp ./demo_dev/src/LAppWavFileHandler.cpp
---- ./demo_clean/src/LAppWavFileHandler.cpp 2024-03-28 18:19:04.555847400 +0000
+--- ./demo_clean/src/LAppWavFileHandler.cpp 2025-03-23 03:36:39.011226300 +0000
+++ ./demo_dev/src/LAppWavFileHandler.cpp 2023-03-05 23:22:10.921862800 +0000
@@ -11,8 +11,7 @@
#include "LAppPal.hpp"
}
}
diff -pruN --exclude build ./demo_clean/src/LAppWavFileHandler.hpp ./demo_dev/src/LAppWavFileHandler.hpp
---- ./demo_clean/src/LAppWavFileHandler.hpp 2024-03-28 18:19:04.132172700 +0000
+--- ./demo_clean/src/LAppWavFileHandler.hpp 2025-03-23 03:36:38.433030700 +0000
+++ ./demo_dev/src/LAppWavFileHandler.hpp 2023-03-05 23:22:10.871136700 +0000
@@ -8,7 +8,7 @@
#pragma once
Csm::csmUint32 _sampleOffset; ///< サンプル参照位置
Csm::csmFloat32 _lastRms; ///< 最後に計測したRMS値
diff -pruN --exclude build ./demo_clean/src/MouseActionManager.cpp ./demo_dev/src/MouseActionManager.cpp
---- ./demo_clean/src/MouseActionManager.cpp 2024-03-28 18:19:04.195179800 +0000
+--- ./demo_clean/src/MouseActionManager.cpp 2025-03-23 03:36:38.520068400 +0000
+++ ./demo_dev/src/MouseActionManager.cpp 2023-03-05 23:22:10.841970900 +0000
@@ -1,9 +1,9 @@
-/**
}
diff -pruN --exclude build ./demo_clean/src/MouseActionManager.hpp ./demo_dev/src/MouseActionManager.hpp
---- ./demo_clean/src/MouseActionManager.hpp 2024-03-28 18:19:04.336247400 +0000
+--- ./demo_clean/src/MouseActionManager.hpp 2025-03-23 03:36:38.688427700 +0000
+++ ./demo_dev/src/MouseActionManager.hpp 2023-03-05 23:22:10.961094400 +0000
@@ -1,4 +1,4 @@
-/**
*
* Use of this source code is governed by the Live2D Open Software license
diff -pruN --exclude build ./demo_clean/src/TouchManager.cpp ./demo_dev/src/TouchManager.cpp
---- ./demo_clean/src/TouchManager.cpp 2024-03-28 18:19:04.493378700 +0000
+--- ./demo_clean/src/TouchManager.cpp 2025-03-23 03:36:38.923124200 +0000
+++ ./demo_dev/src/TouchManager.cpp 2023-03-05 23:22:10.861957900 +0000
@@ -1,4 +1,4 @@
-/**
*
* Use of this source code is governed by the Live2D Open Software license
diff -pruN --exclude build ./demo_clean/src/TouchManager.hpp ./demo_dev/src/TouchManager.hpp
---- ./demo_clean/src/TouchManager.hpp 2024-03-28 18:19:03.612203500 +0000
+--- ./demo_clean/src/TouchManager.hpp 2025-03-23 03:36:37.652847100 +0000
+++ ./demo_dev/src/TouchManager.hpp 2023-03-05 23:22:10.884102300 +0000
@@ -1,4 +1,4 @@
-/**
*
* Use of this source code is governed by the Live2D Open Software license
diff -pruN --exclude build ./demo_clean/src/main.cpp ./demo_dev/src/main.cpp
---- ./demo_clean/src/main.cpp 2024-03-28 18:19:03.894879200 +0000
+--- ./demo_clean/src/main.cpp 2025-03-23 03:36:38.089628300 +0000
+++ ./demo_dev/src/main.cpp 2023-03-05 23:22:10.772150300 +0000
-@@ -1,22 +1,166 @@
+@@ -1,30 +1,166 @@
-/**
+/**
* Copyright(c) Live2D Inc. All rights reserved.
+
+
#include "LAppDelegate.hpp"
+-#include <windows.h>
+#include "LAppLive2DManager.hpp"
+#include "facial_landmark_detector.h"
-
--int main()
++
+struct CmdArgs
- {
-- // create the application instance
-- if (LAppDelegate::GetInstance()->Initialize() == GL_FALSE)
++{
+ int windowWidth;
+ int windowHeight;
+ std::string windowTitle;
+
+ int i = 1;
+ while (i < argc)
- {
-- return 1;
++ {
+ std::string arg = argv[i];
+ std::stringstream ss;
+
+ }
+
+ i += 2;
- }
-
-- LAppDelegate::GetInstance()->Run();
++ }
++
+ return cmdArgs;
+}
-+
+
+-int main()
+int main(int argc, char* argv[])
-+{
+ {
+- // Setting the console character encoding to UTF-8
+- UINT preConsoleOutputCP = GetConsoleOutputCP();
+- SetConsoleOutputCP(65001);
+ auto cmdArgs = parseArgv(argc, argv);
-+
+
+- // create the application instance
+- if (LAppDelegate::GetInstance()->Initialize() == GL_FALSE)
+ LAppDelegate *delegate = LAppDelegate::GetInstance();
+
+ if (!delegate->Initialize(cmdArgs.windowWidth,
+ cmdArgs.windowHeight,
+ cmdArgs.windowTitle.c_str()))
-+ {
+ {
+- SetConsoleOutputCP(preConsoleOutputCP);
+- return 1;
+ throw std::runtime_error("Unable to initialize LAppDelegate");
-+ }
-+
+ }
+
+- LAppDelegate::GetInstance()->Run();
+ delegate->SetRootDirectory(cmdArgs.rootDir);
+
+ FacialLandmarkDetector detector(cmdArgs.cfgPath);
-+
+
+- SetConsoleOutputCP(preConsoleOutputCP);
+ std::thread detectorThread(&FacialLandmarkDetector::mainLoop,
+ &detector);
+
}
-
diff -pruN --exclude build ./demo_clean/src/mainMinimum.cpp ./demo_dev/src/mainMinimum.cpp
---- ./demo_clean/src/mainMinimum.cpp 2024-03-28 18:19:04.383534500 +0000
+--- ./demo_clean/src/mainMinimum.cpp 2025-03-23 03:36:38.779425400 +0000
+++ ./demo_dev/src/mainMinimum.cpp 2023-03-05 23:22:10.854990900 +0000
@@ -1,4 +1,4 @@
-/**