sm124futures: Enhanced editor stuff in progress.
Cycle between the different types of Tap Notes. Hold/Roll heads do not count on this. Obviously still being worked on, but the code compiles at this point.
This commit is contained in:
@@ -1925,6 +1925,7 @@ Insert beat and shift down=Insert beat and shift down
|
|||||||
Shift BPM changes and stops down one beat=Shift BPM changes and stops down one beat
|
Shift BPM changes and stops down one beat=Shift BPM changes and stops down one beat
|
||||||
Delete beat and shift up=Delete beat and shift up
|
Delete beat and shift up=Delete beat and shift up
|
||||||
Shift BPM changes and stops up one beat=Shift BPM changes and stops up one beat
|
Shift BPM changes and stops up one beat=Shift BPM changes and stops up one beat
|
||||||
|
Cycle between tap notes=Cycle between tap notes
|
||||||
Lay mine=Lay mine
|
Lay mine=Lay mine
|
||||||
Lay lift=Lay lift
|
Lay lift=Lay lift
|
||||||
Add to/remove from right half=Add to/remove from right half
|
Add to/remove from right half=Add to/remove from right half
|
||||||
|
|||||||
@@ -270,6 +270,9 @@ void ScreenEdit::InitEditMappings()
|
|||||||
m_EditMappingsDeviceInput.button[EDIT_BUTTON_LAY_LIFT][0] = DeviceInput(DEVICE_KEYBOARD, KEY_LCTRL);
|
m_EditMappingsDeviceInput.button[EDIT_BUTTON_LAY_LIFT][0] = DeviceInput(DEVICE_KEYBOARD, KEY_LCTRL);
|
||||||
m_EditMappingsDeviceInput.button[EDIT_BUTTON_LAY_LIFT][1] = DeviceInput(DEVICE_KEYBOARD, KEY_RCTRL);
|
m_EditMappingsDeviceInput.button[EDIT_BUTTON_LAY_LIFT][1] = DeviceInput(DEVICE_KEYBOARD, KEY_RCTRL);
|
||||||
|
|
||||||
|
m_EditMappingsDeviceInput.button[EDIT_BUTTON_CYCLE_TAP_LEFT][0] = DeviceInput(DEVICE_KEYBOARD, KEY_Cn);
|
||||||
|
m_EditMappingsDeviceInput.button[EDIT_BUTTON_CYCLE_TAP_RIGHT][0] = DeviceInput(DEVICE_KEYBOARD, KEY_Cm);
|
||||||
|
|
||||||
m_EditMappingsDeviceInput.button [EDIT_BUTTON_SCROLL_SPEED_UP][0] = DeviceInput(DEVICE_KEYBOARD, KEY_UP);
|
m_EditMappingsDeviceInput.button [EDIT_BUTTON_SCROLL_SPEED_UP][0] = DeviceInput(DEVICE_KEYBOARD, KEY_UP);
|
||||||
m_EditMappingsDeviceInput.hold[EDIT_BUTTON_SCROLL_SPEED_UP][0] = DeviceInput(DEVICE_KEYBOARD, KEY_LCTRL);
|
m_EditMappingsDeviceInput.hold[EDIT_BUTTON_SCROLL_SPEED_UP][0] = DeviceInput(DEVICE_KEYBOARD, KEY_LCTRL);
|
||||||
m_EditMappingsDeviceInput.hold[EDIT_BUTTON_SCROLL_SPEED_UP][1] = DeviceInput(DEVICE_KEYBOARD, KEY_RCTRL);
|
m_EditMappingsDeviceInput.hold[EDIT_BUTTON_SCROLL_SPEED_UP][1] = DeviceInput(DEVICE_KEYBOARD, KEY_RCTRL);
|
||||||
@@ -4035,6 +4038,7 @@ static const EditHelpLine g_EditHelpLines[] =
|
|||||||
EditHelpLine( "Shift BPM changes and stops down one beat", EDIT_BUTTON_INSERT_SHIFT_PAUSES ),
|
EditHelpLine( "Shift BPM changes and stops down one beat", EDIT_BUTTON_INSERT_SHIFT_PAUSES ),
|
||||||
EditHelpLine( "Delete beat and shift up", EDIT_BUTTON_DELETE ),
|
EditHelpLine( "Delete beat and shift up", EDIT_BUTTON_DELETE ),
|
||||||
EditHelpLine( "Shift BPM changes and stops up one beat", EDIT_BUTTON_DELETE_SHIFT_PAUSES ),
|
EditHelpLine( "Shift BPM changes and stops up one beat", EDIT_BUTTON_DELETE_SHIFT_PAUSES ),
|
||||||
|
EditHelpLine( "Cycle between tap notes", EDIT_BUTTON_CYCLE_TAP_LEFT, EDIT_BUTTON_CYCLE_TAP_RIGHT ),
|
||||||
EditHelpLine( "Lay mine", EDIT_BUTTON_LAY_MINE_OR_ROLL ),
|
EditHelpLine( "Lay mine", EDIT_BUTTON_LAY_MINE_OR_ROLL ),
|
||||||
EditHelpLine( "Lay lift", EDIT_BUTTON_LAY_LIFT ),
|
EditHelpLine( "Lay lift", EDIT_BUTTON_LAY_LIFT ),
|
||||||
EditHelpLine( "Add to/remove from right half", EDIT_BUTTON_RIGHT_SIDE ),
|
EditHelpLine( "Add to/remove from right half", EDIT_BUTTON_RIGHT_SIDE ),
|
||||||
|
|||||||
@@ -55,6 +55,10 @@ enum EditButton
|
|||||||
EDIT_BUTTON_LAY_LIFT,
|
EDIT_BUTTON_LAY_LIFT,
|
||||||
EDIT_BUTTON_REMOVE_NOTE,
|
EDIT_BUTTON_REMOVE_NOTE,
|
||||||
|
|
||||||
|
// These are modifiers to change the present tap note.
|
||||||
|
EDIT_BUTTON_CYCLE_TAP_LEFT,
|
||||||
|
EDIT_BUTTON_CYCLE_TAP_RIGHT,
|
||||||
|
|
||||||
EDIT_BUTTON_SCROLL_UP_LINE,
|
EDIT_BUTTON_SCROLL_UP_LINE,
|
||||||
EDIT_BUTTON_SCROLL_UP_PAGE,
|
EDIT_BUTTON_SCROLL_UP_PAGE,
|
||||||
EDIT_BUTTON_SCROLL_DOWN_LINE,
|
EDIT_BUTTON_SCROLL_DOWN_LINE,
|
||||||
|
|||||||
Reference in New Issue
Block a user