2019-11-01 12:46:40 +00:00
|
|
|
////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Universe View
|
|
|
|
//
|
|
|
|
///////////////////////////////////////
|
|
|
|
|
2019-11-01 13:16:30 +00:00
|
|
|
struct universe_view_operation_state
|
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
b32 MouseDown;
|
2019-11-01 13:16:30 +00:00
|
|
|
v2 DisplayOffset;
|
|
|
|
r32 Zoom;
|
|
|
|
};
|
|
|
|
|
2019-11-01 12:46:40 +00:00
|
|
|
OPERATION_RENDER_PROC(RenderUniverseView)
|
|
|
|
{
|
2019-11-23 00:07:25 +00:00
|
|
|
InvalidCodePath;
|
|
|
|
|
|
|
|
#if 0
|
2019-11-01 13:16:30 +00:00
|
|
|
DEBUG_TRACK_SCOPE(DrawUniverseOutputDisplay);
|
|
|
|
|
2019-11-01 14:38:44 +00:00
|
|
|
universe_view_operation_state* OpState = (universe_view_operation_state*)Operation.OpStateMemory;
|
2019-11-01 13:16:30 +00:00
|
|
|
|
|
|
|
string TitleBarString = InitializeEmptyString(PushArray(State->Transient, char, 64), 64);
|
|
|
|
|
|
|
|
v2 DisplayArea_Dimension = v2{600, 600};
|
2019-11-02 17:29:51 +00:00
|
|
|
|
2019-11-01 13:16:30 +00:00
|
|
|
v2 DisplayContents_Offset = OpState->DisplayOffset;
|
2019-11-02 17:29:51 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// TODO(Peter): I don't like this. Dragging the Universe view should be an operation mode, just
|
|
|
|
// like rotating the 3D view, but modes don't have access to the state of modes above them in the stack
|
|
|
|
// (and attempting to cast those states to the appropriate type seems risky)
|
|
|
|
//
|
|
|
|
// :NeedToPassStateDownModeChain
|
|
|
|
//
|
|
|
|
if (OpState->MouseDown)
|
|
|
|
{
|
|
|
|
DisplayContents_Offset += (Mouse.Pos - Mouse.DownPos);
|
|
|
|
}
|
|
|
|
|
2019-11-01 13:16:30 +00:00
|
|
|
v2 DisplayArea_TopLeft = v2{300, (r32)RenderBuffer->ViewHeight - 50} + DisplayContents_Offset;
|
|
|
|
v2 UniverseDisplayDimension = v2{100, 100} * OpState->Zoom;
|
|
|
|
v2 Padding = v2{25, 50} * OpState->Zoom;
|
|
|
|
|
|
|
|
v2 UniverseDisplayTopLeft = DisplayArea_TopLeft;
|
|
|
|
|
|
|
|
sacn_universe_buffer* UniverseList = State->SACN.UniverseBuffer;
|
|
|
|
while(UniverseList)
|
|
|
|
{
|
|
|
|
for (s32 UniverseIdx = 0;
|
|
|
|
UniverseIdx < UniverseList->Used;
|
|
|
|
UniverseIdx++)
|
|
|
|
{
|
|
|
|
sacn_universe* Universe = UniverseList->Universes + UniverseIdx;
|
2019-11-23 00:07:25 +00:00
|
|
|
DrawSACNUniversePixels(RenderBuffer, Universe, UniverseDisplayTopLeft, UniverseDisplayDimension);
|
2019-11-01 13:16:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (OpState->Zoom > .5f)
|
|
|
|
{
|
|
|
|
v2 TitleDisplayStart = UniverseDisplayTopLeft + v2{0, 12};
|
|
|
|
PrintF(&TitleBarString, "Universe %d", Universe->Universe);
|
2019-11-02 21:09:57 +00:00
|
|
|
DrawString(RenderBuffer, TitleBarString, State->Interface.Font,
|
2019-11-01 13:16:30 +00:00
|
|
|
TitleDisplayStart, WhiteV4);
|
|
|
|
}
|
|
|
|
|
|
|
|
UniverseDisplayTopLeft.x += UniverseDisplayDimension.x + Padding.x;
|
|
|
|
if (UniverseDisplayTopLeft.x > DisplayArea_TopLeft.x + DisplayArea_Dimension.x)
|
|
|
|
{
|
|
|
|
UniverseDisplayTopLeft.x = DisplayArea_TopLeft.x;
|
|
|
|
UniverseDisplayTopLeft.y -= UniverseDisplayDimension.y + Padding.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UniverseDisplayTopLeft.y < DisplayArea_TopLeft.y - DisplayArea_Dimension.y)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-23 00:07:25 +00:00
|
|
|
|
2019-11-01 13:16:30 +00:00
|
|
|
}
|
|
|
|
UniverseList = UniverseList->Next;
|
|
|
|
}
|
2019-11-23 00:07:25 +00:00
|
|
|
#endif
|
2019-11-01 13:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(Peter): Something isn't working with my laptop trackpad's zoom
|
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(UniverseZoom)
|
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
universe_view_operation_state* OpState = GetCurrentOperationState(State->Modes, universe_view_operation_state);
|
2019-11-01 13:16:30 +00:00
|
|
|
r32 DeltaZoom = (r32)(Mouse.Scroll) / 120;
|
|
|
|
OpState->Zoom = GSClamp(0.1f, OpState->Zoom + DeltaZoom, 4.f);
|
|
|
|
}
|
|
|
|
|
2019-11-02 17:29:51 +00:00
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(UniverseViewEndPan)
|
|
|
|
{
|
|
|
|
// :NeedToPassStateDownModeChain
|
|
|
|
universe_view_operation_state* OpState = GetCurrentOperationState(State->Modes, universe_view_operation_state);
|
|
|
|
OpState->MouseDown = false;
|
|
|
|
OpState->DisplayOffset = OpState->DisplayOffset + (Mouse.Pos - Mouse.DownPos);
|
|
|
|
}
|
|
|
|
|
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(UniverseViewBeginPan)
|
2019-11-01 13:16:30 +00:00
|
|
|
{
|
2019-11-02 17:29:51 +00:00
|
|
|
// :NeedToPassStateDownModeChain
|
|
|
|
universe_view_operation_state* OpState = GetCurrentOperationState(State->Modes, universe_view_operation_state);
|
|
|
|
OpState->MouseDown = true;
|
2019-11-01 13:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(CloseUniverseView)
|
|
|
|
{
|
|
|
|
DeactivateCurrentOperationMode(&State->Modes);
|
|
|
|
}
|
|
|
|
|
2019-11-02 17:29:51 +00:00
|
|
|
input_command UniverseViewCommands [] = {
|
|
|
|
{ KeyCode_MouseLeftButton, KeyCode_Invalid, Command_Began, UniverseViewBeginPan },
|
|
|
|
{ KeyCode_MouseLeftButton, KeyCode_Invalid, Command_Ended, UniverseViewEndPan },
|
|
|
|
{ KeyCode_U, KeyCode_Invalid, Command_Began, CloseUniverseView },
|
|
|
|
};
|
|
|
|
|
2019-11-01 13:16:30 +00:00
|
|
|
FOLDHAUS_INPUT_COMMAND_PROC(OpenUniverseView)
|
|
|
|
{
|
2019-12-28 19:31:21 +00:00
|
|
|
operation_mode* UniverseViewMode = ActivateOperationModeWithCommands(&State->Modes, UniverseViewCommands, RenderUniverseView);
|
2019-11-01 13:16:30 +00:00
|
|
|
|
|
|
|
// State Setup
|
|
|
|
universe_view_operation_state* OpState = CreateOperationState(UniverseViewMode,
|
|
|
|
&State->Modes,
|
|
|
|
universe_view_operation_state);
|
|
|
|
OpState->DisplayOffset = v2{0, 0};
|
|
|
|
OpState->Zoom = 1.0f;
|
2019-11-01 12:46:40 +00:00
|
|
|
}
|