aboutsummaryrefslogtreecommitdiff
path: root/src/opcodes.cpp
blob: 1531029a0e54ddb3191c104996341d2818bec2cc (plain)
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#include <plugin.h>
#include <SDL2/SDL.h>


struct SDLColour {
    int r;
    int g;
    int b;
    int a;
};

struct SDLSession {
    SDL_Window* window = NULL;
    SDL_Renderer* renderer = NULL;
    int screen_width;
    int screen_height;
    bool initialised = false;
    bool cycle = false;
};

const char* sessionName = "::sdlsession%d";
const char* colourName = "::sdlcolour%d";
const char* badHandle = "cannot obtain data from handle";

/*
 * Create connection in global variables returning handle
 */

MYFLT createHandle(csnd::Csound* csound, SDLSession** sdl) {
    char buffer[32];
    int handle = 0;
    snprintf(buffer, 32, sessionName, handle);
    while ((*sdl = (SDLSession*) csound->query_global_variable(buffer)) != NULL) {
        snprintf(buffer, 32, sessionName, ++handle);
    }
    csound->create_global_variable(buffer, sizeof(SDLSession));
    *sdl = (SDLSession*) csound->query_global_variable(buffer);
    
    return FL(handle);
}

MYFLT CreateColour(csnd::Csound* csound, SDLColour** sdlc) {
    char buffer[32];
    int handle = 0;
    snprintf(buffer, 32, colourName, handle);
    while ((*sdlc = (SDLColour*) csound->query_global_variable(buffer)) != NULL) {
        snprintf(buffer, 32, colourName, ++handle);
    }
    csound->create_global_variable(buffer, sizeof(SDLColour));
    *sdlc = (SDLColour*) csound->query_global_variable(buffer);
    
    return FL(handle);
}

SDLSession* getSession(csnd::Csound* csound, MYFLT handle) {
    char buffer[32];
    snprintf(buffer, 32, sessionName, (int)handle);
    return (SDLSession*) csound->query_global_variable(buffer);  
}

SDLColour* getColour(csnd::Csound* csound, MYFLT handle) {
    char buffer[32];
    snprintf(buffer, 32, colourName, (int)handle);
    return (SDLColour*) csound->query_global_variable(buffer);  
}

// ihandle, kmouseTrigger, kmouseXratio, kmouseYratio sdlinit SwindowName, iWidth, iHeight, ifps
struct sdlinit : csnd::Plugin<4, 4> {
    static constexpr char const *otypes = "ikkk";
    static constexpr char const *itypes = "Siii";
    SDLSession* sdl;
    uint64_t kcnt;
    uint64_t frameK;
    bool mouseDown;
    
    int init() {
        csound->plugin_deinit(this);
        outargs[0] = createHandle(csound, &sdl);
        mouseDown = false;

        STRINGDAT &windowName = inargs.str_data(0);
        int xSize = (int) inargs[1];
        int ySize = (int) inargs[2];
        int fps = (int) inargs[3];

        try {
            init_sdl(windowName.data, xSize, ySize);
        } catch (const std::exception &e) {
            return csound->init_error(e.what());
        }
        
        kcnt = insdshead->kcounter;
        frameK = (uint64_t) (FL(FL(1)/FL(fps)) / insdshead->onedkr);
        
        return OK;
    }
    
    void init_sdl(char* windowName, int xSize, int ySize) {
        if (sdl->initialised) {
            return;
        }
        sdl->screen_width = xSize;
        sdl->screen_height = ySize;
        
        if (SDL_Init(SDL_INIT_VIDEO) < 0) {
            throw std::runtime_error(csound->strdup(SDL_GetError()));
        }
        SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1");
        sdl->window = SDL_CreateWindow(windowName, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, xSize, ySize, SDL_WINDOW_SHOWN );
        if (sdl->window == NULL) {
            throw std::runtime_error(csound->strdup(SDL_GetError()));
        }
        
        sdl->renderer = SDL_CreateRenderer(sdl->window, -1, SDL_RENDERER_ACCELERATED);
        if (sdl->renderer == NULL) {
            throw std::runtime_error(csound->strdup(SDL_GetError()));
        }
        sdl->initialised = true;
    }
    
    int deinit() {
        SDL_DestroyRenderer(sdl->renderer);
	SDL_DestroyWindow(sdl->window);
	sdl->window = NULL;
	sdl->renderer = NULL;
        sdl->initialised = false;
	SDL_Quit();
        return OK;
    }
    
