Journals

Overfloater1 week ago2024-04-17 18:31:10 UTC 4 comments
Some might've noticed I've been absent on the Pathos Engine channel of the TWHL Discord. I've been dealing with some problems in life and for the sake of my sanity I need to take some time off from the project. Yes, again, and this time for a bit longer. If you have any burning issues, please e-mail me at doommusic666@hotmail.com or submit an issue on the Pathos repository. Until then, take care.
Overfloater1 month ago2024-03-12 18:29:38 UTC 2 comments
So with the open-sourcing of Pathos being more successful than I expected it to be, and after fixing bugs and other issues and having a bit more of a stable build available on GitHub, I've decided to take a bit of a break. Truth is I've spent the last few months working tirelessly on Pathos(and by extension, my game), and I've hit a bit of a burnout. Spending hours upon hours on one bug I couldn't fix yet made me realized, I've become a bit obsessed with it.

What does this mean? Basically, I will be online less, and I will be taking a break from working on Pathos for a little bit. I'll still check any issues that are reported, from time to time, but I will be unresponsive for a bit. So if you find any issues, please raise it on GitHub so I can track it easier.
Overfloater1 month ago2024-03-06 21:20:08 UTC 5 comments
So... I didn't think I would crunch this hard, but I did it. I spent the last few days working tirelessly on the public release of Pathos, to remove spoiler code and content, to remove as much Half-Life content as I could, and to write documentation. After all that blood and sweat, I present to you, the public release of Pathos on Github:

https://github.com/TheOverfloater/pathos-public/tree/main

This includes the files required to run the game, along with some example levels, example NPCs and models. I have decided that for now, I will not include the custom Hammer editor I use due to obvious reasons. I recommend using JACK, but more is explained in the readme.

I hope you find it useful, and enjoy.
Overfloater1 month ago2024-03-05 16:00:33 UTC 3 comments
I've been contemplating this for a while, and I've recently come to the decision that I will be open-sourcing the Pathos Engine. After the experience of needing to maintain and provide fixes for Trinity back in the day, I was put off by the idea of having to do the same all over again, while at the same time being busy with the process of creating a video game as a one-man team.

For those who do not know exactly what Pathos Engine is: Pathos is a Quake-like game engine heavily inspired by GoldSrc. It offers extended limits, better graphics and better performance, support for HD textures, vertex weights, normal mapping, specular highlights, dynamic lighting with shadows, and a lot more. This all without any copyrighted code attached to it. Unlike Xash, it does not rely on Half-Life code at all. Everything was reproduced with a clean-room approach while referencing the Half-Life SDK and ReHLDS, as well as the Source SDK.

This means that while the game is very similar to Half-Life and Quake, it is not the same engine. And as far as content is concerned, you are still not allowed legally to use Half-Life code and content in Pathos. Pathos is not compatible with GoldSrc mods, and attempting to run such content on Pathos will cause issues.

I have several videos on my YouTube channel which show Pathos's development progress, and new features:
https://www.youtube.com/playlist?list=PLQnXkjA1l7uamgh8_ZnrFPSQxm1Kr91oA

I have already begun work on an open-source version of Pathos, one which is missing most if not all game specific code and content that would qualify as spoilers, or placeholder content I do not on, which I cannot just release. This version of the engine will offer the same expand-ability and functionality as the one my game uses.

However, I also believe that Pathos can offer the community a lot, in the form of a perfectly legal engine replacement for GoldSrc. People have become more and more frustrated with recent updates to GoldSrc, in which Valve still refuses to provide useful updates, such as upping the model limit and the AllocBlock limit, for example.

For now the current hurdles I am facing are the following:
  1. The need to ensure that no content remains which would act as spoilers for the game I am building on Pathos.
  2. Removing content that is not needed for the example game to run.
  3. Removing Half-Life 1 textures, sprites, sounds and models.
  4. Writing documentation for each entity in the game.
  5. Writing a comprehensive credits list.
Currently I have already accomplished tasks 1 and 2 mostly, but there's still work to be done. The remaining HL1 textures and models will be wiped clean from the code with proper replacements provided. This part is not that big of an issue, but it will take time to do so.

As far as entity documentation is concerned, this will take a bit of time to accomplish, same for the credits list.

So when will the release happen? I can't provide a deadline, as the amount of work left to be done is not small, and I need to make sure that legally, Pathos is covered and won't end up like Xash when it comes to Valve.

