Skip to content

Instantly share code, notes, and snippets.

View hotwatermorning's full-sized avatar

hotwatermorning hotwatermorning

View GitHub Profile
@hotwatermorning
hotwatermorning / extra_stylesheet.css
Created March 1, 2016 07:34
Extra StyleSheet for doxygen 1.8.11
body, table, div, p, dl {
font: 300 14px/22px lato,sans-serif;
}
.title {
font: 200 14px/28px lato,sans-serif;
font-size: 150%;
font-weight: bold;
margin: 10px 2px;
}
@hotwatermorning
hotwatermorning / sliderValueChanged.cpp
Last active June 22, 2016 00:37
adjust slider scensitivity
void WaveformComponent::sliderValueChanged (juce::Slider *slider)
{
if(slider == &zoom_slider_) {
double v = slider->getValue();
int const size_min = 64; //! 2^6
int const size_max = 16384; //! 2^14
//! スライダーの感度を調整する変数。
//! 値を大きくするほど、center位置でのズーム率が下がる
double const amount = JUCE_LIVE_CONSTANT(1024);
@hotwatermorning
hotwatermorning / optimization_test.cpp
Last active January 13, 2017 04:10
オーディオアプリケーションの最適化の発表資料
// Boost.Timerを使用しているので、Boost.SystemとBoost.Timerのライブラリをリンク時に指定すること。
// ex) clang++ -std=c++14 optimization_test.cpp -O3 -lboost_system-mt -lboost_timer-mt
// 出来上がったバイナリを実行する時に、関数名をそのまま引数に渡して呼び出すと、テスト用の関数が実行される
// ex) ./a.out false_sharing_test
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <vector>
#include <memory>
@hotwatermorning
hotwatermorning / url_scheme_for_osx.md
Last active August 25, 2016 08:39
OSXでのURLスキームの実装

OSXでのURLスキームはLaunch Servicesという仕組みによって実装されている。

アプリケーション作成時にInfo.plistに適切にCFBundleURLTypesのデータを設定しておけば、アプリケーションをインストール(アプリケーションを"アプリケーション"ディレクトリにコピー)した時にLaunch Servicesがそれを検知し、Info.plistからURLスキームの設定を読み込んで、専用のデータベース("Launch Services Database")に設定を保持する。

なので、アプリケーションのインストール後はmy-app-scheme://myapp/のようにリンクを作成してそれをオープンするだけで対象のアプリケーションが起動できる。

@hotwatermorning
hotwatermorning / make_locale_id_string.cpp
Created February 7, 2017 06:56
Make locale string from locale id
// https://www.codeproject.com/Articles/9600/Windows-SetThreadLocale-and-CRT-setlocale
// 0x0411 -> "japanese_Japan.932"
// 0x041E -> "Thai_Thailand.874"
// 0x0808 -> "Chinese (Simplified)_China.936"
std::string make_locale_id_string(LCID locale_id)
{
std::string ret;
std::array<char, 128> buf;
buf.fill(0);
@hotwatermorning
hotwatermorning / level_meter_impl.md
Last active November 26, 2023 00:18
DAWごとのレベルメーターの実装比較

Bitwig Studio

レベルメーターの特徴

  • ピーク値とRMS値が表示できる。
  • ピークホールド時間の設定や、RMS値を集計する区間の長さの設定、メーター値の減少速度を設定する仕組みはない。
  • 2種類の表示モードがあるが、どちらも信号のピーク値とRMS値(二乗平均平方根。区間の平均エネルギーを表す。ピーク値と異なり、実際の音量感に近い値になる。)の両方が表示される。
  • トラックのボリュームコントロールのところに表示されている通常のレベルメーターの他に、大きく見やすいBit Meterと呼ばれるレベルメーターが用意されている。  - 表示される内容はどちらも同じ
@hotwatermorning
hotwatermorning / lldb.txt
Created February 17, 2017 08:51
Step into std::function with lldb of Xcode
(lldb) settings show target.process.thread.step-avoid-regexp
target.process.thread.step-avoid-regexp (regex) = ^std::
(lldb) settings set target.process.thread.step-avoid-regexp ""
http://stackoverflow.com/questions/19413181/step-into-stl-sources-in-xcode-5
1. /コマンドで検索
2. Shift-vやCtrl-vで検索
3. :コマンドに移行して、:'<,'>s/の状態で
4. Ctrl-r /を入力して直前の検索キーワードを入力
@hotwatermorning
hotwatermorning / get_full_version_string.cpp
Last active December 18, 2020 13:47
Get Full Version String (win)
// https://msdn.microsoft.com/en-us/library/windows/desktop/ms724429(v=vs.85).aspx
#include <vector>
#include <cstdio>
#include <windows.h>
std::wstring GetFullVersionString()
{
struct LANGCODEPAGE {
WORD wLang;
@hotwatermorning
hotwatermorning / enable_output_to_visual_studio.hpp
Last active June 14, 2017 03:17
enable_output_to_visual_studio
#if defined(_MSC_VER)
//! @file
/*! std::cout, std::wcerrなどのストリームへの出力を、DebugOutputString()に流して、
* Visual Studioの出力ウィンドウに出力できるようにする。
* (DebugOutputString()への出力はリリースモードでも有効であることに注意すること)
* 参考: http://fa11enprince.hatenablog.com/entry/2015/07/04/192645
* 参考: http://blog.livedoor.jp/tek_nishi/archives/5004322.html
*/