Jump to content

artoo

Community Members
  • Posts

    161
  • Joined

  • Last visited

Posts posted by artoo

  1. 2 hours ago, hyperion said:

    For me engine and game are two different projects

    Sure.

    I'd put the public mod in a repo, the source dir in a repo. Details to solve, art, specifically images may go in a repo too.

    Optionally, maybe mod gui specific stuff to be separated.

    I would place a bet on devs getting frustrated over time if images go in the source code repo.

    • Like 2
  2. 57 minutes ago, hyperion said:

    Git and binary handling: Well, the current binaries in tree and their history are a non issue when using git.

    I'd think that too from the file sizes of the images.

    A dedicated art/image repo might do, included with a submodule even.

    It takes probably 3-4 submodules given the current source tree, maybe more, depending on preferences.

    • Like 1
  3. 2 hours ago, maroder said:

    Having a lower barrier of entry doesn't mean you have to accept anything and it is totally fine to decline patches / pull requests when they don't meet the quality standard

    It is in fact totally up to the reviewers/upstream to merge, ie nothing gets in the upstream repo from a fork without explicitly merging it.

     

    Besides the technical decision what vcs to use, if the decision goes git, it is more or less a decision what self hosted server to use that suits best.

    Gitlab is little monster, builtin Ci, lots of features, same for github server, but there are also lighter ones providing the basics, really depends what is required.

     

    The main point of git, besides technical specs is considerable, that vast pool of devs and easy collaboration.

    No problem to include git repos hosted on another platform.

    • Like 1
  4. 30 minutes ago, bb_ said:

    Can someone elaborate on these? what these are? why we would care? etc

    I can try to break it down.

     

    Co authoring commits, there is an upstream repo, and there is a fork of that repo.

    Anyone can fork a repo with git, which is easy to keep uptodate with the upstream repo that is forked, the remotes. You can author a patch in a branch, and send a request to the upstream repo, chose a target branch, master or some feature whatever. Then the merge or pull request can be reviewed, and merged according a selected merge strategy. Or the review determines the PR requires some more changes in order to merge.

    This also works from a branch of the upstream repo, same concept, you can merge that branch into master branch or any other branch.

     

    What all these git servers provide is more or less just a web UI to git. It can all be done locally too and then pushed, ie merge branch 'super_feature' into master, or merge branch 'hotfix-123' into master.

     

     submodules are git's native way to include another git repo. Many people, including myself find these a PITA, but there are different ways, including a native git only solution of just using branches.

    In summary, it is a way to make from more than one repo one unified source tree.

    • Like 1
  5. Just now, Stan` said:

    Yeah submodules are generally a PITA. Mentioned them for the sake of the argument, because I believe more things should be split from the repo, which is not a consensus inside the team see the spoiler in the first post.

     

    Looking just from outside at the current project structure, if you migrate to git, reorganizing the project in git should be chosen wisely in my view in respect to the future repo sizes, commit history etc.

    I think it would be no fun to put the current source tree in git as is, accumulating tiny problems over time.

    I would probably consider an image repo for skins, textures, icons, portraits. If you wanted these included in source tree, probably git-subrepo would be the most painless solution. But even submodules might work for the purpose.

    • Like 1
  6. If you go git, I would probably use (a) dedicated art repo(s), ie separate art from code.

    Keeps the code repo small in terms of history compared to art repos containing images.

    Git has two builtin options to handle possible external repo inclusion, subtree and submodules, but in my view, both are a PITA. There is also a 3rd party solution that works, git-subrepo.

    • Like 2
  7. 5 hours ago, Stan` said:

    Some member of the team feels like we should keep with sovereignty by self hosting everything rather than using something that may go down . I'm currently looking at self hosting a Gitlab instance, hence merging all the services together (Jenkins, Trac, Phabricator) See some discussion here https://code.wildfiregames.com/D4155

    I am all for self hosting. Full agreement on that.

    We are using atm gitea instance & jenkins, but considerations to have gitlab are there.

    But gitlab eats so much more hardware resources.

    Its more like, if you stay with svn, maybe still try to use the vast GH or growing GL too for easy collaboration.

    Would be naturally easier if you moved to git though, that trying to glue git to svn.

     

    Btw, I like the engine has no steam depends or strange tar that may or may not work on linux.

  8. Another in feature in my view, that's nowadays quite important and missing from the "package" sofar, control sharing for teams.

    Just comparing some spring engine and features they have in eg zero-k.

     

    While at it, I think it would be beneficial to tap in the pretty big GH infrastructure and dev pool.

    Not a fan of GH since MS took over, but the PR workflow is rather uncomplicated in git. Maybe its worth considering how to get PR from your GH mirror back in the svn?

    As dev , you may have no strings attached to a project, but you may have right now time for a patch and send a PR.

     

     

  9. 4 minutes ago, Stan` said:

    I don't think it's gonna be a good idea as it will extend the footprint and might confuse players into thinking they are actually defense towers.

    Why would footprint change? Its roman siege wall footprint.

    The dubbed rammed earth wall would need wall towers and a small gate plus wall segments, its just swapping dae and then decide if they should/have turret slots?

  10. 9 hours ago, ymming said:

    Stone structure (pillar or tower) build in pairs outside the gate of city or building to express rank and prestige... 

    That's a nice idea, I wouldn't mind.

    Seeing these cool towers, atm, I have the roman siege wall models for the palisades.

    I was thinking there could be a smaller sized wall, where some of these towers could be reused?

     

    http://www.chaz.org/Arch/China/City/Changan_through_time_large.png

     

    wzs-11.gif

  11. 2 minutes ago, Stan` said:

    You don't even need to have a dedicated parameter as long as every moving thing inherits from the same base template. That's what inheritance is for. In the example above instead of having a tag called ScaleMultiplier, it's just the attribute of walkspeed. and I can make every template inherit from that one.

     Yes, I know, just thinking it may come in useful in terms of coding, but this works fine too, sure.

    • Confused 1
  12. 3 minutes ago, Stan` said:

    It's exactly the same as adding an extra multiplier. 0.21 * 9 is about 1.9

    I'd make the scale multiplier configurable in some template, and to be on absolute safe side, no hardcoded defaults for atlas.

     

    Doc might read on scale multiplier: "Do not touch unless you know what you are doing."  :)

    • Confused 1
  13. 10 minutes ago, Stan` said:

    Well it wouldn't because it uses the template values? Or am I misunderstanding something? The 7 and the 12 are only when you don't have template and you tick the move options, which you do not usually. Most people test things using the play button in atlas anyway.

    I haven't had enough time to go in greater detail with atlas code, but if no template value is found, it uses the hardcoded defaults. Would be odd in a differently scaled project? You are the master artist to say. I could find out when precisely the default is used, but I think its more of an issue for artists if the default is used by Atlas, their walk and run animations would not fit set scaling?

     

    Another use case of a scale multiplier, Atlas, could come from template too.

     

    27 minutes ago, Stan` said:

    As you saw the patch isn't complicated. It would only be used for modders though.

    Right, its a little patch with great effect that should be upstream, addressing little hurdles that may or may not prevent adoption of the engine for other projects. In return, if the engine gets more adopted, you probably get more patches enhancing the engine.

     

  14. 12 minutes ago, Stan` said:

    Not sure it would work well on a 2D pathfinder, also performance might be pretty bad no?

    I am just saying, if you develop the engine further, and you add mass to the equation for example, you probably want to have the scaling multiplier stored somewhere, and not calculate it over and over again from the speed or so, apart from bad coding practice it would be. You very likely gonna need it the more complex the engine gets.

     

    Would already be interesting to test some formation stuff with accurate speeds, unscaled, just for some fun testing to have a real values based reference point to compare against. Same for pathfinding etc.

     

    Point being, if my super secret realism aimed project used a different scaling, the artists would probably pull their hair out why the walk and run animations seem 0AD public mod scaled in Atlas. ;)

     

  15. 8 minutes ago, alre said:

    You are missing a lot, and you think it's our fault. It's not, take some time to understand the game better, and its balance, or feel free to make your own mod and see how that plays.

    Look at the ActorViewer.cpp, you will find a hardcoded default walk and run speed of 7 and 12 respectively. Set it to unscaled default and have a scale multiplier. Nothing changes, just the default for walkspeed in the templates, ie 1.9 to 2.5 m/s for 0AD.

     

    Look, I am long enough in the open source development, this is neither trashing nor somehow picking on the great work of an engine. This is about improvement, about customization of the engine, but it seems you are set to oppose this. Such little improvement could decide a teams choice for an RTS engine, just saying.

  16. 35 minutes ago, ChronA said:

    Maybe you should give some more thought to what you want to do, and maybe even give us a hint so we can provide more helpful insights.

    My thought is, that is amazing to witness some comments here, documenting they don't get the simple mathematical concept of factorization.

    I am saying, the engine can and is being configured with default values. So far so good.

    But actually using a scaled speed as default value is in my view uhm suboptimal.

    Hence any project using the engine will have to use the hardcoded 3.6 scale, hard coded in atlas for defaults, the rest comes from templates. So if my project used a different scaling, my team would run into problems, apart that I would want my team work against real defaults.

    Its easier to eg research the avg walk speed of a horse and put the value in the template, instead of working with scaled speed.

    Ideally, you scale everything at a certain ratio, atm, afaik, the engine uses different scaling multipliers for different things, some is scaled, some is not or differently scaled.

    It is an approach the devs took, which is fine, but the engine is not really customization in terms of default settings with this appraoch. This would be a non issue, if real values were used, and the scaling multiplier gives you the speed you need in scale.

     

    I was just thinking, there is also competition in open source RTS engines, and this may sound like trivial issue, but a tendency would be atm to recommend say spring engine.

     

    Example.

    0AD sets walk speed at 7 m/s, I doubt all balancers are aware this is actually a scaled speed at a factor 3.6, ie m/s to km/h.

     

    So a default avg walk speed is 1.9 m/s x 3.6 = ~7 m/s

    Difference is, walk speed is based on a real life reference point, no guessing required.

    Balancing team would simply not have to care for scaling, they look up real measured values and put it in the template. Can then be fine tuned as desired.

    • Like 2
×
×
  • Create New...