Speaking of which...
  • The level editor
Pathos's model format requires a custom level editor, and currently there are no alternatives, other than the custom Hammer I use, which was based on the 2003 leak code. There have been previous examples of people releasing custom Hammer binaries(Hammer++) and Valve not really caring, but one thing which would be great, is to add support to TrenchBroom, however this again depends on how much time I am willing to sacrifice for this purpose. In all likelyhood, I will be providing the custom Hammer binary without any sources as part of the release.
  • The model compiler
Pathos uses a custom model format for model geometry data, in order to support vertex weights and facial animations. However, I am still using the original HLSDK studiomdl code, albeit heavily edited. I would prefer not sharing the source code for this until I have my own clean-room version for Pathos available. So until then, I will only supply the binary with the release.

So, I hope this has gotten people excited. I will try to get things out the door as soon as I can, but I can't promise anything in terms of timelines. I hope to keep you updated as this project goes on.

Edit: Decided to edit my opinion regarding JACK out. Regardless of me thinking it's the most likely scenario, that's still just like, only my opinion, so I'd rather everyone treated it as such.
Overfloater2 months ago2024-02-04 20:02:24 UTC 2 comments
So Valve's 25th anniversary update pretty much broke all custom renderers that would replace Half-Life's world renderer code, and that meant I had to jump into Trinity and apply some fixes. I initially thought I only had to change one engine structure, but oh boy, Valve had some surprises for me. Turns out they now use a variable which I previously used for storing indexes, as it was never used previously. I had to totally rewrite everything that dealt with that particular bit.

You can find it here:
https://github.com/TheOverfloater/trinity-engine
  • Abyss Engine
I also wanted to provide some updates on some stuff I spoke of in the Discord. As most of you know, Trinity eventually evolved into the Abyss Engine, used in Abyss-048 and Half-Life Episode Two, and now also a mod called Nohra's Concealment. This engine revision has improved code, such as studio models rendered in retained mode, and support for vertex weights. It's also an all-shader based renderer, which means it's far faster than Trinity was. It uses OpenGL assembly shaders, which means it has very wide support across different GPUs.
So why do I bring this up? I'm planning on revising the Abyss Engine and bringing it into a form that can be open-sourced. I will post that also on my Github page once it's done. My plan is to give it as part of a clean SDK much like Trinity, but that'll also require some work.
  • Reckoning Engine
The third and final revision of the engine is known as the "Reckoning Engine", which is what it became before I moved over to my custom engine, Pathos. Now the Reckoning Engine is a very different beast and it also breaks compatibility with some HL features, like switchable/animated lights, but instead it supports those features for dynamic lights. This revision of the engine is completely shader-based also, and uses GLSL. The list of features is way too long to discuss here, but things like a rudimentary facial animation system, variance shadow mapping, support for Paranoia's bump map data in the BSP, specular light reflections, etc are there. I plan on eventually open-sourcing this engine version as well. Opensourcing this version would be a rather difficult piece of work, but it's doable.
  • Raven City
I have been thinking of releasing the corpse- er, I mean, the most playable version of Raven City for those who might want to see this mod. Time here is a major factor, of which I don't have much when it comes to fixing some broken things to make it work. It also doesn't help that the mod is in some ways an absolute cringe-fest and I want to just remove some... really embarrassingly cringey crap from it. Another issue is that it requires a very specific version of Cg to work properly, which I need to dig up from somewhere.
  • Half-Life : Retail
I think it goes without saying that with the HL25 update, this is effectively cancelled, but I will probably upload the source code at least on Github, but I won't create a final release.
I started work on a mod called Half-Life Retail, which as the name suggests was aimed at bringing back the game to the condition of the original 1998 release, which had several features that the later versions do not. Namely:
  • Those old shadows, which were just the model flattened on the floor at an angle.
  • A different type of view model bobbing, where the effect wasn't like it is today(basically the same as Quake 1's).
  • Having fleshy hit sounds play as a sort of hit indicator when you shoot an NPC.
  • The old Quake-style view roll when you turn around while running, or strafing.
However, I also started toying around with some stuff I felt would be nice to have. Basically, one feature I added was to insert per-vertex lights into the game by relying on light.rad and the level geometry. Of course, I will make this toggleable via the options for those who do not want it. Another feature I also added over from the Raven Beta sandbox mod, is stencil shadows which are cast by these lights.

