Conquer Club

Fog of War

Talk about all things related to Conquer Club

Moderator: Community Team

Forum rules
Please read the community guidelines before posting.

Postby Visaoni on Wed Oct 24, 2007 12:00 am

lackattack wrote:
Visaoni wrote:it isn't fair


Of course it's fair... it applies to all players equally!


:lol: You got me there. Let me rephrase... I have no memory for this sort of thing. I might have to take screen shots of all my FoW turns for reference, and I really don't want to do that. :wink:
Sergeant Visaoni
 
Posts: 274
Joined: Wed Jun 13, 2007 8:44 pm

Postby Visaoni on Wed Oct 24, 2007 12:01 am

Aerial Attack wrote:I too was surprised to see that I would not know which of my troops had lost communication. Ah, but that is the thing - they've lost communication. It's possible they were never actually conquered. Or maybe you never actually had them? Hmm ...

An upshot of this, should be more usage of the note to self field. You type in which terrs you have at the beginning of the game and at the end of every turn. You'll also want to note any big enemy listings nearby, as they could suddenly make that part of the map disappear.

I used the notes field and it helped a LOT. Oh wait, I just thought of that right now *doh*. I managed to win because everyone else was more lost than I was *shake head* *smile*.


Hm... that is actually a really good idea. I still think I'll be stuck with screen shots though, it's easier to compare visual to visual than text to visual.
Sergeant Visaoni
 
Posts: 274
Joined: Wed Jun 13, 2007 8:44 pm

Postby freezie on Wed Oct 24, 2007 12:01 am

Visaoni wrote:
lackattack wrote:
Visaoni wrote:it isn't fair


Of course it's fair... it applies to all players equally!


:lol: You got me there. Let me rephrase... I have no memory for this sort of thing. I might have to take screen shots of all my FoW turns for reference, and I really don't want to do that. :wink:


You are not alone, so it's fair to everyone.

But like I said, if you play around 50 games at once, not all of them will be FoW.

So it shouldn't be such a problem.
Image
User avatar
Corporal 1st Class freezie
 
Posts: 3901
Joined: Fri Apr 06, 2007 12:18 pm
Location: Somewhere between here and there.

Postby asl80 on Wed Oct 24, 2007 12:08 am

hahaha - could reak havoc on alliances.

But i'd find knowing at least which territory of yours taken, if not where from, to be displayed more reasonable. Especially for the turn based, i.e. five minutes a day, style play.

Maybe the game log could be programed to display everything that was known at the time of event (and not at the present, i.e. the last movement) - preety sure it doesn't do this but not quite sure, still making my way through a first game in the dark.

Good update anyway - cheers!
Lieutenant asl80
 
Posts: 208
Joined: Wed Jun 27, 2007 10:07 am

Postby edbeard on Wed Oct 24, 2007 12:18 am

I just don't like that if I'm watching someone take a turn, then I can know what happened, but if I'm not there then I don't know what happened.

whether it be him deploying to a territory that is adjacent to mine, but still shows a ? or conquering territories of mine and those showing up as ? as well.

I guess my question would be how much of a server issue or programming issue is this?

I'll probably avoid these games (except with rl friends) until something like that gets updated. It's still a very cool idea though.
User avatar
Lieutenant edbeard
 
Posts: 2501
Joined: Thu Mar 29, 2007 12:41 am

Postby Visaoni on Wed Oct 24, 2007 12:31 am

edbeard wrote:I just don't like that if I'm watching someone take a turn, then I can know what happened, but if I'm not there then I don't know what happened.

whether it be him deploying to a territory that is adjacent to mine, but still shows a ? or conquering territories of mine and those showing up as ? as well.

I guess my question would be how much of a server issue or programming issue is this?

I'll probably avoid these games (except with rl friends) until something like that gets updated. It's still a very cool idea though.


