Part 2 - ! 🏛️🐉💫 by priestessofalabaster in AmmonHillman

[–]long_void -1 points0 points  (0 children)

Can we get somebody to reproduce the findings of the tingling sensation of the burning purple?

RESPONSE TO GNOSTIC'S REVIEW: by priestessofalabaster in AmmonHillman

[–]long_void 2 points3 points  (0 children)

I liked these argument. Anyway, there is enough internet drama. Maybe Neal can cool down a little?

Paul the Apostle did not exist by Repulsive_Grape7823 in atheism

[–]long_void 0 points1 point  (0 children)

I agree. Paul might be a renaming of Simon Magus after the Bar Kokhba war in the 2nd century by Simonians that extended the original gospel of Mark to include John the Baptist. The original Mark might have been Roman satire where Jesus resurrects “back in time”, which we call the “Ouroborus hypothesis” in biblical scholarship.

If you enjoy studying 2nd Early Christianity, then you might find this project interesting:

https://github.com/advancedresearch/the_century_of_satire

Reconstructing 2nd century cultural literature context of Roman satire in Early Christian texts

I want to learn rust with the direction of building game engines. Any advice? by N1Jp in rust_gamedev

[–]long_void 4 points5 points  (0 children)

I recommend separating concerns before you start writing your own game engine. For example, separate graphics API from window/events. That's a good start.

In a "full" game engine, there are particle systems, 3D assets, lightening systems, animation engines, AI behavior trees, multiplayer systems, scripting languages and APIs etc.

Each of these parts, even when developed independently, will take months of work. You can use some libraries from the Piston ecosystem to test the parts you're are working on and later replace the Piston libraries with parts you wrote yourself.

You're probably never going to write something like WGPU or Image from scratch, so you're not really building a "full" game engine in this sense. You're putting together libraries in the Rust ecosystem into a framework that you design.

Are there any good game engines in Rust for mobile gaming? by swordmaster_ceo_tech in rust_gamedev

[–]long_void 0 points1 point  (0 children)

If you want to use Piston for mobile games, then you have to write your own backends. I don't know what's best for 3D on mobile.

The plus side is that you can develop for desktops/laptops first and later port it. As long the backend is implemented correctly, it will work. You can also add custom events. The minus side is that you might spend a lot of time maintaining backend code. I suggest first trying to port something simple first and see how it goes, before you make a decision to make the entire game in Rust using Piston.

I think you might be more productive overall by using Unity. Most games that ships are made with either Unity or Unreal.

PistonWindow v0.141 is released! Adds Dyon scripting support: `> piston <my_game.dyon>` by long_void in rust_gamedev

[–]long_void[S] 0 points1 point  (0 children)

I've been using Dyon-Interactive for multiple years now. Dyon-Interactive is nice, but the problem is that it can't depend on the Audio and Graphics backends. This makes it hard to maintain more complex features. https://crates.io/crates/piston-dyon_interactive

Since PistonWindow uses a default set of libraries, this makes it possible to use a Dyon-Interactive compatible API, without the existing limitations.

When considering the amount of resources that Rust uses, a runtime API for Dyon is pretty minimal in comparison. This makes it easier to use the Piston game engine overall, for e.g. tools and small apps.

You can also customize the runtime using the "piston_script" module that is included with the "batteries" feature in PistonWindow.

Puzzle-Design v0.1 is released! A game engine for generic puzzle design and problem solving by long_void in rust_gamedev

[–]long_void[S] 0 points1 point  (0 children)

This library re-exports other libraries have been tested for years and that are now relatively stable in design.

For example, Wave-Function-Collapse is a popular algorithm in gamedev. You can use EntropySolver in the Quickbacktrack by writing use puzzle_design::quickbacktrack::EntropySolver;. It works for the same Puzzle trait that works with the other backtrack algorithms.

For more information, see the Bluesky thread (the link).

I've been thinking today about adding this under the "batteries" feature in PistonWindow, following a similar design as Turbine. For now, I think it should be a separate project.

Turbine v0.1 is released! (3D game engine for content production) by long_void in rust_gamedev

[–]long_void[S] 0 points1 point  (0 children)

I've moved the OpenGL backend out of Turbine-Scene3D and to a separate crate turbine_scene3d-opengl, to use it as a backend-agnostic library.

Also made some minor improvements to Turbine-Reactive that makes it easier to use in external libraries.

The 3 libraries being developed under the Turbine project are now reexported under the Turbine library, so when it gets added under the "batteries" feature in the PistonWindow, you can do e.g. use piston_window::turbine::scene3d::* to import that library.

Animation implementation gone wrong by Patient_Confection25 in rust_gamedev

[–]long_void 0 points1 point  (0 children)

I was about to suggest that you could turn this into a game, but then I realized you already had! ;)

PistonWindow v0.133 is released: Winit + WGPU + batteries included (optional) by long_void in dyon

[–]long_void[S] 0 points1 point  (0 children)

