Jump to content

wadaltmon

Members
  • Posts

    109
  • Joined

  • Last visited

Everything posted by wadaltmon

  1. wadaltmon

    Edge detection filter

    Basically the basis of a cell-shading filter. Would be funny to see on (seemingly?) a Doom Hellknight.
  2. Create graph nodes at each intersection/along the roads' curves. This is oftentimes able to be done automatically with many game engines; although RS's is proprietary, I expect they have such a tool. Give each person a start node and a destination node (or start point and end point, and determine the route to/from the nearest node for each), run the A* or another pathfinding algorithm to find the shortest path from one place to another, save that succession of nodes as some kind of structure on each driver (linked list works best conceptually imo). Do all that serverside for the online play so you always have plenty of processing power. In single player, do that solely for the ones that are visible on screen. Add in some graphical smoothing for the driving so it's not choppy, add in some handling for when you attack or threaten them (start a running away procedure when attacked, after a certain amount of time, assess if there's still a threat, continue running away or go back to trying to get to the destination if not). That's probably just about the basics of it. There's certainly a lot of little nuances that RS took to make it more realistic. Stuff like using a weighted graph system for allowing pedestrians to run in the street, but not prefer to, perhaps. And I expect a complex state machine to govern their mood, current objective/destination, etc.
  3. I'm excited to see support for the Quest. Being able to test standalone without having to have it hooked up to the PC would be nice as I do with... another engine that starts with U. It would be good to also support the camera-based hand tracking the Quest can do, but support on Oculus/Meta's end has been finicky for it too.
  4. I remember back when GameMaker was older (started using it when I was 13, so that's a long time ago now, that was around the time version 8 was coming out), the model was that you could do almost everything with the exception of a few functions that were locked behind the Pro version (most notably all 3D functionality was disabled). The big thing was that you could not create a standalone executable for your game, you had to run it out of the IDE. Maybe that should be part of the Ultra model - let people use the tools to play around, but don't let them create a standalone executable or publish the game without paying the subscription. The subscription basically then functions as the recurring price for distributing the game.
  5. Perhaps using Unreal as "the big guys" was a bad idea. Unity kind of fulfills the same role in my comment. I hope your confidence yields some stellar results when this is released.
  6. Knowing what I know from working in the software industry (as well as having friends in game development, having interviewed for the roles, and constantly getting emails from recruiters about said roles), the main draw of the most popular 3D engine at the moment (Unreal) is that it has crossover potential. Out of the box, you have something that anyone of any skill level can pick up and use. (Even if this isn't what you're going for, or you specifically market to a skilled/experienced crowd, this is still the case.) While this seems like they're pandering a great deal to children with rich parents who will absentmindedly pay the subscription fee (they are, but that's not the point), they also want a full team to have the highest accessibility to their product as possible. An artist, a level designer, a programmer, and an intern off the street could all open UnrealEngine.exe and have something working within their respective fields within a matter of minutes. There's also the point that Unreal Engine (Epic Games) knows how to sell itself. I'd hate to see another comparison that clearly shows Ultra as the winner only for someone to say "w-well, it doesn't have Nanite!" These are the types of things that the "little man" tech news channels tend to latch onto, and collectively their reach is great, and largely to those who have about as little knowledge on the subject of game engines as they do. The point of me saying this is that to attract both the Leadwerks users and the enterprise users, you will likely have to do a lot of work on presenting this engine in an aesthetically pleasing a manner as possible, as well as provide toolsets that can be used seamlessly by those people. I hate the fact that people will defer to their lizard brain and just go to the flashiest coolest thing possible, but I can say it's better to have some semblance of this initially and let people discover on their own how capable your engine is than to try and wow people with the more technical only for it to push people away.
  7. I'm interested to see how a legit demo will fare with this early engine version.
  8. wadaltmon

    Editor WIP

    Are those vpks I see? Able to access models and other resources therein?
  9. Displayed as intended, but once I closed it, Windows Defender recognized it as a trojan and automatically deleted the exe.
  10. The mention of Code::Blocks on Linux triggered my fight or flight response. Horrible times with that in college. That was on 16.04 though; looks like Linux/Ubuntu has developed pretty well in the meantime. If we get Ultra Engine on Linux, could be fun to try and dual boot and develop for cross platform.
  11. In the context of UAK in a vacuum, C#/Lua (though it wouldn't be for me, I just know a lot of people would benefit). EDIT: Should've added before, if the choice is on the table, I'd rather see the 3D engine before more UAK stuff.
  12. And this becomes the case just by setting the physics mode to Entity::CharacterPhysics (2) and the collision mode to Collision::Character (3)? It continues even when using a different collider than the default?
  13. The SetInput function interests me, as it seems like it has a lot rolled into it that allows it to take the place of many lines of code, but doesn't block other functions from working in tandem with it. There are a few functions that it overrules (as stated in the documentation), but it provides acceleration, velocity, and rotation for a character while seemingly also overriding the default physics behaviors associated with force applied to a Model or Entity with a given collider applied. On that note, it also seems that it doesn't give you a maximum velocity; for if I use the SetInput function but also apply an extra force in a given direction, I can give that object a boost for a short time before the force dissipates. Anyone know of the equivalent code for SetInput? It seems to go beyond just AddForce(), SetRotation(), and/or SetVelocity(). Is it maybe a Move() function with some math to determine things like acceleration?
  14. Now these new collision functions are top tier. Exactly what I'm looking for. Would love to get a chance to beta test and try them out.
  15. I think that's what @JMK was referencing above, though directly via the Newton objects rather than through the Leadwerks collision API. Doing it as you suggest wouldn't give me the collision information, though, I believe - I'd still end up having to do multiple raycasts on each side to determine if the player is wallrunning. It seems like with the above mentioned new LW5 functions, I'd be able to know the closest point in the overlapping area of the collision shapes, and enact a single raycast from the center of the player object to that point to get the Face*, find the normal (at least, I'm presuming I can get the normal from a Face easily), and proceed to do the requisite simple vector math to find if the player should be wallrunning or not. Without the API support from the physics system, though, it precludes any avoidance of many raycasts every step (especially if I want to go beyond flat wallrunning and allow them to run on curved surfaces as well - which is a big goal of mine!)
  16. If I want to get LW5 beta access/begin a subscription, how can I go about doing so? Can I opt in somehow?
  17. I am not a beta tester, but if these functions are in the Turbo/LW5 beta, I'd certainly like to be. Is there a way I can opt in?
  18. If I create my player's model by Model::Create(), is the Shape associated with that of a known size and type? Can I use that shape? If not, how do I change the shape of the collision model for the player without making a visible model that follows the player around all the time? I tried making a Shape* Cylinder of a given size, and using playerObject->SetShape(), but that didn't seem to change the collision model - it only created a separate visible model.
  19. This is a bit distinct from my problem, though. Take a look at the wallrunning in Titanfall: Once you come in contact with a surface, you're essentially attached to that surface for the time being. And this can be done from any direction - right side, left side, front and back (any direction in 360, in fact). I wanted to avoid having to use several raycasts all around the character at all given times, as the performance might be affected.
  20. Hello, Currently, I'm trying to implement a wall-running system, similar to the Titanfall games, in C++. The way I've thought it should work is to create a "cage" for the player (if the player is a cylinder, then create a cylinder slightly larger as the cage) and detect whether it is colliding with/overlapping another mesh, then if so, create an anchor point at the point of collision. Then, I can use a bit of math and raycasting with the normals of the ensuing surface to figure out the direction the player is moving and where they will end up next, but that part comes later. The main issue I'm having is actually creating these cylinders, and actually finding out the collision information. I can create a model for the player like so: Model* player = Model::Create(); So, if I wanted the player to be a cylinder, I could create: Model* player = Model::Cylinder(16); player->SetPosition(0, 4, 0); Model* cage = Model::Cylinder(16); cage->SetPosition(0, 4, 0); But this doesn't allow me to resize the objects. Furthermore, I'm wondering if Leadwerks has a way to obtain collision information in realtime on-demand. Is there something similar to the Pick system, allowing me to store collision information to a structure to check the point of collision? How would I change the collision type to make sure that my player still collides, but the cage doesn't?
  21. are Interact, Jump, and Throw method names, or are they constants?
  22. Interesting. So how does it read the different materials individually? Does it just read the different channels per pixel and interpret them individually? EDIT: Nvm, you literally said that in the first post
  23. What does a single map of this kind look like? I can't find any examples.
  24. wadaltmon

    Evolution

    That's exactly how I feel too. Creating a feature in C++ is easy, it's just finding the actual commands to interface with the API you're working with.
×
×
  • Create New...