kdis icon indicating copy to clipboard operation
kdis copied to clipboard

DIS(IEEE 1278.1) Fully Implemented in C++. A complete open source implementation of DIS (Distributed Interactive Simulation) in C++. 1278.1 and 1278.1a are fully implemented including enumerations. I...

Results 7 kdis issues
Sort by recently updated
recently updated
newest added

Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. Release notes Sourced from softprops/action-gh-release's releases. v2.0.0 update actions.yml declaration to node20 to address warnings Changelog Sourced from softprops/action-gh-release's changelog. 0.1.12 fix bug leading...

dependencies

@karljj1 Can you create an account on [Codecov](https://codecov.io) for `kdis` Thanks 🥳🤗

KDIS has a lot of enums. To avoid pollution (like C) it's suggested to use `enum class` instead of `enum`

Use [`std::unordered_map`](https://en.cppreference.com/w/cpp/container/unordered_map) instead of [`map`](https://en.cppreference.com/w/cpp/container/map) when order of elements is not important

May I suggest that the two standard Dead Reckoning Other Parameters field formats are implemented as classes. This could use the methodologies used within the rest of the PDUs to...

Using the current constructor to create a `Connection` class is a little too verbose and tedious. Additionally, although if some options can be modified after creation, some cannot (`port`). I...