Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.549
  • Joined

  • Last visited

  • Days Won

    606

Everything posted by Stan`

  1. Thanks for the report I'll have a look ASAP
  2. You should get in touch with @OmriLahav by email is the best way
  3. Could you attach the files you are asked for ? if you are on Windows they should be in your Appdata folder
  4. Then I guess It is a remnant of before openGl 2.0. still power of two textures Is good practice and really common.
  5. Yeah but I won't commit DDS. And the one we currently have are fine True and that is defined by the textures XML files. Which by the current look them means we assume they are power of two. The point of the script is not to fix textures its just a check . https://github.com/0ad/0ad/blob/e317fa0d610df3bf624aa326e979b2de7e75729a/source/lib/res/graphics/ogl_tex.cpp According to this there were openGl limitations regarding the size of pictures.
  6. @elexis I wrote this to check for dubious textures in case that can be of use. from PIL import Image import os def is_power_of_two(n): return (n & (n - 1)) == 0 modList = ["public", "terra_magna"] for mod in modList: listOfFiles = os.walk("E:\\Dev\\0-A-D\\ps\\trunk\\binaries\\data\\mods\\" + mod) for root, directories, filenames in listOfFiles: for filename in filenames: if ".png" in filename: im = Image.open(os.path.join(root,filename)) width, height = im.size if not is_power_of_two(width) or not is_power_of_two(height): print("WARNING: Non power of two file found: " + os.path.join(root,filename))
  7. I know my friend, and I do not know how to solve this problem. A commands.txt would be appreciated. Because nobody can fix stuff they cannot reproduce.
  8. As far as mods goes nearly everything. As long as you do not touch c++ engine code. If you try to play with someone with a mod you don't have it will ask you to manually install it or use the integrated mod downloader.
  9. Thanks so much for your work
  10. Bubble commit is pretty awesome. Thanks for the fix I hope elexis can commit it
  11. Hello and welcome to the forums. You can only create one account per hour. There is a limit per IP Address.
  12. About the resolution, I'm sorry but there isn't much we can do. The minimum resolution is 1024x768, and a lot of people are pressing us to even drop that one. So I'm afraid your friend either has to find a bigger screen, or try to play with the scaling by editing a file called user.cfg in his appdata folder and add gui.scale=0.75 in there. About the lag, that's something we are working on but it's not trivial to fix, the more AI the more memory used.
  13. Hey @ChocolateLover Thanks for the report. That's the first time I see anything like this... > opengl32.dll!681b0b77() Unknown No symbols loaded. [Frames below may be incorrect and/or missing, no symbols loaded for opengl32.dll] Annotated Frame ntdll.dll!_KiUserCallbackDispatcher@12() Unknown Non-user code. Symbols loaded. ntdll.dll!_ZwQueryInformationProcess@20() Unknown Non-user code. Symbols loaded. kernel32.dll!_RegQueryValueExW@24() Unknown Non-user code. Symbols loaded. 90909090() Unknown Non-user code Are your drivers up to date ?
  14. Can you attach the files that were asked for in the message you just copy pasted ? @ChocolateLover
  15. Looking forward to seeing what you come up with
  16. I thought Xiongnu were in a better playing state that some of the factions we released
  17. People complaining of current trees having too many polygons. That's not gonna help haha. What's the game though ? I'd like to take a look at their assets.
  18. Okay then I don't know I'll try to investigate.
  19. Are you sure it doesn't call the archive builder to make the zip ? If it does well that's gonna be fun
  20. I also noticed a weird behavior. If you delete all the XML files and leave the XMB when you drag an drop on the executable it regenerates them... I hope it doesn't change other files as well. I hope it doesn't remove the .DELETED files. Need to check. While packaging I also noticed you need the textures.xml files spread across the folders else it breaks everything.
  21. Indeed it will be for part 2 which will cover the battle of Hastings in 1066 featuring Harold Godwinson and William the Conqueror.
×
×
  • Create New...