Another feature I have in mind is to allow gl_overbright to work both on models and the world. I dislike how flat lighting is in OpenGL, and this would basically fix that issue. This too of course would be toggleable.

Anyone interested in perhaps playing a release of this mod? If so, I will probably end up creating a github page for it and updating it there, but also releasing it here on TWHL, and perhaps ModDB. Not sure about the latter though.

Also if you have some other features from the original retail you would like to see, I'm all ears.
DNR
Overfloater1 year ago2023-02-22 22:12:32 UTC 0 comments
DNR
Overfloater1 year ago2022-08-26 13:15:20 UTC 1 comment
Hello everyone. I was thinking of this for a while now, but I thought I would give returning to TWHL another chance. Seven months ago I left because I had a ton of issues to go through, and I also felt like I didn't have any real reason to remain in the community, since I switched from working on Half-Life as a base to my own engine.

However, I must admit I want to give being part of a community another chance. I'm sorry for leaving all of a suddenly and just disappearing, leaving some people hanging in the air. I had by then a massive backlog of problems, and I really just needed to reduce my life to a size I was able to manage, and being in Discord felt... addictive at the time, I felt like I was wasting a lot of time I should've spent on solving problems or doing just anything healthier than distracting myself endlessly.

Now, I want to try and rejoin the Discord, without getting addicted this time. Hopefully, that'll work out.
Overfloater2 years ago2022-01-02 16:50:17 UTC 6 comments
I am not sure who will be reading this or even care, but I felt like putting this out there. I have been a member of the community on and off since 2005, and I had my checkered history. I came back a few years ago to try and set things right, and I think I managed to mostly remedy some bad decisions and actions. To try and do right by God, and God's will for my life, and by my own conscience.

However, after I have finished the Pathos Engine, I realized I don't really have any real reason to be in the Half-Life community anymore. I am working on a video game now, not a Half-Life mod. I however still sometimes produce content, like Half-Life models, etc. I might still post that here. However, I have decided it's time I moved on. For this reason I am leaving the Half-Life modding community, hopefully on much better terms than I tried to last time. I have deleted my Discord account also, to focus more on my creative work and job. I do my best creative work in solutide anyway.

I want to say thanks to everyone who was kind to me, and thanks to the people who gave me a second/third chance. I hope people enjoyed the content I created, and will enjoy any future content I create. I doubt I will return again, but if I do, well, we'lll see how it goes. Nothing in life is certain.

And for those I've left without a real explanation, let it be this: Sometimes there's irrevocable differences between two individuals which cannot be resolved, and I might not see a future for said relation. It is not my intention to leave on a bad note. I sometimes just don't see a solution, which might be an error in me.

In the meantime, I will try and realize what God has intended for me to do with the remainder of my life.

Thank you.
Overfloater4 years ago2020-04-01 06:03:56 UTC 3 comments
I'm just writing this journal to inform people that I've made some model packs for Half-Life, Opposing Force and Blue Shift, and released them here on TWHL. The models are completely free of any UV shifting or other such issues. The OpFor Glock has been vastly improved with a bunch of UV mapping issues fixed, and all the packs use the Blue Shift shotgun animations. The MP5 also had the bogus firing animation that was present in both Blue Shift and OpFor removed. The RPG also had the fidget animation fixed, so it no longer only plays halfway through.

Update:
  • The Python had it's speedloader fixed for all versions, and the reload sound plays properly now.
  • The crossbow's clip has been fixed, so the top of it is no longer invisible like before.
HD Gordon hands on LD view models for Half-Life:
https://twhl.info/vault/view/6401

LD OpFor Grunt models and sounds for Half-Life and Blue Shift:
https://twhl.info/vault/view/6402

Fixed and improved LD view models for Opposing Force:
https://twhl.info/vault/view/6403

Fixed and improved LD view models for Blue Shift:
https://twhl.info/vault/view/6404

Some screenshots:
LD OpFor MP5 for Half-LifeLD OpFor MP5 for Half-Life
LD OpFor grunts for Half-LifeLD OpFor grunts for Half-Life
Improved Desert EagleImproved Desert Eagle
Improved GlockImproved Glock
LD OpFor Glock in Half-LifeLD OpFor Glock in Half-Life
Blue Shift Shotgun animsBlue Shift Shotgun anims
Hope you enjoy using these model packs.

Edit: Uploaded the zip files to TWHL's vault