Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build fixes for latest imgui, suppress some warnings about unused parameters #206

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions crude_json.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

// Crude implementation of JSON value object and parser.
//
// VERSION 0.1
Expand Down Expand Up @@ -888,3 +896,8 @@ bool value::save(const string& path, const int indent, const char indent_char) c
# endif

} // namespace crude_json

//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
15 changes: 13 additions & 2 deletions crude_json.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// Crude implementation of JSON value object and parser.
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#endif

// Crude implementation of JSON value object and parser.
//
// VERSION 0.1
//
Expand Down Expand Up @@ -247,4 +253,9 @@ template <> inline number* value::get_ptr<number>() { if (m_Type =

} // namespace crude_json

# endif // __CRUDE_JSON_H__
# endif // __CRUDE_JSON_H__

//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
36 changes: 25 additions & 11 deletions imgui_bezier_math.inl
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

//------------------------------------------------------------------------------
// VERSION 0.1
//
Expand Down Expand Up @@ -395,17 +403,19 @@ inline ImCubicBezierIntersectResult ImCubicBezierLineIntersect(const ImVec2& p0,
return count;
};

// https://github.com/kaishiqi/Geometric-Bezier/blob/master/GeometricBezier/src/kaishiqi/geometric/intersection/Intersection.as
//
// Start with Bezier using Bernstein polynomials for weighting functions:
// (1-t^3)P0 + 3t(1-t)^2P1 + 3t^2(1-t)P2 + t^3P3
//
// Expand and collect terms to form linear combinations of original Bezier
// controls. This ends up with a vector cubic in t:
// (-P0+3P1-3P2+P3)t^3 + (3P0-6P1+3P2)t^2 + (-3P0+3P1)t + P0
// /\ /\ /\ /\
// || || || ||
// c3 c2 c1 c0
/*
https://github.com/kaishiqi/Geometric-Bezier/blob/master/GeometricBezier/src/kaishiqi/geometric/intersection/Intersection.as

Start with Bezier using Bernstein polynomials for weighting functions:
(1-t^3)P0 + 3t(1-t)^2P1 + 3t^2(1-t)P2 + t^3P3

Expand and collect terms to form linear combinations of original Bezier
controls. This ends up with a vector cubic in t:
(-P0+3P1-3P2+P3)t^3 + (3P0-6P1+3P2)t^2 + (-3P0+3P1)t + P0
/\ /\ /\ /\
|| || || ||
c3 c2 c1 c0
*/

// Calculate the coefficients
auto c3 = -p0 + 3 * p1 - 3 * p2 + p3;
Expand Down Expand Up @@ -673,3 +683,7 @@ inline void ImCubicBezierFixedStep(F& callback, const ImCubicBezierPoints& curve

//------------------------------------------------------------------------------
# endif // __IMGUI_BEZIER_MATH_INL__

#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
16 changes: 15 additions & 1 deletion imgui_canvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ bool ImGuiEx::Canvas::Begin(ImGuiID id, const ImVec2& size)

// #debug: Canvas content.
//m_DrawList->AddRectFilled(m_StartPos, m_StartPos + m_CurrentSize, IM_COL32(0, 0, 0, 64));
//m_DrawList->AddRect(m_WidgetRect.Min, m_WidgetRect.Max, IM_COL32(255, 0, 255, 64));
m_DrawList->AddRect(m_WidgetRect.Min, m_WidgetRect.Max, IM_COL32(255, 0, 255, 64));

ImGui::SetCursorScreenPos(ImVec2(0.0f, 0.0f));

Expand Down Expand Up @@ -561,6 +561,20 @@ void ImGuiEx::Canvas::LeaveLocalSpace()
m_DrawList->CmdBuffer.erase(m_DrawList->CmdBuffer.Data + m_DrawListCommadBufferSize);
else if (m_DrawList->CmdBuffer.size() >= m_DrawListCommadBufferSize && m_DrawList->CmdBuffer[m_DrawListCommadBufferSize - 1].UserCallback == ImDrawCallback_ImCanvas)
m_DrawList->CmdBuffer.erase(m_DrawList->CmdBuffer.Data + m_DrawListCommadBufferSize - 1);

//DEBUG: Search the *entire* draw list for the sentinel command
for(int i=0; i<m_DrawList->CmdBuffer.size(); i++)
{
if(m_DrawList->CmdBuffer[i].UserCallback == ImDrawCallback_ImCanvas)
{
/*fprintf(stderr, "found and removed sentinel at offset %d, expected %d or %d\n",
i,
m_DrawListCommadBufferSize,
m_DrawListCommadBufferSize-1);*/

m_DrawList->CmdBuffer.erase(m_DrawList->CmdBuffer.Data + i);
}
}
}

auto& fringeScale = ImFringeScaleRef(m_DrawList);
Expand Down
1 change: 0 additions & 1 deletion imgui_extra_math.inl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ inline ImVec2 operator-(const ImVec2& lhs)
}
# endif