    void setMouse() {
        int x;
        int y;
        SDL_GetMouseState(&x, &y);
        outargs[1] = 1;
        outargs[2] = (MYFLT) (FL(x) / FL(sdl->screen_width));
        outargs[3] = (MYFLT) (FL(y) / FL(sdl->screen_height));
    }
    
    int kperf() {
        if (insdshead->kcounter % frameK != 0) {
            sdl->cycle = false;
            return OK;
        }
        SDL_Event e;
        outargs[1] = 0;
        outargs[2] = 0;
        outargs[3] = 0;
        while (SDL_PollEvent(&e) != 0) {
            // e.type == SDL_MOUSEMOTION || 
            // || e.type == SDL_MOUSEBUTTONUP
            if (e.type == SDL_MOUSEBUTTONDOWN || (mouseDown && e.type == SDL_MOUSEMOTION)) {
                setMouse();
                mouseDown = true;
            }
            if (e.type == SDL_MOUSEBUTTONUP) {
                mouseDown = false;
            }
        }
        
        sdl->cycle = true;
        SDL_RenderPresent(sdl->renderer);
        SDL_SetRenderDrawColor(sdl->renderer, 0xFF, 0xFF, 0xFF, 0xFF );
        SDL_RenderClear(sdl->renderer);
        return OK;
    }
};

// ihandle sdlcolour red, green, blue, alpha
struct sdlcolour : csnd::Plugin<1, 4> {
    static constexpr char const *otypes = "i";
    static constexpr char const *itypes = "kkkk";
    SDLColour* sdlc;
    
    int init() {
        outargs[0] = CreateColour(csound, &sdlc);
        return OK;
    }
    
    int kperf() {
        sdlc->r = (int) inargs[0];
        sdlc->g = (int) inargs[1];
        sdlc->b = (int) inargs[2];
        sdlc->a = (int) inargs[3];
        return OK;
    }
};


// sdlrect ihandle, icolourhandle, kx, ky, kwidth, kheight
struct sdlrect : csnd::InPlug<6> {
    static constexpr char const *otypes = "";
    static constexpr char const *itypes = "iikkkk";
    SDLSession* sdl;
    SDLColour* sdlc;
    
    
    int init() {
        if (!(sdl = getSession(csound, args[0]))) {
            return csound->init_error(badHandle);
        }
        
        if (!(sdlc = getColour(csound, args[1]))) {
            return csound->init_error(badHandle);
        }
        
        return OK;
    }
    
    int kperf() {
        if (!sdl->cycle) {
            return OK;
        }

        int xpos = (int) sdl->screen_width * args[2];
        int ypos = (int) sdl->screen_height * args[3];
        int width = (int) sdl->screen_width * args[4];
        int height = (int) sdl->screen_height * args[5];
  
        SDL_Rect fillRect = { 
            xpos, ypos, width, height
        };

        SDL_SetRenderDrawColor(sdl->renderer, sdlc->r, sdlc->g, sdlc->b, sdlc->a);				
        SDL_RenderFillRect(sdl->renderer, &fillRect);

        return OK;
    }
};


struct sdlline : csnd::InPlug<6> {
    static constexpr char const *otypes = "";
    static constexpr char const *itypes = "iikkkk";
    SDLSession* sdl;
    SDLColour* sdlc;
    
    
    int init() {
        if (!(sdl = getSession(csound, args[0]))) {
            return csound->init_error(badHandle);
        }
        
        if (!(sdlc = getColour(csound, args[1]))) {
            return csound->init_error(badHandle);
        }
        
        return OK;
    }
    
    int kperf() {
        if (!sdl->cycle) {
            return OK;
        }

        int xpos1 = (int) sdl->screen_width * args[2];
        int ypos1 = (int) sdl->screen_height * args[3];
        int xpos2 = (int) sdl->screen_width * args[4];
        int ypos2 = (int) sdl->screen_height * args[5];

        SDL_SetRenderDrawColor(sdl->renderer, sdlc->r, sdlc->g, sdlc->b, sdlc->a);				
        SDL_RenderDrawLine(sdl->renderer, xpos1, ypos1, xpos2, ypos2);

        return OK;
    }
};



#include <modload.h>

void csnd::on_load(csnd::Csound *csound) {

    csnd::plugin<sdlinit>(csound, "sdlinit", csnd::thread::ik);
    csnd::plugin<sdlrect>(csound, "sdlrect", csnd::thread::ik);
    csnd::plugin<sdlcolour>(csound, "sdlcolour", csnd::thread::ik);
    csnd::plugin<sdlline>(csound, "sdlline", csnd::thread::ik);
}