Skip to content

Instantly share code, notes, and snippets.

View sdkfz181tiger's full-sized avatar
👾

Kajiru sdkfz181tiger

👾
View GitHub Profile
@sdkfz181tiger
sdkfz181tiger / DebugDraw.cpp
Created October 25, 2013 23:57
デバッグモード表示クラス
//
// DebugDraw.cpp
// ShimejiGame
//
// Created by sdkfz181yagni on 13/09/15.
//
//
#include "DebugDraw.h"
@sdkfz181tiger
sdkfz181tiger / UtilSound.cpp
Last active December 26, 2015 14:09
サウンド制御
//
// UtilSound.cpp
// HelloCpp
//
// Created by Shimeji Ozaki on 2013-10-16.
//
//
#include "UtilSound.h"
@sdkfz181tiger
sdkfz181tiger / UtilMath.cpp
Created October 27, 2013 11:18
2点のなす角度を計算する
//
// UtilMath.cpp
// HelloCpp
//
// Created by Shimeji Ozaki on 2013-10-06.
//
//
#include "UtilMath.h"
@sdkfz181tiger
sdkfz181tiger / hoge.cpp
Last active December 31, 2015 09:49
Cocos2d-xでのコンテンツ暗号化(お手軽) ref: http://qiita.com/sdkfz181tiger@github/items/5c850c7e78c2927aae0d
/*
詳細↓
http://qiita.com/sdkfz181tiger@github/items/5c850c7e78c2927aae0d
*/
// ZipUtils.hを読み込む
#include "support/zip_support/ZipUtils.h"
// 復号キー
ZipUtils::ccSetPvrEncryptionKeyPart(0, 0xaaaaaaaa);
@sdkfz181tiger
sdkfz181tiger / MainActivity.java
Last active August 1, 2022 07:46
Regex覚え書き
package com.ozateck.regex;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
@sdkfz181tiger
sdkfz181tiger / ClockSprite.cpp
Created June 19, 2014 00:57
Cocos2dx_ver3.0(時計)
//
// ClockSprite.cpp
// Oyadius3
//
// Created by Shimeji Ozaki on 2014-06-17.
//
//
#include "ClockSprite.h"
@sdkfz181tiger
sdkfz181tiger / MakerInvaders.class.php
Created June 21, 2014 19:48
インベーダーを大量に発生させるクラス
<?php
/*--------------------------------
[2014/03/05]
インベーダーを大量に発生させるクラス
--------------------------------*/
class MakeInvaders{
// メンバー変数
public $_dir; // ファイルの保存先ディレクトリ
@sdkfz181tiger
sdkfz181tiger / CalendarSprite.cpp
Created June 25, 2014 11:59
CalendarSprite(Cocos2dx_ver3.0)
//
// CalendarSprite.cpp
// Oyadius3
//
// Created by Shimeji Ozaki on 2014-06-22.
//
//
#include "CalendarSprite.h"
//
// UtilNativeJNI.cpp
// Oyadius1
//
// Created by Shimeji Ozaki on 2014-02-04.
//
//
#include "UtilNativeJNI.h"
@sdkfz181tiger
sdkfz181tiger / CountDownSprite.cpp
Created June 25, 2014 12:06
CountDownSprite(Cocos2dx_ver3.0)
//
// CountDownSprite.cpp
// Oyadius3
//
// Created by Shimeji Ozaki on 2014-06-22.
//
//
#include "CountDownSprite.h"