Skip to content

Commit 6f3fa01

Browse files
author
BonexGu
committed
3.0.0
1 parent b4f7e78 commit 6f3fa01

File tree

399 files changed

+11123
-8136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+11123
-8136
lines changed

ChangeLog.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
(MarmaladeSDK 7.0.0)
1+
(Marmalade-SDK 7.0.0)
22
https://www.madewithmarmalade.com/downloads/7.0/7.0.0/marmalade-sdk-7.0.0-353650-windows.exe
33

4+
(QT-SDK 5.2.1)
5+
http://download.qt-project.org/official_releases/qt/5.2/5.2.1/qt-opensource-windows-x86-android-5.2.1.exe
6+
47
�� ��:�ű�, ��:������Ʈ, ��:������ġ, ��:����
58

9+
�������������������������������������������������������������
10+
�� [2.9.0] �� [3.0.0]
11+
�� BxCoreForQT5 : QT5�� �ھ�(�׷��Ƚ�/����/��Ʈ �����߰�)
12+
�� BxVarMap : Remove�߰�
613
�������������������������������������������������������������
714
�� [2.8.0] �� [2.9.0]
815
�� All Source : CP949���� UTF-8(BOM)�� ��ȯ

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
BxEngine 2.9.0 For Marmalade 7.0.0
2-
==================================
1+
BxEngine 3.0.0 For Marmalade 7.0.0 And QT 5.2.1
2+
===============================================
33

44
안녕하세요. github로 서비스하는 BxEngine입니다.
55

@@ -19,11 +19,13 @@ dynamical resource loading /
1919
BEKON parser (better json) /
2020
THROW (dynamical parameter) /
2121
software renderer /
22-
medusa-tool /
23-
typhon-tool
22+
animation-tool /
23+
particle-tool
2424

2525

26-
SDK-700 : https://www.madewithmarmalade.com/downloads/7.0/7.0.0/marmalade-sdk-7.0.0-353650-windows.exe
26+
Marmalade-700 : https://www.madewithmarmalade.com/downloads/7.0/7.0.0/marmalade-sdk-7.0.0-353650-windows.exe
27+
28+
QT-521 : http://download.qt-project.org/official_releases/qt/5.2/5.2.1/qt-opensource-windows-x86-android-5.2.1.exe
2729

2830
MEDUSA AnimationTool : http://cafe.naver.com/bxengineformarmalade/64
2931

bxaddon/BxAddOn_HQX.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ static inline uint32_t rgb_to_yuv(uint32_t c)
125125

126126
/* Test if there is difference in color */
127127
static inline int yuv_diff(uint32_t yuv1, uint32_t yuv2) {
128-
return (( abs((yuv1 & Ymask) - (yuv2 & Ymask)) > trY ) ||
129-
( abs((yuv1 & Umask) - (yuv2 & Umask)) > trU ) ||
130-
( abs((yuv1 & Vmask) - (yuv2 & Vmask)) > trV ) );
128+
return (( abs((int) ((yuv1 & Ymask) - (yuv2 & Ymask))) > trY ) ||
129+
( abs((int) ((yuv1 & Umask) - (yuv2 & Umask))) > trU ) ||
130+
( abs((int) ((yuv1 & Vmask) - (yuv2 & Vmask))) > trV ) );
131131
}
132132

133133
static inline int Diff(uint32_t c1, uint32_t c2)

bxcore/BxCore.hpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -173,18 +173,16 @@ namespace BxCore
173173
/*!
174174
\brief CP949 스트링상수로부터 UTF8 스트링상수얻기 (Macro함수인 W1을 사용권장)
175175
\param cp949 : CP949 스트링상수
176-
\param size : cp949의 바이트사이즈
177176
\return UTF8 스트링상수
178177
*/
179-
string const GetUTF8LiteralByCP949(string const cp949, const int size);
178+
string const GetUTF8LiteralByCP949(string const cp949);
180179

181180
/*!
182181
\brief UTF8 스트링상수로부터 CP949 스트링상수얻기 (Macro함수인 MB를 사용권장)
183182
\param utf8 : UTF8 스트링상수
184-
\param size : utf8의 바이트사이즈
185183
\return CP949 스트링상수
186184
*/
187-
string const GetCP949LiteralByUTF8(string const utf8, const int size);
185+
string const GetCP949LiteralByUTF8(string const utf8);
188186

189187
/*!
190188
\brief OS이름 구하기

0 commit comments

Comments
 (0)