Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

GNU Rocket Git mirror

License

NotificationsYou must be signed in to change notification settings

emoon/rocket

Repository files navigation

Beta Disclaimer

First a screenshot of how it looks:screenshot

Regular disclaimer: Backup your stuff before using the software :)

If you encounter any issues please try to report them athttps://github.com/emoon/rocket/issues asthis would make my life much easier and I will try to fix them given time. Hopefully the editor should be useful even if still not 100% finalized bug wise.Also the documentation hasn't been completed yet.

Here are the links to the current version of the editor:

About

RocketEditor is coded by Daniel 'emoon' Collin with documentation and testing by Heine 'bstrr' Gundersen.Daniel Collin can be contacted at daniel aat collin dot com

Latest version of this program should be available athttps://github.com/emoon/rocket

The SDL-based linux support is written by Konsta 'sooda' Hölttä athttps://github.com/sooda/rocket, and later updated to use SDL2 by Lauri 'gustafla' Gustafsson athttps://github.com/gustafla/rocket

Motivation

About a year ago me and Heine 'bstrr' Gundersen (at Revision 2012) started to talk about that having an editor for GNU Rocket that worked on macOS would be great as we both used Mac as our primary development platform.This was the start of this another version of the editor. I (Daniel 'emoon' Collin) also wanted some features that weren't in the old editor (such as folding of tracks, having it cross platform, etc)Some small work was started on the editor during spring and summer but not much happened. It was really during last autumn 2012 I started to work on it for real to get in the features I want to have.