//------------------------------------------------------------------------------
inline float ImLength(float v)
{
Expand Down
22 changes: 16 additions & 6 deletions imgui_node_editor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

//------------------------------------------------------------------------------
// VERSION 0.9.1
//
Expand Down Expand Up @@ -166,7 +173,6 @@ void ed::Log(const char* fmt, ...)
# endif
}


//------------------------------------------------------------------------------
static bool IsGroup(const ed::Node* node)
{
Expand Down Expand Up @@ -4391,15 +4397,15 @@ ed::EditorAction::AcceptResult ed::ShortcutAction::Accept(const Control& control
Action candidateAction = None;

auto& io = ImGui::GetIO();
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_X)))
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_X))
candidateAction = Cut;
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_C)))
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_C))
candidateAction = Copy;
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_V)))
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_V))
candidateAction = Paste;
if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(GetKeyIndexForD()))
candidateAction = Duplicate;
if (!io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Space)))
if (!io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_Space))
candidateAction = CreateNode;

if (candidateAction != None)
Expand Down Expand Up @@ -4953,7 +4959,7 @@ ed::EditorAction::AcceptResult ed::DeleteItemsAction::Accept(const Control& cont
return False;

auto& io = ImGui::GetIO();
if (Editor->CanAcceptUserInput() && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Delete)) && Editor->AreShortcutsEnabled())
if (Editor->CanAcceptUserInput() && ImGui::IsKeyPressed(ImGuiKey_Delete) && Editor->AreShortcutsEnabled())
{
auto& selection = Editor->GetSelectedObjects();
if (!selection.empty())
Expand Down Expand Up @@ -5853,3 +5859,7 @@ void ed::Config::EndSave()
if (EndSaveSession)
EndSaveSession(UserPointer);
}

#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
1 change: 1 addition & 0 deletions imgui_node_editor.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@


//------------------------------------------------------------------------------
#define IMGUI_DEFINE_MATH_OPERATORS
# include <imgui.h>
# include <cstdint> // std::uintXX_t
# include <utility> // std::move
Expand Down
12 changes: 12 additions & 0 deletions imgui_node_editor_api.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

//------------------------------------------------------------------------------
// VERSION 0.9.1
//
Expand Down Expand Up @@ -760,3 +767,8 @@ int ax::NodeEditor::GetOrderedNodeIds(NodeId* nodes, int size)
{
return s_Editor->GetNodeIds(nodes, size);
}

//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
12 changes: 12 additions & 0 deletions imgui_node_editor_internal.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

//------------------------------------------------------------------------------
// VERSION 0.9.1
//
Expand Down Expand Up @@ -1558,3 +1565,8 @@ struct EditorContext

//------------------------------------------------------------------------------
# endif // __IMGUI_NODE_EDITOR_INTERNAL_H__

//Disable a bunch of warnings for now
#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif