Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - zper

Pages: [1]
1
SFML projects / Re: Cellular automata with ImGui + SFML + Bazel
« on: November 02, 2020, 10:29:52 am »
Without looking at all the files, the SFML parts I've seen look good, maybe you should call window.clear(); in runner.cpp unconditionally (not sure what IMGUI does).

The state checking looks messy, why not an enum with running/paused/stopped?
Also, try to avoid global/static variables, they're often not needed with good design.

Yeah, I had something in mind to do with enums, but this was a quick hack to have some simulation states. As for the global variables - I agree with you there also.

Thanks for the mini-review  8)

Feel free to add more suggestions, they are more than welcome!  ;D

2
SFML projects / Cellular automata with ImGui + SFML + Bazel
« on: November 02, 2020, 06:36:07 am »
Hi everyone  ;D

Currently, I am experimenting (and learning on the way) to work with SFML + Imgui with Bazel under the hood. Therefore, a new project arose - Game of Life!

It's a fun and interesting concept for simulating simple yet smart agent systems with cellular automatons. If you're interested in the project (or, at least, dissolve the "wtf" mist by reading the previous), feel free to enter into the realm of the "GameOfLife" Github repository -> https://github.com/zpervan/GameOfLife

Also, I would appreciate it if someone with more experience has some tips and tricks regarding SFML or general program design of the application.  8)

Thanks and stay safe!

3
SFML projects / Re: Visualization/plot library with SFML and Bazel
« on: October 17, 2020, 04:07:26 pm »
Looks promising, but why not use and contribute to some already existed project(for example SFGraphing)? Because there are a lots projects with basic chart support (line, scatter,...) but I didn't find any that has support for more advance charts (like time series or candlestick chart).

This project was a starting point with SFML, Bazel, Github actions and other C++ libraries, but I see your point here. Will check it out definitely!  Thanks for the heads up 8)

4
SFML projects / Visualization/plot library with SFML and Bazel
« on: September 29, 2020, 10:50:11 pm »
Hi everyone!

I'd like to present a "free-time" project that I'm currently working on.
It's a visualization tool which uses SFML under the hood (duh). The whole project is built with Bazel.
It has some basic plotting abilities like line and scatter plots but more will come in the future (I hope).

Github link: https://github.com/zpervan/plotingZ

Examples:




There is room for lot of improvements so feel free to leave a comment :)

Thanks and cheers!

Pages: [1]
anything