-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLAppPal.hpp
72 lines (62 loc) · 1.84 KB
/
LAppPal.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* 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 <CubismFramework.hpp>
/**
* @brief プラットフォーム依存機能を抽象化する Cubism Platform Abstraction Layer.
*
* ファイル読み込みや時刻取得等のプラットフォームに依存する関数をまとめる
*
*/
class LAppPal
{
public:
/**
* @brief ファイルをバイトデータとして読み込む
*
* ファイルをバイトデータとして読み込む
*
* @param[in] filePath 読み込み対象ファイルのパス
* @param[out] outSize ファイルサイズ
* @return バイトデータ
*/
static Csm::csmByte* LoadFileAsBytes(const Csm::csmChar* filePath,Csm::csmSizeInt* outSize);
/**
* @brief バイトデータを解放する
*
* バイトデータを解放する
*
* @param[in] byteData 解放したいバイトデータ
*/
static void ReleaseBytes(Csm::csmByte* byteData);
/**
* @biref デルタ時間(前回フレームとの差分)を取得する
*
* @return デルタ時間[ms]
*
*/
static Csm::csmFloat32 GetDeltaTime();
/**
* @brief ログを出力する
*
* ログを出力する
*
* @param[in] format 書式付文字列
* @param[in] ... (可変長引数)文字列
*
*/
static void PrintLog(const Csm::csmChar* format, ...);
/**
* @brief メッセージを出力する
*
* メッセージを出力する
*
* @param[in] message 文字列
*
*/
static void PrintMessage(const Csm::csmChar* message);
};