Features:

  • Includes (or should at least :) all features from the old editor (except track re-arrangement)
  • More optimized for laptop keyboards (no usage of page up/down and similar keys)
  • Group support. It's now possible to group channels together that makes sense (maybe a group for each part) The syntax for this is to name the tracks "mygroup:mytrack"
  • Folding support for both groups and tracks. Something I found annoying in the old editor was that you had to scroll around quite a bit to get to channel you wanted. Now with folding you use the screen space better.
  • Faster navigation: Can jump between key values, jump in step of 8 and also with bookmarks.
  • Other features such as using more of the keyboard for biasing of values (see key layout below)
  • Trackpad support (OS X only, mouse wheel elsewhere) to scroll around (can only be used with biasing)
  • Cross platform. Read more about the code in the next section.
  • Navigation while play-backing. It's now possible to jump forward/backward when playing the demo (demo "scratching")
  • Fast way to insert a interpolated value by just pressing return on an empty row.
  • Experimental support for multiple Rocket clients for uses like synchronizing music trackers with RocketEditor (seeschismtracker/schismtracker#353)

Building the code

All macOS, Windows and Linux versions use the Tundra build system (https://github.com/deplinenoise/tundra) so in order to build the code you need a tundra executable for your OS.For macOS and Windows the binaries are included within the repo, but for Linux see the build instructions bellow.

macOS

To build on mac enter the rocket/ogl_rocket directory and run "bin/mac/tundra2 macosx-clang-debug" (or -release for release build) and in tundra-output you will find the app to run.To use Xcode to build (or code in) use the XCode3-GenerateProj.sh file (works with Xcode 4.x also) and open the generated project in xcode (it's inside the tundra-output directory)

Windows

To build the code run in debug run:scripts\win32_build_debug.cmd and run the executable int2-output\win32-msvc-debug-default\editor.exe (Visual Studio 2019 required)If you want a VS solution instead you can runscripts\win32_gen_vs_solution.cmd andscripts\win32_launch_vs.cmd

git clone --depth=1 --recursive https://github.com/emoon/rocketcd rocketscripts\win32_build_debug.cmdt2-output\win32-msvc-debug-default\editor.exe

Linux

The following was tested on Ubuntu 16.10 (yakkety).

Install SDL-dev:

sudo apt-get install libsdl1.2-dev

Installtundra:

git clone --depth=1 --recursive https://github.com/deplinenoise/tundracd tundramakesudo checkinstall make install

Build rocket:

git clone --depth=1 --recursive https://github.com/emoon/rocketcd rockettundra2 linux-gcc-release

(optional) Installlibbass.so from the repo folder:

sudo cp external/bass/linux/libbass.so /usr/local/lib/sudo chmod a+rx /usr/local/lib/libbass.sosudo ldconfig

Start rocket:

LD_LIBRARY_PATH=external/bass/linux/ ./t2-output/linux-gcc-release-default/editor

Start the basic example:

./t2-output/linux-gcc-release-default/basic_example

Tips & tricks

  • Fold away tracks or groups you are not currently working with using Alt+Left/Right and Ctrl+Alt+Left/Right

  • Use Return to insert current interpolated value - also sets the interpolation type to what the previous key uses.

  • A good way of bundling parameters for effects is by naming your tracks 'groupname:trackname', as this will group them together, thus making better tracknames than "logo-x-pos", "logo-y-pos", "title-x-pos", "title-y-pos". Groups can also be folded, so they don't take up screen estate when you are working on a different part of the demo.

  • Insert bookmarks using the B key to easily jump between parts in the demo.

  • To rename a track (or add it to a group), close the editor and open the .rocket xml file, which should be nicely formatted. Locate the track and rename it - then rename it in your demo.

  • Bias using Alt+trackpad/scrollwheel. Add the Shift-key to bias even faster.

  • Use selection to bias multiple keys - even across multiple tracks!

Keys

macOS:

Editing:

KeyAction
0-9Edit value
EscCancel edit
QWERTYBias selection +0.01, +0.1, +1, +10, +100, +1000
ASDFGHBias selection -0.01, -0.1, -1, -10, -100, -1000
Alt+Trackpad scrollBias selection +1/-1
Shift+Alt+TrackpadBias selection +10/-10
IToggle interpolation (step/linear/smooth/ramp)
ReturnInsert current interpolated value
Shift+ArrowsSelect
Cmd+TSelect all keys in track
Cmd+XCut
Cmd+CCopy
Cmd+VPaste
Cmd+ZUndo
Cmd+Shift+ZRedo
DeleteDelete key

View:

KeyAction
SpaceStart/Stop
ArrowsMove cursor around
Alt+Up/DownJump 8 rows
Alt+Cmd+Up/DownJump to StartRow/NextBookmark - PrevBookmark/EndRow
Cmd+Left/RightJump to first/last track
Ctrl+Up/DownJump to Previous/Next key in current track
Alt+Left/RightFold/Unfold track
Ctrl+Alt+Left/RightFold/Unfold group
Trackpad scrollScroll
BToggle Bookmark
Cmd+BClear all Bookmarks
TabJump between Row, Start Row, End Row, Track editing

Files:

KeyAction
Cmd+OOpen file
Cmd+SQuicksave
Cmd+Shift+SSave as
Cmd+1/2/3/4Quickload recent files
Cmd+ERemote export

Windows and Linux:

Editing:

KeyAction
0-9Edit value
EscCancel edit
QWERTYBias selection +0.01, +0.1, +1, +10, +100, +1000
ASDFGHBias selection -0.01, -0.1, -1, -10, -100, -1000
IToggle interpolation (step/linear/smooth/ramp)
ReturnInsert current interpolated value
Shift+ArrowsSelect
Ctrl+TSelect all keys in track
Ctrl+XCut
Ctrl+CCopy
Ctrl+VPaste
Ctrl+ZUndo
Ctrl+Shift+ZRedo
DeleteDelete key
Ctrl-IInvert selection
MMute Track

View:

KeyAction
SpaceStart/Stop
ArrowsMove cursor around
Alt+Up/DownJump 8 rows
Ctrl+Alt+Up/DownJump to StartRow/NextBookmark - PrevBookmark/EndRow
Ctrl+Left/RightJump to first/last track
Ctrl+Up/DownJump to Previous/Next key in current track
Alt+Left/RightFold/Unfold track
Ctrl+Alt+Left/RightFold/Unfold group
Trackpad scrollScroll
BToggle Bookmark
Ctrl+BClear all Bookmarks
TabJump between Row, Start Row, End Row, Track editing

Files:

KeyAction
Ctrl+OOpen file
Ctrl+SQuicksave
Ctrl+Shift+SSave as
Ctrl+1/2/3/4Quickload recent files
Ctrl+ERemote export

[8]ページ先頭

©2009-2025 Movatter.jp