Author Topic: "busy" indicator  (Read 9690 times)

Offline moriarty

  • Commander
  • *****
  • Posts: 1421
    • View Profile
    • Luke's OX mod site
"busy" indicator
« on: September 04, 2012, 07:13:55 pm »
with the game growing and growing, writing a savegame takes more and more time... we have reached a point where the game actually takes an amount of time for writing a savegame to disk that users might start to get worried if the game is actually doing something or just crashed.

considering that this will get worse, maybe it's time to find some kind of "busy" signal that tells the user that the game is actually doing something.

1) does anybody agree?

2) if so, does anybody have an idea what it should look like? (small window with progress bar? animated "busy" cursor? small window with some kind of animation? whatever it is, it should be very "xcomish". something iconic that everybody instantly recognises from the game.)

Offline radius75

  • Colonel
  • ****
  • Posts: 108
  • I am the average PC user!
    • View Profile
Re: "busy" indicator
« Reply #1 on: September 04, 2012, 07:46:27 pm »
The black screen or window with centrally animated person... sectoid?    :D

Animation for looooong loading...  :P
https://img.1gif.pl/wedkarstwo/wedkarstwo-44.gif
« Last Edit: September 04, 2012, 09:16:24 pm by radius75 »

Volutar

  • Guest
Re: "busy" indicator
« Reply #2 on: September 04, 2012, 09:32:49 pm »
Project just need to get rid of sluggish yaml-cpp library.
Or probably something like this. https://code.google.com/p/yaml-cpp/issues/detail?id=7

Getting busy indicators used because of non optimal code is very bad idea.
« Last Edit: September 04, 2012, 09:34:39 pm by Volutar »

Offline moriarty

  • Commander
  • *****
  • Posts: 1421
    • View Profile
    • Luke's OX mod site
Re: "busy" indicator
« Reply #3 on: September 04, 2012, 10:08:11 pm »
Face it, Volutar, there's always going to be idle times, no matter how good the code is. Between geoscape and battlescape, when loading or saving a game...

if we find some really good way of handling and bridging these idle times, we will make the game a little bit better again.


A spinning geoscape globe would be very recognizable, although I don't know how it will look in 320x200 resolution.

Offline moriarty

  • Commander
  • *****
  • Posts: 1421
    • View Profile
    • Luke's OX mod site
Re: "busy" indicator
« Reply #4 on: September 04, 2012, 10:38:11 pm »
kind of like this, maybe?:

Volutar

  • Guest
Re: "busy" indicator
« Reply #5 on: September 05, 2012, 04:50:16 am »
Face it, Volutar, there's always going to be idle times, no matter how good the code is. Between geoscape and battlescape, when loading or saving a game...
Why should I face it? There's no even a second of idling time in original game, so why would openxcom have idle time?

The only moment when you have to wait - is a "hidden movements screen". Anything else is a lame.
« Last Edit: September 05, 2012, 04:54:38 am by Volutar »

Offline Daiky

  • Battlescape Programmer
  • Administrator
  • Commander
  • *****
  • Posts: 904
    • View Profile
Re: "busy" indicator
« Reply #6 on: September 05, 2012, 10:25:43 am »
It has been a while since I loaded a game in a release build, but the slow saving/loading is only in the battlescape right, or is it the geoscape too?

Because in the battlescape currently every tile of the map is saved as a seperate YAML object, which is a lot of overhead, where as one base64 encoded blob would be more efficient. It's somewhere on my todolist.

Volutar

  • Guest
Re: "busy" indicator
« Reply #7 on: September 05, 2012, 10:35:39 am »
Daiky, base64-encoded binary in yaml text config is a kind of perversion. Why don't you want to write binary files? They are not for edit anyways.

I'd better be using yaml only for config files. By going weird way as now we may put sprites into yaml - pixel-by-pixel info. Actually if that happen I'll ask to delete my name from the credits.

Offline luke83

  • Commander
  • *****
  • Posts: 1558
    • View Profile
    • openxcommods
Re: "busy" indicator
« Reply #8 on: September 05, 2012, 10:57:54 am »
Actually if that happen I'll ask to delete my name from the credits.

"WEBSITE UPDATE : NAME HAS BEEN SUCCESSFULLY REMOVED FROM THE CREDITS ... HAVE A NICE DAY"




Only kidding ,  i have no idea what the hell you guys are discussing "Base64 Encoding"  :P

Offline pmprog

  • Commander
  • *****
  • Posts: 647
  • Contributor
    • View Profile
    • Polymath Programming
Re: "busy" indicator
« Reply #9 on: September 06, 2012, 11:16:39 am »
Daiky, base64-encoded binary in yaml text config is a kind of perversion. Why don't you want to write binary files? They are not for edit anyways.
One thing to consider with either approach is that if you want to transfer saves between machines of different endians.

Offline Yankes

  • Commander
  • *****
  • Posts: 3194
    • View Profile
Re: "busy" indicator
« Reply #10 on: September 10, 2012, 11:03:41 pm »
Is always possible to "fix" endians in cost of slower loading.

Volutar

  • Guest
Re: "busy" indicator
« Reply #11 on: September 11, 2012, 02:20:33 pm »
What about endians? if you will read binary file byte-by-byte there will be no such thing as "endian"

Offline LCSand

  • Captain
  • ***
  • Posts: 73
    • View Profile
Re: "busy" indicator
« Reply #12 on: September 11, 2012, 02:54:46 pm »
What about endians? if you will read binary file byte-by-byte there will be no such thing as "endian"
No, that is exactly when endianness matters. If you would read bit by bit then it would not matter.
But if you read bytes it is the difference between 1 and 256(or -128 depending on byte format).
Anyway, I dont think a binary format is a good idea.

Volutar

  • Guest
Re: "busy" indicator
« Reply #13 on: September 11, 2012, 02:57:14 pm »
LCSand, you're mistaken.
Big/Small endian is BYTE order, not a BIT order.
https://en.wikipedia.org/wiki/Endianness
And binary files are okay. Every developer trying to compress data for project: a) not to occupy too much of place, b) to maintain high load speed (smaller files loaded faster).
« Last Edit: September 11, 2012, 03:00:16 pm by Volutar »

Offline pmprog

  • Commander
  • *****
  • Posts: 647
  • Contributor
    • View Profile
    • Polymath Programming
Re: "busy" indicator
« Reply #14 on: September 11, 2012, 03:23:18 pm »
If you have any values that are larger than a single byte, it will matter, because you'll need to reverse the order after you read it, whether read byte-by-byte or by reading a 16bit word.

I never meant that it was a "problem", just something to be considered if implementing any sort of binary reading