Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-21 | d | Stanislaw Halik | |
2024-05-21 | f | Stanislaw Halik | |
2024-05-21 | start thinking about composite objects | Stanislaw Halik | |
2024-05-20 | c | Stanislaw Halik | |
2024-05-14 | a | Stanislaw Halik | |
2024-05-08 | w | Stanislaw Halik | |
2024-05-08 | c | Stanislaw Halik | |
2024-05-07 | b | Stanislaw Halik | |
2024-05-07 | aa | Stanislaw Halik | |
2024-05-06 | walk script wip | Stanislaw Halik | |
2024-05-06 | test: speed up compile time | Stanislaw Halik | |
Removes implicit includes to <windows.h> and <cr/StringView.h> from all files. Goes from 30 to 20 seconds. | |||
2024-05-06 | switch to lazily allocating pathfinding results | Stanislaw Halik | |
2024-05-06 | should be good now | Stanislaw Halik | |
2024-05-06 | fixup! f18be9b4686fa11f6fd3caf67396894e38a65d3a | Stanislaw Halik | |
2024-05-06 | bad | Stanislaw Halik | |
2024-05-06 | a? | Stanislaw Halik | |
2024-05-06 | e | Stanislaw Halik | |
2024-05-05 | src: remove the tile_iterator class | Stanislaw Halik | |
This is too crufty to bother with. | |||
2024-05-05 | add comment | Stanislaw Halik | |
2024-05-05 | b | Stanislaw Halik | |
2024-05-05 | c | Stanislaw Halik | |
2024-05-05 | b | Stanislaw Halik | |
2024-05-05 | a wip | Stanislaw Halik | |
2024-05-05 | expose script init status | Stanislaw Halik | |
2024-05-05 | add simplified camera offset formula | Stanislaw Halik | |
2024-05-05 | d | Stanislaw Halik | |
2024-05-03 | critter_script shouldn't have a copy ctor | Stanislaw Halik | |
2024-05-03 | src/search: add tiny constant value to bbox size | Stanislaw Halik | |
2024-05-03 | a | Stanislaw Halik | |
2024-05-02 | compat/assert: reduce executable size | Stanislaw Halik | |
2024-05-02 | actually, don't delete objects during update | Stanislaw Halik | |
2024-05-02 | c | Stanislaw Halik | |
2024-05-02 | now call script update | Stanislaw Halik | |
2024-05-02 | script lifecycle mostly implemented | Stanislaw Halik | |
2024-05-02 | a | Stanislaw Halik | |
2024-05-02 | b | Stanislaw Halik | |
2024-04-14 | add find_object specialization for scenery subtypes | Stanislaw Halik | |
2024-04-14 | remove obsolete code | Stanislaw Halik | |
Now that `find_object` isn't defined in the header anymore, it doesn't make sense to fiddle around with dependent names. | |||
2024-04-14 | c | Stanislaw Halik | |
2024-04-13 | split scenery-proto into its own file | Stanislaw Halik | |
2024-04-13 | add move assignment operator and ctor to scenery_proto | Stanislaw Halik | |
2024-04-13 | instantiate scenery in a uniform manner | Stanislaw Halik | |
Now using world::make_scenery(). Add `std::monostate` to the `scenery_proto` variant to catch potential bugs. | |||
2024-04-13 | use inheritance for scenery, not std::variant | Stanislaw Halik | |
It's still WIP because creating scenery has to branch on all subtypes. This needs to be taken care of generically in `world::make_object()`. | |||
2024-04-11 | w | Stanislaw Halik | |
2024-04-11 | rewrite bitmask impl | Stanislaw Halik | |
It's slower than the previous version but fixes a bug when stride isn't a multiple of 8. It can be improved further by setting `auto& byte` all at once instead of setting individual bits of multiple bytes in the innermost loop. ------------------------------------------------------------ New version Time CPU Iterations ------------------------------------------------------------ Bitmask_mean 1911 us 1893 us 5 Bitmask_median 1911 us 1885 us 5 Bitmask_stddev 2.00 us 18.7 us 5 Bitmask_cv 0.10 % 0.99 % 5 ------------------------------------------------------------- ------------------------------------------------------------ Buggy version Time CPU Iterations ------------------------------------------------------------ Bitmask_mean 841 us 841 us 5 Bitmask_median 839 us 837 us 5 Bitmask_stddev 3.29 us 7.80 us 5 Bitmask_cv 0.39 % 0.93 % 5 ------------------------------------------------------------ ----------------------------------------------------------- Naive version Time CPU Iterations ------------------------------------------------------------ Bitmask_mean 4006 us 3997 us 10 Bitmask_median 4006 us 3997 us 10 Bitmask_stddev 2.29 us 0.000 us 10 Bitmask_cv 0.06 % 0.00 % 10 ------------------------------------------------------------ | |||
2024-04-11 | fix msvc warnings | Stanislaw Halik | |
2024-04-11 | fix sprite bitmask generator | Stanislaw Halik | |
This is WIP because it needs a more efficient algorithm. | |||
2024-04-09 | move template away from header | Stanislaw Halik | |
Now uses explicit instantiation. | |||
2024-04-09 | remove unused includes | Stanislaw Halik | |
2024-04-09 | update comment | Stanislaw Halik | |