Commit graph

21 commits

Author SHA1 Message Date
61e336786f WIP attempt to fix resizing not working 2021-03-30 16:38:25 +09:00
1bc5e62502 Fixes with change window size
WIP window size still doesn't change properly
2021-03-30 12:51:46 +09:00
2919be2aff WIP Replace SFML with Raylib
Need to fix Raygui usage in helpers.hpp.
Need to fix triangles being drawn flipped over the x-axis.
2021-03-29 17:05:27 +09:00
d30a792aca Impl edit tri color, and more
Added way to select and edit colors of placed Tris.
Added third_party catch unit test framework that builds the UnitTest in
Debug builds.
Refactor internal use of notification_text.
Rename src/imgui_helper.hpp to src/helpers.hpp
Added some helper functions, including "is_within_shape" (used for
selecting a Tri).
Fixed use of flags in helpers not using enum values.
2020-08-04 21:13:17 +09:00
72e1675f5f Fix memory corruption bug
Increased buffer for notificationText. Previous implementation wrote to
notificationText but was possible for buffer overflows when writing to
it with strcpy. Also fixed by using strncpy instead of strcpy.
2020-08-03 16:01:38 +09:00
298073d850 Use enum for flag values 2020-08-02 19:59:18 +09:00
508ed0d7d4 Impl changing window size 2020-07-30 20:11:57 +09:00
c386dcd8d9 Impl pick color from what was drawn
Some refactoring around "notification" window.
2020-07-29 17:53:39 +09:00
ffc3848d96 Add close button to windows without one 2020-07-24 17:55:39 +09:00
c278bddc27 Decouple drawing selected points from drawing tris 2020-07-22 21:17:49 +09:00
a6517b8982 Render to cache that only updates on click
This is to prevent slowdown when drawing per frame. Previously, the
program would draw each individual triangle each frame. Now the draws
are cached to a texture that is drawn each frame, and the cache is
recreated on click or undo/redo events.
2020-07-22 19:03:33 +09:00
3d266137d7 Impl saving image with "S" 2020-07-22 18:19:34 +09:00
099b0e65d6 Impl changing background color, with "B" 2020-07-22 17:46:20 +09:00
187c52bf5f Impl choosing colors by color picker menu "C" 2020-07-22 16:26:57 +09:00
7c71ce4d1b Add starting help info, impl undo tri in progress 2020-07-22 16:12:21 +09:00
20418c9a5a Impl undo/redo with U/R keys 2020-07-22 15:33:09 +09:00
d7b8dd23a9 Impl drawing of white triangles 2020-07-22 15:28:36 +09:00
b9d7a0496d Some restructuring of State 2020-07-22 15:19:37 +09:00
2fe86ad368 Move logic/data to state
Also set "H" key to toggle help window instead of only showing when "H"
is pressed down.
2020-07-22 15:11:21 +09:00
204aeb8a9a Some work on mouse input to tri 2020-07-21 20:44:10 +09:00
1434948db9 Impl some structure to the project 2020-07-21 20:34:39 +09:00