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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: random.cpp,v 1.1.1.1 2003/10/29 10:06:14 wschweer Exp $
//
// (C) Copyright 2001 Werner Schweer (ws@seh.de)
//
// This code is an adaption of the random rhythm generator taken
// from "The JAZZ++ Midi Sequencer"
// Copyright (C) 1994-2000 Andreas Voss and Per Sigmond, all
// rights reserved.
// Distributed under the GNU General Public License
//=========================================================
#if 0
#include "random.h"
#include "util.h"
#include <assert.h>
#if USE_ACG
ACG rnd(0, 55);
#else
#include <stdlib.h>
double tRandomGenerator::asDouble()
{
return double(rand()) / double(RAND_MAX);
}
tRandomGenerator rnd;
#endif
// Array of probabilities
tRndArray::tRndArray(int nn, int mmin, int mmax)
{
int i;
n = nn;
for (i = 0; i < n; i++)
array[i] = mmin;
min = mmin;
max = mmax;
nul = min > 0 ? min : 0;
}
void tRndArray::SetMinMax(int mi, int ma)
{
min = mi;
max = ma;
nul = min > 0 ? min : 0;
for (int i = 0; i < array.GetSize(); i++)
{
if (array[i] < min)
array[i] = min;
else if (array[i] > max)
array[i] = max;
}
}
tRndArray::~tRndArray()
{
}
#ifdef FOR_MSW
double tRndArray::operator[](double f)
#else
double tRndArray::operator[](double f) const
#endif
{
int i = (int)f;
if (i < 0)
i = 0;
else if (i >= n - 2)
i = n - 2;
tMapper map(i, i+1, array[i], array[i+1]);
return map(f);
}
tRndArray & tRndArray::operator = (const tRndArray &o)
{
if (this == &o)
return *this;
array = o.array;
n = o.n;
min = o.min;
max = o.max;
nul = o.nul;
return *this;
}
tRndArray::tRndArray(const tRndArray &o)
: array(o.array)
{
n = o.n;
min = o.min;
max = o.max;
nul = o.nul;
}
int tRndArray::Random()
{
return Random(rnd.asDouble());
}
int tRndArray::Random(double rndval)
{
double sum, dec;
int i;
assert(n > 0);
sum = 0.0;
for (i = 0; i < n; i++)
{
assert(array[i] >= 0);
sum += array[i];
}
if (sum <= 0)
return 0;
dec = sum * rndval * 0.99999;
assert(dec < sum);
i = 0;
while (dec >= 0.0)
{
dec -= array[i];
i++;
}
i--;
assert(i >= 0 && i < n);
return i;
}
int tRndArray::Interval(int seed)
{
if (seed < 0) // initial ?
seed = int(rnd.asDouble() * n);
int delta = Random();
if (rnd.asDouble() < 0.5)
delta = -delta;
seed = (seed + n + delta) % n;
return seed;
}
int tRndArray::Random(int i)
{
return rnd.asDouble() * (max - min) < array[i];
}
void tRndArray::SetUnion(tRndArray &o, int fuzz)
{
for (int i = 0; i < n; i++)
{
int val = array[i];
if (o.array[i] > val)
val = o.array[i];
array[i] = Fuzz(fuzz, array[i], val);
}
}
void tRndArray::SetIntersection(tRndArray &o, int fuzz)
{
for (int i = 0; i < n; i++)
{
int val = array[i];
if (o.array[i] < val)
val = o.array[i];
array[i] = Fuzz(fuzz, array[i], val);
}
}
void tRndArray::SetDifference(tRndArray &o, int fuzz)
{
tRndArray tmp(o);
tmp.SetInverse(tmp.Max());
SetIntersection(tmp, fuzz);
}
void tRndArray::SetInverse(int fuzz)
{
for (int i = 0; i < n; i++)
array[i] = Fuzz(fuzz, array[i], min + max - array[i]);
}
int tRndArray::Fuzz(int fuz, int v1, int v2) const
{
// interpolate between v1 and v2
return (fuz - min) * v2 / (max - min) + (max - fuz) * v1 / (max - min);
}
void tRndArray::Clear()
{
for (int i = 0; i < n; i++)
array[i] = min;
}
ostream & operator << (ostream &os, tRndArray const &a)
{
int i;
os << a.n << " " << a.min << " " << a.max << endl;
for (i = 0; i < a.n; i++)
os << a.array[i] << " ";
os << endl;
return os;
}
istream & operator >> (istream &is, tRndArray &a)
{
int i;
is >> a.n >> a.min >> a.max;
for (i = 0; i < a.n; i++)
is >> a.array[i];
return is;
}
// --------------------------------- tArrayEdit -------------------------------------
// length of tickmark line
#define TICK_LINE 0
tArrayEdit::tArrayEdit(wxFrame *frame, tRndArray &ar, long xx, long yy, long ww, long hh, int sty)
: wxCanvas(frame, xx, yy, ww, hh),
array(ar),
n(ar.n),
min(ar.min),
max(ar.max),
nul(ar.nul)
{
draw_bars = 0;
enabled = 1;
dragging = 0;
index = -1;
label = 0;
style_bits = sty;
xmin = 0;
xmax = n;
x = 0; // draw to topleft corner of canvas
y = 0;
w = ww;
h = hh;
float tw, th;
wxDC *dc = GetDC();
dc->SetFont(wxSMALL_FONT);
dc->GetTextExtent("123", &tw, &th);
if (style_bits & ARED_XTICKS)
{
// leave space for bottomline
h -= (int)th;
}
if (style_bits & (ARED_MINMAX | ARED_YTICKS))
{
// leave space to display min / max
x = (int)(tw + TICK_LINE);
w -= (int)(tw + TICK_LINE);
}
ynul = y + h - h * (nul - min) / (max - min);
}
void tArrayEdit::OnSize(int ww, int hh)
{
w = ww;
h = hh;
wxCanvas::OnSize(w, h);
float tw, th;
GetDC()->GetTextExtent("123", &tw, &th);
if (style_bits & ARED_XTICKS)
h -= (int)th;
if (style_bits & (ARED_MINMAX | ARED_YTICKS))
{
x = (int)(tw + TICK_LINE);
w -= (int)(tw + TICK_LINE);
}
ynul = y + h - h * (nul - min) / (max - min);
}
tArrayEdit::~tArrayEdit()
{
delete [] label;
}
void tArrayEdit::DrawBar(int i, int black)
{
wxDC *dc = GetDC();
if (style_bits & ARED_LINES)
{
if (!black)
dc->SetPen(wxWHITE_PEN);
tMapper xmap(0, n, 0, w);
tMapper ymap(min, max, h, 0);
float x1 = (float)xmap(i + 0.5);
float y1 = (float)ymap(array[i]);
if (i > 0)
{
// draw line to prev position
float x0 = (float)xmap(i - 0.5);
float y0 = (float)ymap(array[i-1]);
dc->DrawLine(x0, y0, x1, y1);
}
if (i < n-1)
{
// draw line to next position
float x2 = (float)xmap(i + 1.5);
float y2 = (float)ymap(array[i+1]);
dc->DrawLine(x1, y1, x2, y2);
}
if (!black)
dc->SetPen(wxBLACK_PEN);
return;
}
int gap = 0;
if (style_bits & ARED_GAP)
{
gap = w / n / 6;
if (!gap && w / n > 3)
gap = 1;
}
long xbar, ybar, wbar, hbar;
wbar = w / n - 2 * gap;
xbar = x + i * w / n + gap;
hbar = h * (array[i] - nul) / (max - min);
if (style_bits & ARED_BLOCKS)
{
/*
ybar = ynul - hbar;
if (hbar < 0)
hbar = -hbar;
hbar = (hbar < 2) ? hbar : 2;
*/
int hblk = 12;
ybar = ynul - hbar - hblk/2;
hbar = hblk;
if (ybar < y) {
int d = y - ybar;
ybar += d;
hbar -= d;
}
if (ybar + hbar > y + h) {
int d = (ybar + hbar) - (y + h);
hbar -= d;
}
if (hbar < 2)
hbar = 2;
}
else
if (hbar < 0)
{
ybar = ynul;
hbar = -hbar;
}
else
ybar = ynul - hbar;
if (ybar == y)
++ybar, --hbar;
if (!black)
{
dc->SetBrush(wxWHITE_BRUSH);
dc->SetPen(wxWHITE_PEN);
}
if (wbar && hbar)
dc->DrawRectangle(xbar, ybar, wbar, hbar);
if (!black)
{
dc->SetBrush(wxBLACK_BRUSH);
dc->SetPen(wxBLACK_PEN);
}
}
const char *tArrayEdit::GetXText(int xval)
{
static char buf[8];
sprintf(buf, "%d", xval);
return buf;
}
const char *tArrayEdit::GetYText(int yval)
{
static char buf[8];
sprintf(buf, "%d", yval);
return buf;
}
void tArrayEdit::DrawXTicks()
{
float tw, th;
if (!(style_bits & ARED_XTICKS))
return;
wxDC *dc = GetDC();
dc->SetFont(wxSMALL_FONT);
// compute tickmark x-distance
dc->GetTextExtent("-123", &tw, &th);
int max_labels = (int)(w / (tw + tw/2));
if (max_labels > 0)
{
int step = (xmax - xmin + 1) / max_labels;
if (step <= 0)
step = 1;
for (int val = xmin; val <= xmax; val += step)
{
const char *buf = GetXText(val);
//sprintf(buf, "%d", val);
dc->GetTextExtent((char *)buf, &tw, &th);
float yy = y + h;
float xx = x + w * (val - xmin) / (xmax - xmin + 1);
xx -= tw/2; // center text
xx += 0.5 * w / n; // middle of bar
dc->DrawText(buf, xx, yy);
//dc->DrawLine(x - TICK_LINE, yy, x, yy);
}
}
dc->SetFont(wxNORMAL_FONT);
}
void tArrayEdit::DrawYTicks()
{
wxDC *dc = GetDC();
dc->SetFont(wxSMALL_FONT);
if (style_bits & ARED_YTICKS)
{
// compute tickmark y-distance
float tw, th;
dc->GetTextExtent("-123", &tw, &th);
int max_labels = (int)(h / (th + th/2));
if (max_labels > 0)
{
int step = (max - min) / max_labels;
if (step <= 0)
step = 1;
for (int val = min; val < max; val += step)
{
const char *buf = GetYText(val);
//sprintf(buf, "%d", val);
dc->GetTextExtent((char *)buf, &tw, &th);
float yy = y + h - h * (val - min) / (max - min) - th/2;
dc->DrawText(buf, x - tw - TICK_LINE, yy);
//dc->DrawLine(x - TICK_LINE, yy, x, yy);
}
}
}
else if (style_bits & ARED_MINMAX)
{
// min/max
float tw, th;
char buf[20];
sprintf(buf, "%d", max);
dc->GetTextExtent(buf, &tw, &th);
dc->DrawText(buf, x - tw, y);
sprintf(buf, "%d", min);
dc->GetTextExtent(buf, &tw, &th);
dc->DrawText(buf, x - tw, y + h - th);
}
dc->SetFont(wxNORMAL_FONT);
}
void tArrayEdit::DrawLabel()
{
wxDC *dc = GetDC();
dc->SetFont(wxSMALL_FONT);
if (label)
dc->DrawText(label, x + 5, y + 2);
dc->SetFont(wxNORMAL_FONT);
}
void tArrayEdit::OnPaint()
{
int i;
wxDC *dc = GetDC();
// surrounding rectangle
dc->Clear();
if (enabled)
dc->SetBrush(wxWHITE_BRUSH);
else
dc->SetBrush(wxGREY_BRUSH);
dc->SetPen(wxBLACK_PEN);
if (w && h)
dc->DrawRectangle(x, y, w, h);
// sliders
dc->SetBrush(wxBLACK_BRUSH);
for (i = 0; i < n; i++)
DrawBar(i, 1);
DrawXTicks();
DrawLabel();
DrawYTicks();
DrawNull();
if (draw_bars)
draw_bars->DrawBars();
}
void tArrayEdit::DrawNull()
{
wxDC *dc = GetDC();
dc->SetPen(wxCYAN_PEN);
// draw y-null line
if (min < nul && nul < max)
dc->DrawLine(x, ynul, x+w, ynul);
// draw x-null line
if (xmin < 0 && 0 < xmax)
{
float x0 = w * (0 - xmin) / (xmax - xmin);
dc->DrawLine(x0, y, x0, y + h);
}
dc->SetPen(wxBLACK_PEN);
}
void tArrayEdit::SetXMinMax(int xmi, int xma)
{
xmin = xmi;
xmax = xma;
}
int tArrayEdit::Index(wxMouseEvent &e)
{
float ex, ey;
e.Position(&ex, &ey);
int i = (int)( ((short)ex - x) * n / w);
i = i < 0 ? 0 : i;
i = i >= n ? n-1 : i;
return i;
}
int tArrayEdit::Dragging(wxMouseEvent &e)
{
if (!dragging)
return 0;
if (index < 0)
index = Index(e);
int val = nul;
if (e.LeftIsDown())
{
float ex, ey;
e.Position(&ex, &ey);
// $blk$ val = (int)( (y + h - (short)ey) * (max - min) / h + min);
val = (int)( (double)(y + h - ey) * (max - min) / h + min + 0.5);
val = val > max ? max : val;
val = val < min ? min : val;
}
#if 0
{
// in msw ex,ey are 65536 for negative values!
wxDC *dc = GetDC();
char buf[500];
sprintf(buf, "x %4.0f, y %4.0f, sh %d", ex, ey, e.ShiftDown());
dc->DrawText(buf, 50, 50);
}
#endif
if (e.ShiftDown())
{
int k;
for (k = 0; k < n; k++)
{
DrawBar(k, 0);
array[k] = val;
DrawBar(k, 1);
}
}
else if (e.ControlDown())
{
DrawBar(index, 0);
array[index] = val;
DrawBar(index, 1);
}
else
{
int i = Index(e);
int k = i;
if (i < index)
for (; i <= index; i++)
{
DrawBar(i, 0);
array[i] = val;
DrawBar(i, 1);
}
else
for (; i >= index; i--)
{
DrawBar(i, 0);
array[i] = val;
DrawBar(i, 1);
}
index = k;
}
return 0;
}
int tArrayEdit::ButtonDown(wxMouseEvent &e)
{
#ifdef wx_msw
CaptureMouse();
#endif
dragging = 1;
index = Index(e);
Dragging(e);
return 0;
}
int tArrayEdit::ButtonUp(wxMouseEvent &e)
{
#ifdef wx_msw
ReleaseMouse();
#endif
dragging = 0;
index = -1;
DrawLabel();
DrawNull();
return 0;
}
void tArrayEdit::OnEvent(wxMouseEvent &e)
{
if (!enabled)
return;
if (e.ButtonDown())
ButtonDown(e);
else if (e.Dragging())
Dragging(e);
else if (e.ButtonUp())
ButtonUp(e);
}
void tArrayEdit::Enable(int e)
{
enabled = e;
}
void tArrayEdit::SetLabel(char const *llabel)
{
delete label;
label = copystring(llabel);
}
void tArrayEdit::SetYMinMax(int mi, int ma)
{
array.SetMinMax(mi, ma);
ynul = y + h - h * (nul - min) / (max - min);
}
void tArrayEdit::DrawBarLine (long xx)
{
wxDC *dc = GetDC ();
// fprintf(stderr,"x: %ld, xx: %ld\n",x,xx);
if (xx > x && xx + 1 < x + w)
{
dc->SetPen (wxLIGHT_GREY_PEN);
dc->DrawLine (xx, y + 1, xx, y + h - 2);
dc->SetPen (wxBLACK_PEN);
}
}
tRhyArrayEdit::tRhyArrayEdit(wxFrame *parent, tRndArray &array, long xx, long yy, long ww, long hh, int sty)
: tArrayEdit(parent, array, xx, yy, ww, hh, sty)
{
steps_per_count = 4;
count_per_bar = 4;
n_bars = 4;
}
void tRhyArrayEdit::SetMeter(int s, int c, int b)
{
steps_per_count = s;
count_per_bar = c;
n_bars = b;
array.Resize(s * c * b);
SetXMinMax(1, s * c * b);
}
void tRhyArrayEdit::DrawXTicks()
{
if (!(style_bits & ARED_RHYTHM))
{
tArrayEdit::DrawXTicks();
return;
}
char buf[20];
float tw, th;
wxDC *dc = GetDC();
dc->SetFont(wxSMALL_FONT);
// tick marks
assert(steps_per_count && count_per_bar && n_bars);
int i;
for (i = 0; i < n; i += steps_per_count)
{
int mark = (i / steps_per_count) % count_per_bar + 1;
sprintf(buf, "%d", mark);
float yy = y + h;
float xx = x + (i + 0.5) * w / n;
dc->GetTextExtent(buf, &tw, &th);
xx -= tw/2.0;
dc->DrawText(buf, xx, yy);
}
dc->SetFont(wxNORMAL_FONT);
}
#endif
|