본문 바로가기

분류 전체보기

(94)
텍스트에서 입력 받은 단어의 개수 찾기 Header #include #include #include #include #include using namespace std; class SearchWord { public: SearchWord(); SearchWord( wstring, wstring ); ~SearchWord(); private: vector vBool; wstring txt = L""; wstring word = L""; size_t szWord = 0; int nWordIndex = 0; int nTxtIndex = 0; int nSearchCount = 0; private: bool check(); public: int isEqaul(); public: int getCount(){ return this->nSearchCount..
[정리중] Cold Start / Warm Start 보호되어 있는 글입니다.
C++ 키워드 ( 정리 중 ) alignas char do goto operator static typeid alignof char16_t double if or static_assert typename and char32_t dynamic_cast inline or_eq static_cast union and_eq class else int private struct unsigned asm compl enum long protected switch using auto const explicit mutable public template virtual bitand constexpr export namespace register this void bitor const_cast extern new reinterpret_cast threa..
Visual Studio - An exception has been encountered this may be caused by an extension. An exception has been encountered this may be caused by an extension. 캐쉬 충돌로 인한 에러 해당 경로에 있는 파일을 지우고 vs다시 실행 더보기 특정 cpp파일을 열었을때 저 에러가 뜨기에 해당 cpp 파일을 닫고 하니 에러가 사라짐.
operator overloading Struct를 만들고(complex 행렬 2x2 관련 구조체) 해당 구조체를 곱했을때에 대한 계산을 위하여 연산자 * 오버로딩. 첫시도 - CustomStruct A; CustomStruct B; CustomStruct C; CustomStruct& operator*(const CustomStruct& _b, const CustomStruct& _t) { complex _rA = (_b.a * _t.a) + (_b.b * _t.c); complex _rB = (_b.a * _t.b) + (_b.b * _t.d); complex _rC = (_b.c * _t.a) + (_b.d * _t.c); complex _rD = (_b.c * _t.b) + (_b.d * _t.d); return CustomStruc..
(가제) Adjacency 보호되어 있는 글입니다.
MathPuzzle 게임 이름MathPuzzle게임 장르퍼즐사용 엔진cocos2d-x (3.17 version)사용 언어C++ & Java (Android)타겟 플랫폼모바일 (안드로이드)출시 여부X (출시 예정)개발 기간18.12.14 ~ 19. 02. 25 출시를 목적으로 개발.사칙연산을 이용한 퍼즐 게임으로, 빨간색 타일에 있는 숫자를 주변의 흰색 타일에 있는 값과 연산 부호를 이용하여 0을 만들면 끝나는 게임.영상에 나와있듯 게임 자체에 맵 에디터가 있어, 플레이어가 직접 스테이지를 만들어서 플레이 할 수 있고,공유하거나, 다른 유저가 만든 스테이지를 공유 받아 플레이 및 평점을 매길 수 있다(이 게임 또한 구글의 firebase - firestore를 이용했다. GemGemPang 때는 firebase-cpp sdk..
Gem Gem Pang Single Play Multi-Play 좌측은 9 : 16 비율, 우측은 9 : 18.5 비율이다. 게임 이름Gem Gem Pang게임 장르퍼즐사용 엔진cocos2d-x (3.17 version)사용 언어C++ & Java (Android)타겟 플랫폼모바일 (안드로이드)출시 여부X개발 기간18.05.25 ~ 18.12.28 프리랜서로 일했던 회사에서 TNPO2 개발 이후, 출시를 목적으로 개발한 게임.(하지만 직접 출시는 못했고..흡..)구글 파이어베이스를 이용하여 실시간 턴 제 멀티 게임을 구현했다.이 또한 개발과 디자인 모두 담당했다