Jump to content

Hyrule Conquest


Recommended Posts

For those unfamiliar with Hyrule or the Total War version of my game, here's a list of the factions that I'll be porting over and a brief summary of their armies and abilities:

  Reveal hidden contents


 

Edited by The Undying Nephalim
  • Like 4
Link to comment
Share on other sites

I'm having a bit of a problem using this for my land-to-water units:

<Position>
 <Floating>true</Floating>
</Position>

The problem being that they walk on top of the water rather then in the water:

  Reveal hidden contents

Is there perhaps a way I can add a new animation class, perhaps called "swim" that triggers if a unit is on water? I'd really love to have swimming animations for my aquatic units rather than walking and running on water.

  • Like 1
Link to comment
Share on other sites

Right, this works for ships because those extend below ground, but for units that would need work. Care to open a ticket on trac for that? I suppose we should just add a floating depth so that units walk up to a certain depth and only then start floating at that depth. Making the animation differ if the unit swims shouldn't be to hard given that cmpVisualActor's Update already accesses cmpPosition.

All of that is going to need C++ changes though, so you will have to start using the development version.

  • Thanks 1
Link to comment
Share on other sites

If that's not to hard I guess I could do it with some help of the devs. If I'm not mistaken it should be a couple of ifs a call to setanimation, and a new anim name, and some xml schema editing. 

Would be nice to find a usage for the main game aswell. Maybe @wowgetoffyourcellphone will have some ideas.

Edited by stanislas69
  • Thanks 1
Link to comment
Share on other sites

  On 27/08/2017 at 10:17 PM, leper said:

All of that is going to need C++ changes though, so you will have to start using the development version.

Expand  

I'm going to have to wait on getting aquatic units looking properly then. I intend to have a full public release of the first two factions in the next month or so and a shift to the dev version might make it too hard for casual players to download and play the mod. Unless of course 0AD plans on releasing a new version sometime in the next month, but I suspect not since they just released 0.22 a month ago.

Edited by The Undying Nephalim
  • Like 1
Link to comment
Share on other sites

Forums are not letting me edit my last post to combine this and avoid double-posting, my apologies

  On 27/08/2017 at 11:17 PM, stanislas69 said:

If that's not to hard I guess I could do it with some help of the devs. If I'm not mistaken it should be a couple of ifs a call to setanimation, and a new anim name, and some xml schema editing. 

Would be nice to find a usage for the main game aswell. Maybe @wowgetoffyourcellphone will have some ideas.

Expand  

What files control animation conditions?

Link to comment
Share on other sites

https://code.wildfiregames.com/D842 should take care of the floating at a certain depth part. (No tickets, since others also didn't create any :P)

