inline_tweak VS abstreet

Compare inline_tweak vs abstreet and see what are their differences.

inline_tweak

Tweak a Rust value directly in the source code (by Uriopass)

abstreet

Transportation planning and traffic simulation software for creating cities friendlier to walking, biking, and public transit (by a-b-street)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
inline_tweak abstreet
1 56
153 7,316
- 0.5%
8.3 8.9
3 months ago 5 days ago
Rust Rust
Creative Commons Zero v1.0 Universal Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

inline_tweak

Posts with mentions or reviews of inline_tweak. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-22.
  • Egregoria is a city simulation with high granularity
    6 projects | news.ycombinator.com | 22 Jul 2023
    I think Rust for games has come really far. I will cite https://arewegameyet.rs/ "Almost. We have the blocks, bring your own glue.".

    All the blocks are there and the language is really well suited to games.

    On top of my head:

    The pros:

    - The crate ecosystem and the package manager makes it really easy to integrate any useful component such as pathfinding, spatial partitioning, graphics backend, audio system.. Most crates take a lot of effort to be cross-platform so I can develop on linux and not spend too much time debugging windows releases.

    - The strong typing and algebraic data types makes expressing the game state very pleasant. I also found I was able to develop a very big game without too many bugs even though I don't write many tests.

    - Ahead of time compilation + LLVM guarantees you won't have to optimise for weird things around a virtual machine. Rust gives you more control to optimise hot loops as you can go low-level.

    - I find wgpu to be the perfect balance between ergonomics and power compared to Vulkan. OpenGL support through wgpu is also a nice addition for lower end devices.

    - The Rust community is very helpful, you can often talk directly to crate maintainers

    The cons:

    - Compilation times, when compared to JITed languages such as C# can be very painful. It can be alleviated by buying a 3950X but I still often get 10-30s iteration times.

    - The static nature of Rust means you often need a dynamism layer above to tweak stuff that can be awkward to manage. I made inline_tweak for this purpose but it's really far from how easy Unity makes it. https://github.com/Uriopass/inline_tweak

    - Since Rust feels very ergonomic, you are tempted to write almost all game logic within it, so mod support feels very backwards to implement as you cannot really tweak "everything" like in Unity games. Thankfully "Systems" game like Factorio or Egregoria can be theoretically split into the "simulation" and the "entities" so mod can still have a great impact. Factorio is built in C++ so has the same problematic. Their Lua API surface is quite insane to be able to hook into everything. https://lua-api.factorio.com/latest/

    Now, I have to talk about Bevy: https://bevyengine.org/. It did not exist when I started but it is a revolution in the Rust gamedev space. It is a very powerful 100% Rust game engine that makes you write game code in Rust too. It has incredible energy behind it and I feel like if I'd used Bevy from the start I wouldn't have had to develop many core engine systems. Its modular design is also incredibly pleasant as you can just replace any part you don't like with your own.

abstreet

Posts with mentions or reviews of abstreet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-24.

What are some alternatives?

When comparing inline_tweak and abstreet you can also consider the following projects:

Egregoria - Contemplative society simulation

prettymaps - A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.

GET3D

tilemaker - Make OpenStreetMap vector tiles without the stack

bevy - A refreshingly simple data-driven game engine built in Rust

osm-renderer - OpenStreetMap raster tile renderer written in Rust

arewegameyet - The repository for https://arewegameyet.rs

grid2demand - A tool for generating zone-to-zone travel demand based on grid zones and gravity model

awesome-vector-tiles - Awesome implementations of the Mapbox Vector Tile specification

owid-grapher - A platform for creating interactive data visualizations

vsketch - Generative plotter art environment for Python

WRF - The official repository for the Weather Research and Forecasting (WRF) model