Yeah, that is the the only thing I really have an issue with. Stuff you did see should be in the game logs, even if after your territory is overrun after their turn. If it really is that hard to program, then at least let us know what territories we lost.
Sergeant Visaoni
 
Posts: 274
Joined: Wed Jun 13, 2007 8:44 pm

yuppers

Postby Piestar on Wed Oct 24, 2007 12:45 am

Slightly off the ongoing topic, but a point in favor the the overall topic, in my opinion.

With the fog of war, we will have to rely on each other for information, which should open up dialogue.

Of course not everyone can be trusted, but heck, that's part of the fun!

Myself, eager to die in one of my four games, so I can give it try...

Maybe on that cool Spaceness map?

Time will tell...
User avatar
Sergeant Piestar
 
Posts: 302
Joined: Wed Oct 10, 2007 11:41 pm
Location: San Diego Ca. U.S.A.

Postby Incandenza on Wed Oct 24, 2007 12:53 am

Aerial Attack wrote:An upshot of this, should be more usage of the note to self field. You type in which terrs you have at the beginning of the game and at the end of every turn. You'll also want to note any big enemy listings nearby, as they could suddenly make that part of the map disappear.


That's not bad. Not bad at all...
THOTA: dingdingdingdingdingdingBOOM

Te Occidere Possunt Sed Te Edere Non Possunt Nefas Est
User avatar
Colonel Incandenza
 
Posts: 4949
Joined: Thu Oct 19, 2006 5:34 pm
Location: Playing Eschaton with a bucket of old tennis balls

Postby Aerial Attack on Wed Oct 24, 2007 12:55 am

lackattack wrote:What if you were conquered by a one way border?

FoW filters the logs and only shows you entries where you took the action. Its must simpler to program and is easier on the server than going through adjacencies.


Lack probably accomplishes this through code of this sort:

Code: Select all
IF <territory_attacker_owner> = <current_player>
THEN <territory_taken> & <territory_attacker>
ELSE  <territory_taken> = "?" & <territory_attacker> = "?"


I see edbeard's point about being able to see armies that are deployed on terrs adjacent to your own showing up as "?" - but the code to show to each player who is adjacent to that terr would be incredibly tough.

Code: Select all
For Each <bordering_territory> In BorderingTerritoryArray(<territory_deployed>)
// Have to make it visible to adjacent owner in the log file
For Each <bordering_territory_owner> LogFileEntryArray(<current_player>, <current_round>)
If <territory_deployed> = "?"
Then <territory_deployed> = <territory_deployed_nonFoW>
Next
Next


A similar style loop would need to be processed for successful attacks.

That is a LOT more processing time on the server !!!
Image
My Conquer Club Scripts | Bests: 2133, #205
User avatar
Sergeant Aerial Attack
 
Posts: 1132
Joined: Mon Jun 04, 2007 7:59 pm
Location: Generation One: The Clan

Postby insomniacdude on Wed Oct 24, 2007 2:23 am

Aerial Attack wrote:
lackattack wrote:What if you were conquered by a one way border?

FoW filters the logs and only shows you entries where you took the action. Its must simpler to program and is easier on the server than going through adjacencies.


Lack probably accomplishes this through code of this sort:

Code: Select all
IF <territory_attacker_owner> = <current_player>
THEN <territory_taken> & <territory_attacker>
ELSE  <territory_taken> = "?" & <territory_attacker> = "?"


I see edbeard's point about being able to see armies that are deployed on terrs adjacent to your own showing up as "?" - but the code to show to each player who is adjacent to that terr would be incredibly tough.

Code: Select all
For Each <bordering_territory> In BorderingTerritoryArray(<territory_deployed>)
// Have to make it visible to adjacent owner in the log file
For Each <bordering_territory_owner> LogFileEntryArray(<current_player>, <current_round>)
If <territory_deployed> = "?"
Then <territory_deployed> = <territory_deployed_nonFoW>
Next
Next


