前回爆発音を作成しましたが、今回はそれを利用した爆発エフェクトの作成です。
Processingを用いた爆破エフェクトの作成はGoogleで検索するといくつか出てきますが、今回はシンプルに円を拡大することにしました。
特に難しいことはしていないので下の動画を見ればどのような表現をしているかわかると思います。
中身としては、"爆発モード"に入る際に更新情報としてそのタイミングでの時間を取得し、そこからの経過時間で一番大きな円の大きさを変えています。小さい円は、ある程度ランダムな場所にある程度ランダムな最大サイズの円を設定し、半径0の円から最大サイズになるまで描画しています。小さい円は5個描画され、一つの描画が終わると次の円が表示されるようになっています。
以下コードです。ある程度コメントで説明してあります。
Processingを用いた爆破エフェクトの作成はGoogleで検索するといくつか出てきますが、今回はシンプルに円を拡大することにしました。
特に難しいことはしていないので下の動画を見ればどのような表現をしているかわかると思います。
ちさと@chisao_62Processingで作る爆発エフェクト
2021/01/08 16:00:15
チカチカします。
音出ます。 https://t.co/Blv86kOSVl
中身としては、"爆発モード"に入る際に更新情報としてそのタイミングでの時間を取得し、そこからの経過時間で一番大きな円の大きさを変えています。小さい円は、ある程度ランダムな場所にある程度ランダムな最大サイズの円を設定し、半径0の円から最大サイズになるまで描画しています。小さい円は5個描画され、一つの描画が終わると次の円が表示されるようになっています。
以下コードです。ある程度コメントで説明してあります。
- import java.util.Random;
- import ddf.minim.*;
- import ddf.minim.analysis.*;
- import ddf.minim.effects.*;
- import ddf.minim.signals.*;
- import ddf.minim.spi.*;
- import ddf.minim.ugens.*;
- int[][] circle = new int[4][5];//x,y,r,t0,t
- char[] mode = new char[2];
- int[] bubble = new int[4];
- int[] noisevolmode = new int[2];
- Minim minim;
- AudioOutput out;
- Random random = new Random();
- Noise[][] noisevol = new Noise[8800][2];
- void setup() {
- size(1920, 1080);
- colorMode(HSB, 360, 255, 255, 255);
- strokeWeight(5);
- background(0);
- minim = new Minim(this);
- out = minim.getLineOut(Minim.STEREO);
- for (int i = 0; i < 8800; i++) {
- noisevol[i][0] = new Noise(1.0 + cos(map(i, 0, 8800, 0, PI)), Noise.Tint.BROWN);
- }
- for (int i = 0; i < 8800; i++) {
- noisevol[i][1] = new Noise(1.0 + cos(map(i, 0, 8800, 0, PI)), Noise.Tint.RED);
- }
- }
- void draw() {//ループ処理
- background(0);
- if (mode[1] != mode[0]) {//更新処理の判定
- update();
- mode[1] = mode[0];
- }
- switch(mode[0]) {//現在のモードの実効
- case 'b':
- bubble();
- break;
- default:
- break;
- }
- }
- void update() {//更新処理
- switch(mode[1]) {//終了処理
- case 'b':
- noisevol[noisevolmode[1]][0].unpatch(out);
- noisevol[noisevolmode[1]][1].unpatch(out);
- break;
- default:
- break;
- }
- switch(mode[0]) {//開始処理
- case 'b':
- if (mode[1] != mode[0]) {
- bubble[0] = millis();
- }
- break;
- default:
- break;
- }
- }
- void keyPressed() {//キーボード入力の割り込み
- mode[0] = key;
- }
- void bubble() {//円と音の出力
- background(0);
- bubble[1] = millis() - bubble[0];
- bubble[2] = (millis() - bubble[0]) * 10;
- bubble[3] = bubble[2] % 2200;
- if (bubble[2] >= 4 * 2200) {//終了判定
- mode[0] = 's';
- return;
- }
- circle[0][4] = (millis() - circle[0][3]) * 2;
- if (circle[0][2] == 0 || circle[0][2] < circle[0][4]) {
- circle[0][4] = 0;
- circle[0][3] = millis();
- circle[0][2] = random.nextInt(500);
- circle[0][1] = height / 4 + random.nextInt(height /2);
- circle[0][0] = width / 4 + random.nextInt(width /2);
- }
- circle[1][4] = (millis() - circle[1][3]) * 2;
- if (circle[1][2] == 0 || circle[1][2] < circle[1][4]) {
- circle[1][4] = 0;
- circle[1][3] = millis();
- circle[1][2] = random.nextInt(500);
- circle[1][1] = height / 4 + random.nextInt(height /2);
- circle[1][0] = width / 4 + random.nextInt(width /2);
- }
- circle[2][4] = (millis() - circle[2][3]) * 2;
- if (circle[2][2] == 0 || circle[2][2] < circle[2][4]) {
- circle[2][4] = 0;
- circle[2][3] = millis();
- circle[2][2] = random.nextInt(500);
- circle[2][1] = height / 4 + random.nextInt(height /2);
- circle[2][0] = width / 4 + random.nextInt(width /2);
- }
- circle[3][4] = (millis() - circle[3][3]) * 2;
- if (circle[3][2] == 0 || circle[3][2] < circle[3][4]) {
- circle[3][4] = 0;
- circle[3][3] = millis();
- circle[3][2] = random.nextInt(500);
- circle[3][1] = height / 4 + random.nextInt(height /2);
- circle[3][0] = width / 4 + random.nextInt(width /2);
- }
- noisevolmode[0] = bubble[2];
- noisevol[noisevolmode[1]][0].unpatch(out);
- noisevol[noisevolmode[0]][0].patch(out);
- noisevol[noisevolmode[1]][1].unpatch(out);
- noisevol[noisevolmode[0]][1].patch(out);
- noisevolmode[1] = noisevolmode[0];
- fill(0, 0, 255, 255);
- circle(width / 2, height / 2, bubble[3]);
- circle(circle[0][0], circle[0][1], circle[0][4]);
- circle(circle[1][0], circle[1][1], circle[1][4]);
- circle(circle[2][0], circle[2][1], circle[2][4]);
- circle(circle[3][0], circle[3][1], circle[3][4]);
- }