Initial commit of Version 3.2.0. Control keys are printed to the

console if commanded.  Many new pattern manipulations added.
master
argyle77 2014-11-14 16:17:29 -05:00
parent 84b5e7c913
commit bfcac3adc7
5 changed files with 942 additions and 173 deletions

View File

@ -8,7 +8,7 @@ project(tensorPattern)
# Let's set a version number.
# This file must be manually changed to effect version change.
set (VERSION_MAJOR 3)
set (VERSION_MINOR 1)
set (VERSION_MINOR 2)
set (VERSION_PATCH 0)
set (VERSION_PRERELEASE)

View File

@ -1,24 +1,12 @@
Tensor pattern generation - Version 3.1.0 - Pattern mixer with preview.
Tensor pattern generation - Version 3.2.0 - Pattern mixer with preview.
"beep "
This pattern outputs as UDP to the tensor wall. There is a preview window
using SDL. This is an abbreviated set of patterns that lays out the basic
code function for later versions.
<ctrl> c - Exit
<ctrl> t - Text scroller toggle.
<ctrl> q - CellAutoFun toggle.
<ctrl> w - Bouncer toggle.
<ctrl> e - Fader toggle.
<alt> up - Increase fader decrement.
<alt> down - Decrease fader decrment.
<alt> 0 - Set fader decrement to 0.
Backspace, Return, Esc, most other keys - Alter the text buffer.
using SDL.
Controls keys are printed to the console with <ctrl> 1, <alt> 1, <ctrl> <alt> 1.
Unmodified keys, backspace, esc, return alter the text buffer.
Build instructions:

Binary file not shown.

View File

@ -134,4 +134,8 @@ const unsigned char myfont[] = {
0xc7, 0x3c, 0xfe, 0x06, 0x08, 0x60, 0x00, 0x7e
};
#define FONT_WIDTH 8
#define FONT_HEIGHT 8
#define FONT_CHARACTER_COUNT 128
#endif /*MY_FONT_H_*/

File diff suppressed because it is too large Load Diff