Skip Navigation
sudoreboot Ravn @lemmy.ml

Swooping

Posts 29
Comments 6
What's a foreign movie you want to watch but you can't because it's too obscure to have any sort of translation?
  • Lots of Chinese stuff that lack subs. Often it's only available on bilibili, too.

  • Is there anything like nix for mobile devices?
  • Yeah on mobile it is definitely needed. On desktop I don't mind as much (but I'm often lazy so instead of properly adding to my system config I just keep nix running instead). On mobile there's no way I'm going to fumble around with nix expressions in a text editor.

  • Pharma ads
  • It's this weird US thing

  • Popular Nintendo Wii U Game Emulator ‘Cemu’ Plans to Go Open Source with Support on Linux
  • Why would they crack down specifically when it's open sourced? I could see why they would do it before it goes open source though. Once it's out there it'll be hard to prevent the continuation of the project

  • This Week In Veloren 121

    veloren.net Veloren

    Meat, design overhauls

    Veloren

    > This week, we see lots of design changes to many systems. We hear about how this what is going on with the crafting and loot systems, as well as planned improvements in the combat fields. > > \- AngelOnFira, TWiV Editor

    0

    This Week In Veloren 120

    >This week, we have some nice visuals to check out. We also see some updates to the minimap. > > \- AngelOnFira, TWiV Editor

    0

    This Week In Veloren 119

    veloren.net Veloren

    Physics overhaul

    Veloren

    > This week, we take a deep dive into the recent physics overhaul with @lboklin. We also see improvements in the moderations, translation, and skill systems. > > \- AngelOnFira, TWiV Editor

    0

    This Week In Veloren 118

    veloren.net Veloren

    Glider, maps, UI

    Veloren

    > This week, we see an amazing video of the new glider changes. Work is being done with audio, UX/UI, economics, maps, and lots more. > > - AngelOnFira, TWiV Editor

    0

    This Week In Veloren 117

    veloren.net Veloren

    Compression, birds

    Veloren
    0

    A taste of what's to come for gliders

    With my work on some basic physics and fluid interactions (buoyancy and aerodynamic drag), I've moved back to working on aerodynamic lift. The video shows the current state of gliders relying only on generating aerodynamic lift based on wing properties. (This also works for birds, but they can only glide, not generate lift by flapping.)

    0

    This Week In Veloren 113-116

    veloren.net Veloren

    The Veloren devblog website

    Veloren

    I haven't kept up with the weekly articles lately, so here they are:

    • https://veloren.net/devblog-113/
    • https://veloren.net/devblog-114/
    • https://veloren.net/devblog-115/
    • https://veloren.net/devblog-116/
    0

    This Week In Veloren 112

    veloren.net Veloren

    0.9 release

    Veloren
    0

    Luckily nobody was relying on this trade route

    0

    This Week In Veloren 111

    veloren.net Veloren

    Network, AI, physics

    Veloren
    0

    Veloren 0.9 release party today (20th of March) at 18:00 UTC

    We're holding a party to celebrate the release of pre-alpha version 0.9.

    Since the game is continuously kept up to date with current master, the update itself won't bring anything new that isn't already available right now. However, lots of new features and fixes have been added since 0.8. Check out the weekly updates on the website for more info on what's been happening lately!

    https://veloren.net

    Join us in-game and/or on Matrix: https://matrix.to/#/#veloren:matrix.org

    If you would rather use Discord you can find the link on the website.

    0
    Writing Prompts @lemmy.ml Ravn @lemmy.ml

    The expansion of our universe is not simply accelerating, it is accelerating erratically. It is now measurable within our own solar system.

    0

    This Week In Veloren 110

    veloren.net Veloren

    Fireworks, sceptre, and trade

    Veloren
    0

    This Week In Veloren 109

    veloren.net Veloren

    Sites, trading, and assets

    Veloren

    This week, we have many writeups. We hear from @zesterer, @Christof, @Sarra_Kitty, @Sam, @VincentFoulon80, and @aweinstock.

    • AngelOnFira, TWiV Editor Contributor Work

    Thanks to this week's contributors, @Sam, @Slipped, @ccgauche, @heydabop, @xMAC94x, @imbris, @Lerg-exe, @aweinstock, @zesterer, @Snowram, @Pfau, @Timo, @Sarra_Kitty, @nwildner, and @AngelOnFira!

    As we prepare for the 0.9 release on March 20th, we've seen many changes getting merged. This week @zesterer worked on a site overhaul. @Christof has been continuing work on NPC merchants. @Sarra_Kitty has been improving the number of models that are in the water. @Sam made many changes around buffs and combat. @aweinstock has been continuing work on player-to-player trading, as well as modular weapons. @VincentFoulon80 has been working on icons for skill trees.

    Site Overhaul by @zesterer

    I've been working on the new site overhaul. As part of that, I'm working on a generator system that allows other developers to define their own structure generation rules with a system similar to CAD-style CSG (Constructive Solid Geometry). CSG is pretty great because it allows you to define your geometry using simple primitives and then combine them using boolean operators to produce new geometry.

    This new approach comes with a few notable advantages:

    • It's much easier to define your own geometry than the old sample-based API that required a lot of boundary logic and reasoning in multiple coordinate spaces.
    • It's 'backend-agnostic'. Although right now we're 'rendering' the geometry into blocks, it might be possible to render it to other outputs in the future such as low-poly geometry for the LoD system.
    • It's modular and independent of the underlying structure of the building, so you can take a CSG-style structure and adjust it to fill whatever dimensions you require and the system can adapt accordingly

    I've also been working on the layout of sites themselves. The new site system uses a tile-based grid for positioning 'plots' (buildings, roads, etc.). Each tile is 7x7 blocks and belongs to exactly one plot.

    This system is much more flexible since plots may define their own generation rules independently of other plots which makes modularising the generation code much easier and lowers barriers for other developers wanting to work on world generation.

    It'll also allow us to generate sites that take almost any structure we want, mixing and matching elements throughout history simulation as appropriate. We could, for example, generate a town with a castle-like perimeter wall, a fortress with a dungeon in the middle, or a port village surrounded by ruins.

    Because the only thing required to tie these elements together is the plot-based tile grid, the work required to allow different procedural elements to work together is significantly reduced and the brunt of the work now gets placed on the layout generator rather than the generators of the individual structures themselves.

    Trader NPCs @Christof

    I modified the town spawning code to generate merchants. They wear nice colorful armor, carry some local wares - determined by local economic numbers - and accept trading invitations. It makes use of the recent user interface additions by @aweinstock. Unfortunately, I will need to adjust the wares and balance the prices before this gets ready for inclusion into the game.

    Here is an updated merchant screenshot. A less beautiful merchant, but much nicer wares: a bag for each, filled with armor, weapons, craft material, food, potions. Side note: This town has spent all its coin in other markets, so they will gladly accept coins, but if you sell items they can only offer goods in exchange.

    Assets for Water by @Sarra_Kitty

    I implemented the spawning of coral reef and kelp forest sprites in all bodies of water at or below the world sea level. They are temperature-dependent, and the two environments transition between each other if the climate changes.

    Additionally, I added seagrass patches that can spawn along the coast, the grass actually spawns in the water, but pokes out above it, so it gives a nice transition from land to the sea. In the future, there will be more content underwater, new mobs, generated structures, and also plants and scenery for freshwater ponds and lakes that generate inland above sea level as well.

    Compared to what we had before with barren seafloor, this is a massive improvement and makes for a lot more of a welcoming environment underwater for players to explore. There already should be seashells scattered rarely around, for you to find, and I plan to add more you can do to keep the underwater areas fun and interesting, not just pretty to look at. Hopefully, we can give the lakes and ponds inland the same treatment soon.

    Lots of Work by @Sam

    I've changed the saturation buff from food to queue. This means that only the currently active saturation buff will tick its duration, and any inactive ones instead wait until they are active before their duration begins to tick.

    I finally integrated some sword and bow models that Gemu had created multiple months prior. Most of the previous sword and bow models were replaced.

    I've also changed how auras apply buffs. Instead of applying a buff only when an entity does not already have a buff of that kind and then applying the buff every second, it instead applies the buff and then doesn't tick the duration for that buff until the entity is no longer in range of the aura.

    I've added a combo component to the player (and other entities). Instead of combo melee scaling its combo only within that attack state, it instead increases the combo in the component. Combo then resets to 0 after 5 seconds of not increasing. This has a few advantages, but the one with the immediate effect is that the sword, axe, and hammer can retain the advantages of having some combo when you use an attack that isn't combo melee or when you stop attacking for half a second. It will also allow us to use combo for different things as well, including the potential to use combo as a resource for some attacks.

    I also fixed torvus a couple times when it broke earlier this week.

    Skilltree Icons @VincentFoulon80

    I finished implementing the new icons onto the skill tree. I also added the main and secondary attack as dummy skill at the center of each sections (top-left and top-right). I think these additional icons are handy to find out which skill you will improve.

    Trading and Modular Weapon Update by @aweinstock

    Regarding trade, I implemented the ability for each party to see the counter party's inventory and request items from it by dragging them into the trade window. Since trading works on any entity with an Inventory and a Controller, it should work with NPC merchants as soon as their AI (Agent) emits the Controller actions corresponding to trade. I also added a coin item, and made some finishing touches to @heyzoos's item stack splitting MR that allowed it to be merged.

    Regarding modular weapons, I added support for making the stats of a weapon or weapon component different based on the materials it's made out of, so a generic claymore blade recipe and a generic scimitar blade recipe can each make (bronze, iron, cobalt, etc) blades of the corresponding type, which can then be added to any hilt.

    Flying sky-high. See you next week!

    0

    This Week In Veloren 108

    veloren.net Veloren

    Modular Weapons

    Veloren

    This week, we see many contributions merged as we move towards the 0.9 release. @aweinstock gives a little insight into what modular weapons will look like.

    • AngelOnFira, TWiV Editor
    0

    This Week In Veloren 107

    veloren.net Veloren

    Trade Systems

    Veloren
    0

    This Week In Veloren 106

    veloren.net Veloren

    Github mirror, giant trees

    Veloren
    0

    This Week In Veloren 105

    veloren.net Veloren

    Travelling merchants, attack rework

    Veloren
    0

    This Week In Veloren 104

    veloren.net Veloren

    2 Years of Devblogs

    Veloren
    0
    creative Ideas on content or ways to use Gemini
  • I want an auto-convert of eligible web articles into gempages. Especially for articles posted here on Lemmy. I dislike clicking weblinks because of the state of the web, so I rarely read the articles.

  • This Week In Veloren 103

    veloren.net Veloren

    The Florabite, CI

    Veloren
    0
    Is there anything like nix for mobile devices?
  • There is the Mobile NixOS project, but I don't think it's ready for daily use yet.