A similar style loop would need to be processed for successful attacks.

That is a LOT more processing time on the server !!!


I've paid $20 (and in spite of this minor issue, will continue to do so regardless :oops: ) to keep those serves running! If that means adding more processes to them to actually make the damn game function properly, then I guess my $20 is doing it's job. I'm not paying money for a broken game.
User avatar
Cadet insomniacdude
 
Posts: 634
Joined: Thu Nov 23, 2006 1:14 am

Postby Visaoni on Wed Oct 24, 2007 2:33 am

With that line of thought you could easily come to the conclusion lack needs to charge more, so he is able to spend time and processing power on these longer/more advanced features. I think your happy with $20/year right? :wink:
Sergeant Visaoni
 
Posts: 274
Joined: Wed Jun 13, 2007 8:44 pm

Postby firstholliday on Wed Oct 24, 2007 2:33 am

fog of war? naah not for me thanks. I like to play risk.


But you guys have fun.
User avatar
General firstholliday
 
Posts: 1338
Joined: Sat Feb 10, 2007 1:51 pm
Location: Amsterdam (the fun city)

Postby lackattack on Wed Oct 24, 2007 8:47 am

insomniacdude, it's not just the $$ for the server, it's the time it would take to program the complex logic.

An "intelligent" Fog of War Game Log would have to be prioritized with all the other things on my to-do list, and I thing there are other items we could use first.

Oh, and Aerial, your pseudo-code looks a lot like the real thing :wink:
User avatar
Corporal 1st Class lackattack
 
Posts: 6097
Joined: Sun Jan 01, 2006 10:34 pm
Location: Montreal, QC

Postby Ridexer on Thu Oct 25, 2007 5:13 am

I think that you need to hide the incomes, as it makes it almoust pointless, when in classic map your holding OZ and see that player 2 got 2 from holding?
player 3 got 3 for holding ? and player 4 got 5 for holding? and you have one group at north america =/
Corporal Ridexer
 
Posts: 1
Joined: Thu Sep 27, 2007 7:31 am

Postby eigenvector on Thu Oct 25, 2007 12:00 pm

Am I the only one who finds it difficult to visually differentiate between the gray neutrals and the gray unknown enemies? It's very difficult to take in a map at a glance this way. Maybe it's possible to colour the unknown enemy circles in their proper colours instead of gray?

Otherwise, cool feature. Way to go.
Cook eigenvector
 
Posts: 95
Joined: Tue Jul 24, 2007 4:27 am

Postby Dancingmustard1 on Fri Oct 26, 2007 3:28 pm

I agree with the guy, Fog of war is kinda stupid, it just ruins ur whole strategy. For maps like pearl harbor where you can do long range attacks, ? attacked V2 and conquered it, that doesnt make sense because you dont know who or what is attacking you
Cadet Dancingmustard1
 
Posts: 15
Joined: Thu Oct 18, 2007 12:45 pm
Location: Canada

Postby ThalidomideGirl on Sun Oct 28, 2007 7:57 am

The only thing I'd like is to be able to see the game state after the end. As though ending the game "lifts" the fog of war as it were.
Corporal ThalidomideGirl
 
Posts: 1
Joined: Thu Feb 15, 2007 8:29 pm

Postby RobinJ on Sun Oct 28, 2007 10:00 am

IMO if you don't realise that you've lost a country then it wasn't that important
nmhunate wrote:Speak English... It is the language that God wrote the bible in.


Highest Score: 2437
Highest Place: 84
User avatar
Sergeant 1st Class RobinJ
 
Posts: 1901
Joined: Mon Aug 21, 2006 1:56 pm
Location: Northern Ireland

Postby Aerial Attack on Sun Oct 28, 2007 10:47 am

RobinJ wrote:IMO if you don't realize that you've lost a country then it wasn't that important

I agree with this. Except for the first round - unless you go first or second, you'll probably have a terr taken and never know in what region it was.

