
Mac OS tester needed
Mac OS tester needed
I would need a Mac OS tester, because I cannot test the game there. It would need to be someone who has a computer running Mac and is willing to do some testing as well as reporting log files and such things. 

Re: Mac OS tester needed
Hi, the game (0.1.4) starts on mac OS X 10.7.5, but I choose game center-> single->europe->start and then window closes and image with menu rests. If I go in game center->single game again there is no europe scenario so i guess I'm doing something wrong, or starting scenario is broken....
Cheers!
Cheers!
Re: Mac OS tester needed
Biza,
Our programmer is on vacation for the next few weeks, but your input will be very valuable to him once he returns.
Thanks,
Veneteaou
Our programmer is on vacation for the next few weeks, but your input will be very valuable to him once he returns.
Thanks,
Veneteaou
Hi biza,
thanks for the feedback. I'm afraid but it seems that nothing is wrong and everything is working as it should be. The game is in a very early stage and the scenario screen is only half finished, even the game rules aren't completely fixed. The download is mostly a showcase of what we imagine so far. Look at the editor for a continuous terrain tile display.
However your feedback has been very helpful to me! Hope to see you again when the project has progressed more and newer versions have been released.
thanks for the feedback. I'm afraid but it seems that nothing is wrong and everything is working as it should be. The game is in a very early stage and the scenario screen is only half finished, even the game rules aren't completely fixed. The download is mostly a showcase of what we imagine so far. Look at the editor for a continuous terrain tile display.
However your feedback has been very helpful to me! Hope to see you again when the project has progressed more and newer versions have been released.
Re: Mac OS tester needed
I can confirm that the python version runs on OS X 10.9 after installing PySide/Qt. At this moment, it doesn't do to much though 

Re: Mac OS tester needed
Thanks for the information. I will also need someone to generate MAC OS packages. But more in the future because as you mentioned correctly, it isn't doing much currently. 

Re: Mac OS tester needed
Short Update: Since this is a Python 3.3 project, the PySide provided by Qt I linked to above won't work. To get the Remake running, you have to install Python 3 and Qt. There are (at least) two ways to do this:
- You install the latest Python 3 release and Qt 4.8. After that, you fire up the Terminal app and type
Theoretically this should install a precompiled version of PySide, but that may fail and instead will start a new compilation which may take a while. You have to have Developer Tools installed then, of course.
Code: Select all
pip3 install PySide
- The other way involves macports. If you have it installed, you can install PySide with
It will take care of all other stuff like Python and Qt by itself. Sadly, currently this version of PySide misses the Phonon binding, and at this time, you have to modify the Remake source a bit to make it work.
Code: Select all
sudo port install py34-pyside
Re: Mac OS tester needed
Uh, that is not that good and also quite a surprise. Could you test if PyQt is easier to install on a Mac? If so I might just switch the Qt binding.
Re: Mac OS tester needed
I can test PyQt this weekend if you wish, but installing PySide wasn't too hard in my opinion since pip takes care of the whole compiling stuff, it justs need some timeTrilarion wrote:Uh, that is not that good and also quite a surprise. Could you test if PyQt is easier to install on a Mac? If so I might just switch the Qt binding.

Having said that, I think I read somewhere that PySide was quite shaky when not wrapping the exact Qt version it was compiled against, and it would be better to compile it yourself anyway.
Re: Mac OS tester needed
Took a short look at PyQt, and it looks even more complicated than PySide if you aren't on Windows. While it should be possible to install a precompiled PySide wheel (and pip checked it, but decided the wheel couldn't be used), it seems you definitely have to build PyQt yourself. At the moment, pip can't even find PyQt4, so advantage PySide I guess 