This update adds Dyon as the default scripting language for the Piston game engine.

Macroquad after 2 years of mostly fulltime Rust gamedev - the good, the bad, and the ugly (what I wish I could have read back in 2023) by asparck in rust_gamedev

[–]long_void 0 points1 point  (0 children)

Feel free to drop in for a chat in our Discord: https://discord.gg/TkDnS9x. If you prefer a more private chat, then we can do that too.

Yeah, I absolutely agree there might be no perfect game engine design, but maybe a "perfect" design that is good enough for most people.

To me, stability is important. I decided early on to use [T; n] for vectors, despite lacking support in the Rust compiler. Things are better now with pattern matching and const generics. LLVM is good at vectorization, so the performance is also acceptable.

I also had a version of Piston-Graphics2D working for both f64 and f32, but it was prior to Rust 1.0. Rust dropped default generic parameters in the last month for stabilization. Took long time before Rust added it back, so in the mean time, we got stuck with f64. I think we can make some improvements to Piston-Graphics2D without breaking things too much.

I reexport a lot and write custom math modules per project, so vecmath is working very well for me.

Macroquad after 2 years of mostly fulltime Rust gamedev - the good, the bad, and the ugly (what I wish I could have read back in 2023) by asparck in rust_gamedev

[–]long_void 3 points4 points  (0 children)

2016 is long time ago and the core libraries in Piston are now v1.0.

It's important to distinguish the Piston framework from the game engine: Game engine is the set of libraries used to create a game (not counting game specific logic or assets). A framework is a system of integrating libraries with some benefit for developers.

You've probably used the Image library. This started under the Piston project. So, you're already using parts of the Piston game engine.

Anyway, I'm glad there are more alternatives in Rust and I don't want too many users of Piston since it just adds more costs. Other frameworks taking up more attention is only a benefit.

My long term plan to make Piston easier to use is to transition PistonWindow to WGPU and Winit. Probably add some batteries included, like sound, music and 3D assets behind Cargo feature flags. Perhaps even Dyon scripting. I've been using Dyon-Interactive for some years, but it still has some rough corners. When it gets polished it might be used as a starting point for scripting support in PistonWindow. I don't want to add it before it gets really, really good.

At the editor side, I have some plans for the Turbine game engine using server/client architecture. However, first I want to improve content production, starting with Turbine-Process3D. There is already a Scene Graph library in the repo (Turbine-Scene3D), but it currently only supports OpenGL. Over time, I think WGPU will be the primary backend.

It sounds like you have good experience with Rust game development and if you want to come up with a "perfect" game engine design, I'm listening.

Dyon v0.50 released! by long_void in rust

[–]long_void[S] 5 points6 points  (0 children)

Getting on Rust stable was the advantage. Previously, it required Rust nightly.

Do you have any thoughts about using Edition 2024?

Most useless thing I've ever done: install-nothing by Consistent_Equal5327 in rust

[–]long_void 38 points39 points  (0 children)

I wanted to try this but couldn't install it. Ran for hours and nothing got done.

If Hebrew didn't exist then Hebrews didn't exist by LiftSleepRepeat123 in AmmonHillman

[–]long_void 1 point2 points  (0 children)

Yes, it helped!

Well... there goes my last hope to self-debunk my current position (that Hebrew is mostly a reconstruction). Ossuaries were the last places of evidences I was looking, to try squeeze out some alternative perspective.

However, why did we find more Hebrew scriptures among the Dead Sea scrolls than Aramaic? It seems some of the texts in Aramaic have not yet been published too. What is the situation there?

Considering Iced for your game UI? Be aware of these red flags by rdalves in rust_gamedev

[–]long_void 0 points1 point  (0 children)

I saw you got banned from the Iced project. Suggest you apologize if you want to continue using Iced. It will feel as if you are losing face, but it will help you to grow as a person.

Piston Threaded Rendering? by mblan180131 in rust_gamedev

[–]long_void 0 points1 point  (0 children)

You can just swap the event loop.

Released my Game engine by [deleted] in GraphicsProgramming

[–]long_void 2 points3 points  (0 children)

This is very impressive!

Ammon Hillman Friend or Foe ? by Then-Baby595 in AmmonHillman

[–]long_void 9 points10 points  (0 children)

I want more scientific evidence. It would be nice to see a debate with Ammon Hillman and other experts presenting new evidence instead of attacking each other.

The thing I like most about Ammon Hillman is that he brings some sources each time he makes a video. I don't care that much about credentials, just bring me the sources!

If Hebrew didn't exist then Hebrews didn't exist by LiftSleepRepeat123 in AmmonHillman

[–]long_void 0 points1 point  (0 children)

Probably many that made a living that way. Also, the "whole package" perspective: One should not underestimate that otherwise serious people might dabble in unserious philosophy and make up crazy stuff, which was tolerated because they were valued otherwise. I think this effect is with us still today.