[ Video ]
[ About ]
TO LIVE IS TO THINK.
[ Source ]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
#pragma once #include "ofMain.h" class ofApp : public ofBaseApp { public: void setup(); void update(); void draw(); void keyPressed(int key) {}; void keyReleased(int key) {}; void mouseMoved(int x, int y) {}; void mouseDragged(int x, int y, int button) {}; void mousePressed(int x, int y, int button) {}; void mouseReleased(int x, int y, int button) {}; void windowResized(int w, int h) {}; void dragEvent(ofDragInfo dragInfo) {}; void gotMessage(ofMessage msg) {}; ofEasyCam cam; ofFbo fbo; ofTrueTypeFont font; vector<string> word_list; int word_index; string draw_word; vector<glm::vec3> location_list; vector<int> param_list; int span, number_of_columns; ofMesh face, line; }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup() { ofSetFrameRate(60); ofSetWindowTitle("openFrameworks"); ofBackground(239); ofSetLineWidth(3); ofEnableDepthTest(); this->fbo.allocate(ofGetWidth(), ofGetHeight()); this->font.loadFont("fonts/msgothic.ttc", 200, true, true, true); this->line.setMode(ofPrimitiveMode::OF_PRIMITIVE_LINES); int word_index = 0; this->word_list = { "TO", "LIVE", "IS", "TO", "THINK" }; } //-------------------------------------------------------------- void ofApp::update() { if (ofGetFrameNum() % 90 == 0) { this->draw_word = this->word_list[word_index]; word_index = (word_index + 1) % this->word_list.size(); } this->location_list.clear(); this->param_list.clear(); this->fbo.begin(); ofTranslate(ofGetWidth() * 0.5, ofGetHeight() * 0.5); ofClear(0); ofSetColor(0, 92); this->font.drawString(this->draw_word, this->font.stringWidth(this->draw_word) * -0.5, 0); this->fbo.end(); this->span = 5; this->number_of_columns = this->fbo.getWidth() / this->span; ofPixels pixels; this->fbo.readToPixels(pixels); for (int y = 0; y < this->fbo.getHeight(); y += span) { for (int x = 0; x < this->fbo.getWidth(); x += span) { this->location_list.push_back(glm::vec3(x - ofGetWidth() * 0.5, ofGetHeight() - y - ofGetHeight() * 0.5, 0)); ofColor color = pixels.getColor(x, y); if (color != ofColor(0, 0)) { this->param_list.push_back(1); } else { this->param_list.push_back(0); } } } this->face.clear(); this->line.clear(); float threshold = 0.4; float len_param = 0.005; float frame_param = -0.02; int z = 0; auto tmp_location_list = this->location_list; for (auto& tmp : tmp_location_list) { tmp += glm::vec3(0, 0, z); } for (int i = 0; i < tmp_location_list.size(); i++) { auto location = tmp_location_list[i]; auto noise_value = ofNoise(location.x * len_param, location.y * len_param + ofGetFrameNum() * frame_param) * this->param_list[i]; if (noise_value < threshold) { continue; } vector<glm::vec3> vertices; vertices.push_back(glm::vec3(location.x - this->span * 0.5, location.y - this->span * 0.5, location.z)); vertices.push_back(glm::vec3(location.x + this->span * 0.5, location.y - this->span * 0.5, location.z)); vertices.push_back(glm::vec3(location.x - this->span * 0.5, location.y + this->span * 0.5, location.z)); vertices.push_back(glm::vec3(location.x + this->span * 0.5, location.y + this->span * 0.5, location.z)); this->face.addVertices(vertices); this->face.addIndex(this->face.getNumVertices() - 4); this->face.addIndex(this->face.getNumVertices() - 3); this->face.addIndex(this->face.getNumVertices() - 1); this->face.addIndex(this->face.getNumVertices() - 4); this->face.addIndex(this->face.getNumVertices() - 2); this->face.addIndex(this->face.getNumVertices() - 1); auto tmp_index = i - this->number_of_columns; if (tmp_index < 0 || ofNoise(tmp_location_list[tmp_index].x * len_param, tmp_location_list[tmp_index].y * len_param + ofGetFrameNum() * frame_param) * this->param_list[tmp_index] < threshold) { this->line.addVertex(vertices[2]); this->line.addVertex(vertices[3]); this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 2); } tmp_index = i + this->number_of_columns; if (tmp_index > tmp_location_list.size() || ofNoise(tmp_location_list[tmp_index].x * len_param, tmp_location_list[tmp_index].y * len_param + ofGetFrameNum() * frame_param) * this->param_list[tmp_index] < threshold) { this->line.addVertex(vertices[0]); this->line.addVertex(vertices[1]); this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 2); } tmp_index = i + 1; if (tmp_index % this->number_of_columns == 0 || ofNoise(tmp_location_list[tmp_index].x * len_param, tmp_location_list[tmp_index].y * len_param + ofGetFrameNum() * frame_param) * this->param_list[tmp_index] < threshold) { this->line.addVertex(vertices[1]); this->line.addVertex(vertices[3]); this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 2); } tmp_index = i - 1; if (i % this->number_of_columns == 0 || ofNoise(tmp_location_list[tmp_index].x * len_param, tmp_location_list[tmp_index].y * len_param + ofGetFrameNum() * frame_param) * this->param_list[tmp_index] < threshold) { this->line.addVertex(vertices[0]); this->line.addVertex(vertices[2]); this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 2); } } } //-------------------------------------------------------------- void ofApp::draw() { this->cam.begin(); ofTranslate(0, ofGetHeight() * -0.25); ofSetColor(239); this->face.draw(); ofSetColor(39); this->line.drawWireframe(); ofRotateX(270); this->fbo.draw(this->fbo.getWidth() * -0.5, ofGetHeight() * -0.5); this->cam.end(); } //-------------------------------------------------------------- int main() { ofSetupOpenGL(720, 720, OF_WINDOW); ofRunApp(new ofApp()); } |