I'm not sure what it would take - but maybe when the game initializes, The log spits out a player dependent "intelligence report" or "roll call." This has your list of territories.

This would be much easier and less time consuming than going whole hog and listing adjacent terrs (which, you the player should really be doing that work anyways).
Image
My Conquer Club Scripts | Bests: 2133, #205
User avatar
Sergeant Aerial Attack
 
Posts: 1132
Joined: Mon Jun 04, 2007 7:59 pm
Location: Generation One: The Clan

Postby richardgarr on Sun Oct 28, 2007 10:51 am

Hey guys, look at it this way: FoG of war is simply another option of play, It gives the players a new game to learn , as well as new ways of strategizing and looking at the board. If the game always stayed the same it wouldn't be a game anymore, it would turn into a repetitive pattern of play. That in my opinion would be pointless. Embrace the variety and adjust your thinking of the strategies involved . This new game style has many good points and promises variety, as well as forcing you to actually pay attention. ENJOY it, don't try to pick it apart.
Image
User avatar
Sergeant richardgarr
 
Posts: 597
Joined: Tue Feb 13, 2007 5:38 pm
Location: Under your bed, with an Axe :)

Postby owenshooter on Mon Oct 29, 2007 12:48 am

Fog is not for me, but neither is escalating or 6 player standard games. i tend to stick with what i like, and i am not a fog fan... yet...-0

p.s.-of course there were maps i used to hate that i now love beyond
belief... yes, i am going to marry one.
User avatar
Sergeant owenshooter
 
Posts: 13273
Joined: Wed Mar 07, 2007 6:01 pm
Location: Deep in the Heart of Tx

Postby EmperorOfDaNorth on Mon Oct 29, 2007 4:14 am

p.s.-of course there were maps i used to hate that i now love beyond
belief... yes, i am going to marry one.


Yup, if it wasn't for fog-mode I would never have married.

It's like CC's cosy little dark-room.
Alex..? Alexander the Great, my Commander, what's wrong? Did someone leave you negative feedback again?
User avatar
Colonel EmperorOfDaNorth
 
Posts: 134
Joined: Fri Aug 17, 2007 1:52 am
Location: Chiang Mai, Siam

Postby psymann on Mon Oct 29, 2007 4:22 pm

The fog of war option is great in theory, but poor in implementation.

It is a nice option you can use if you want a change. If you don't want a change, don't use it.

I think it's also nicer in six-player games to start with, since you don't know who is doing best, and that person who is doing the best doesn't get beaten up by everyone just for doing well at the start. I think that could be quite good.

It's also a great option for an online game, as it's impossible to do with the board game, so is an interesting niche option.

=====

However, the implementation is a little poor.

1) If you lose a territory, it doesn't say which one.
2) It tells you what bonuses people have got, which on many maps gives away what they have. It would be better IMO not to say how many armies they get at all.
3) However, you should be able to know how many territories they have in total, since you all start with the same number, and it tells you when they are won/lost - so this bit is fine - just that it shouldn't then add in the bonuses to the info.
4) It doesn't tell you info that you should know. For example, I hold Argentina, and I see that blue has 1 army on Peru. After green has his turn, I see that the 1 blue army is now 2 green armies. It should be obvious in the log that green has conquered "PERU from ?", not "? from ?".
5) Similarly, if green then fortifies 2 armies on Peru, I should know in the log that he fortifies Peru, even if I don't know from where.
6) And again, if green then deploys on Peru the next turn, I should be told how many he has deployed there.

Too many of the bits of information are missing from the log, and too many other bits of information are included that shouldn't be. This is a shame, since the actual idea of it, I quite like. Brings a new dimension to it.

psymann
Corporal 1st Class psymann
 
Posts: 7
Joined: Sun Oct 07, 2007 6:10 am

Previous

Return to Conquer Club Discussion

Who is online

Users browsing this forum: No registered users