About animations it should need a new anim (and names for those), and either using the animation overrides for the walk animation from JS (though we might have to check the current position a lot), or extend cmpUnitMotion to check if cmpPosition is actually floating at the moment (and maybe taking care that that check doesn't mess up the plane).

Link to comment
Share on other sites

Well, I've gotten most of the units for the second civ (The Gerudo) and their animations in the game:

KxqS2I8.jpg

Here's a bit more details on their units:

  Reveal hidden contents

And some more screenshots of their unit variations:

  Reveal hidden contents

 

  • Like 5
Link to comment
Share on other sites

  On 28/08/2017 at 12:04 AM, The Undying Nephalim said:

the dev version might make it too hard for casual players to download and play the mod

Expand  

Of course, since 0 A.D. is open-source and licensed the way it is, you don't actually need to have players download and install 0 A.D. first.  You could redistribute 0 A.D. alpha 22 with your mod included as Hyrule <version>, or even redistribute the development version along with your own content.

Link to comment
Share on other sites

I have a few questions on some things I can seem to figure out"

1. How can I edit the turn rate of units so they are slower? I tried messing with this:
  <Position>
    <TurnRate>47.0</TurnRate>
  </Position>
But my units still seem to turn almost instantly instead of slow and smooth.

2. Is there a way to change how quickly a specific projectile vanishes after it hits the ground? I have a few magic based attacks in the game that linger around on the ground too long after they hit. Some I need to vanish instantly like lightning bolts.

3. Is there a way to control the flying arc of certain projectiles? Some of my magic based attacks should not be arching through the air like arrows. My lightning bolt attacks should fly in a straight line at targets.

4. This was brought up earlier, but what file controls animation sets and definitions? The file that controls things like "Idle", "Walk", "Run", Attack_Ranged" etc. I can't seem to find any file that defines these and I'd like to create a swimming and spawning set for animations.

5. What file defines and controls damage types like Hack, Pierce, etc? I'd like to add a Magic damage type and resistance to.
 

  On 01/09/2017 at 10:47 AM, implodedok said:

Of course, since 0 A.D. is open-source and licensed the way it is, you don't actually need to have players download and install 0 A.D. first.  You could redistribute 0 A.D. alpha 22 with your mod included as Hyrule <version>, or even redistribute the development version along with your own content.

Expand  

I might end up doing that then. Sometimes the fact that 0AD is open source slips my mind. :o

 

Edited by The Undying Nephalim
  • Like 1
Link to comment
Share on other sites

  On 01/09/2017 at 7:03 PM, The Undying Nephalim said:

1. How can I edit the turn rate of units so they are slower? I tried messing with this:
  <Position>
    <TurnRate>47.0</TurnRate>
  </Position>
But my units still seem to turn almost instantly instead of slow and smooth.

Expand  

You should be able to take some clues from ship templates, they don't turn indefinitely fast as well

Link to comment
Share on other sites

  On 01/09/2017 at 7:08 PM, niektb said:

You should be able to take some clues from ship templates, they don't turn indefinitely fast as well

Expand  

I'm looking at the ship templates, the only clue I can find is in template_unit_mechanical_ship, the same thing I posted:

  <Position>
    <Floating>true</Floating>
    <TurnRate>3.0</TurnRate>
  </Position>

No matter how high I change the turn rate all my units spin almost instantly.

Link to comment
Share on other sites

(Oh, how I like writing posts again because the forums have issues.)


Now inside pre tags, interpret bbcode yourself, the forums apparently cannot.

[quote]
2. Is there a way to change how quickly a specific projectile vanishes after it hits the ground? I have a few magic based attacks in the game that linger around on the ground too long after they hit. Some I need to vanish instantly like lightning bolts.
[/quote]
The delay is hardcoded in cmpProjectileManager (C++) currently, however you could pass an additional parameter from cmpAttack to cmpDamage's MissileHit and call RemoveProjectile there even if it was a miss.

[quote]
3. Is there a way to control the flying arc of certain projectiles? Some of my magic based attacks should not be arching through the air like arrows. My lightning bolt attacks should fly in a straight line at targets.
[/quote]
Needs a small JS change in cmpAttack (and to the schema, and the templates that need a different gravity value) to allow passing a custom gravity value to LaunchProjectile. This would also allow things like mortars or ICBMs.

[quote]
4. This was brought up earlier, but what file controls animation sets and definitions? The file that controls things like "Idle", "Walk", "Run", Attack_Ranged" etc. I can't seem to find any file that defines these and I'd like to create a swimming and spawning set for animations.
[/quote]
Available animations are defined in the actors. When those get used is handled by some intersection of cmpUnitAI and cmpVisualActor.

[quote]
5. What file defines and controls damage types like Hack, Pierce, etc? I'd like to add a Magic damage type and resistance to.
[/quote]
cmpArmour and cmpAttack. Though neither of those is very nice to extend currently. That doesn't mean that you cannot extend it, but it is quite likely to require more work to maintain than should be needed.
  • Like 1
Link to comment
Share on other sites

I've got another question. I sort of expected this to happen, but when one of my two factions is an AI player the AI does nothing and continues to post a looping error:

<p class="error">ERROR: JavaScript error: simulation/ai/petra/headquarters.js line 1452
TypeError: gameState.getTemplate(...) is null
  m.HQ.prototype.buildMoreHouses@simulation/ai/petra/headquarters.js:1452:17
  m.HQ.prototype.update@simulation/ai/petra/headquarters.js:2237:4
  m.PetraBot.prototype.OnUpdate@simulation/ai/petra/_petrabot.js:119:3
  m.BaseAI.prototype.HandleMessage@simulation/ai/common-api/baseAI.js:64:2</p>
<p class="error">ERROR: JavaScript error: simulation/ai/common-api/resources.js line 33
TypeError: that is undefined
  m.Resources.prototype.add@simulation/ai/common-api/resources.js:33:3
  m.QueuePlan.prototype.getCost@simulation/ai/petra/queueplan.js:53:2
  m.QueueManager.prototype.startNextItems@simulation/ai/petra/queueManager.js:367:38
  m.QueueManager.prototype.update@simulation/ai/petra/queueManager.js:407:2
  m.PetraBot.prototype.OnUpdate@simulation/ai/petra/_petrabot.js:121:3
  m.BaseAI.prototype.HandleMessage@simulation/ai/common-api/baseAI.js:64:2</p> 

I'm going to take a guess and say that the AI is not able to determine which building is the Civic Center? Regardless, anyone have an idea of why this might be happening?

Edited by The Undying Nephalim
Link to comment
Share on other sites

  On 02/09/2017 at 5:36 AM, Arcana33 said:

Maybe it has to do with Petra has an order to create more houses but it can't find these ?

Expand  

Yeah it looks like this line is the problem:

        let plan = new m.ConstructionPlan(gameState, "structures/{civ}_house");

       I checked in the config.js file, and put this in:
    

this.buildings =
    {
        "ai_buildfield": {
            "default": [],
            "hylian": [ "structures/hylian_farmsteadA" ],
            "gerudo": [ "structures/gerudo_pigfarmA" ]
        },
        "ai_buildhouse": {
            "default": [],
            "hylian": [ "structures/hylian_housesA" ],
            "gerudo": [ "structures/gerudo_housesA" ]
        },
    };   

      and then changed the headquarters line:
    

        let plan = new m.ConstructionPlan(gameState, ai_buildhouse);    

        
However it still doesnt seem to work. Is there something I'm doing wrong here? All of my factions use radically different buildings that use very different templates, so they can't all use the {civ}_building naming method.
 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...