[287] | 1 | _______________ Building SDK demos and test applications ________________ |
---|
[109] | 2 | |
---|
[287] | 3 | make -f frams/Makefile-SDK sdk_tests |
---|
[109] | 4 | |
---|
| 5 | |
---|
[130] | 6 | Even if you don't use 'make', you can create a project for your favorite |
---|
[379] | 7 | development environment. The sources should compile under *nixes, osx, |
---|
| 8 | windows (visual C++, borland/embarcadero), cygwin, android, ios, and tizen. |
---|
[130] | 9 | |
---|
| 10 | |
---|
[119] | 11 | ___________________________ Source directories __________________________ |
---|
[110] | 12 | |
---|
[354] | 13 | +- common - general compatibility layer, utilities |
---|
[379] | 14 | +- frams - Framsticks modules |
---|
| 15 | +- _demos - SDK tests and sample applications |
---|
| 16 | +- canvas - neural network layouts and drawing |
---|
[354] | 17 | +- config - SDK elements declarations |
---|
[780] | 18 | +- genetics - genetic operators and converters between genetic formats |
---|
[354] | 19 | +- f1 - ...for genetic format f1 (recurrent encoding) |
---|
| 20 | +- f4 - ...for genetic format f4 (developmental encoding) |
---|
| 21 | +- f9 - ...for genetic format f9 (3D turtle encoding) |
---|
[780] | 22 | +- fB - ...for genetic format fB ("biological" encoding) |
---|
[354] | 23 | +- fF - ...for genetic format fF (Foraminifera encoding) |
---|
[780] | 24 | +- fH - ...for genetic format fH (multidimensional handles) |
---|
| 25 | +- fL - ...for genetic format fL (Lindenmayer systems) |
---|
[1022] | 26 | +- fS - ...for genetic format fS (similar to f1, but for solid shapes) |
---|
[775] | 27 | +- fn - ...for genetic format fn (numerical optimization encoding) |
---|
[354] | 28 | +- fT - ...for genetic format fT (educational: ATGC sequences) |
---|
[379] | 29 | +- loggers - printing and redirecting logMessage() and logPrint() messages |
---|
[354] | 30 | +- model - body: parts, joints; brain: neurons, connections |
---|
| 31 | +- geometry - compute dimensions, volume, surface area |
---|
| 32 | +- similarity - determine structural and geometric similarity |
---|
| 33 | +- neuro - neural network simulation |
---|
| 34 | +- impl - neuron classes implementations |
---|
[379] | 35 | +- param - C++/properties access objects |
---|
| 36 | +- util - Framsticks-related utilities |
---|
[354] | 37 | +- virtfile - object-oriented FILE* replacement |
---|
[379] | 38 | +- vm - virtual machine programming: FramScript grammar (lex and yacc/bison) |
---|
| 39 | +- classes - C++ interfaces and implementations of basic FramScript objects |
---|
[1056] | 40 | |
---|
| 41 | |
---|
| 42 | ______________________ Source formatting guidelines _____________________ |
---|
| 43 | |
---|
| 44 | File names: all letters are lower case, with '-' as word separator if needed. |
---|
| 45 | Indents: tab |
---|
| 46 | Scopes |
---|
| 47 | { |
---|
| 48 | ClassName variable_lower_case; |
---|
| 49 | variable_lower_case.camelCaseMathodOrFunction(); |
---|
| 50 | } |
---|