Page 2 of 5
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 18:22
by SirArtturi
We need better looking maps and now the technology and tools are making it possible. After that it's only up to you people to support those maps.
And there exactly lies the great paradox. People demand better looking maps but once they get them, they still prefer CCR. This is because the more realistic and better looking map you want, the more unplayable it gets.
It goes pretty much like this, and I'm telling it from the experience of feedbacks I got along the years I was in the business:
"Map is so bland, flat and boring and has bad crude edges: We want more color and height differentiation, features, cool stuff we want we want etc.!"
Then next day, when you got it, you whine that map is too noisy and busy, impossible to move anywehere, pathing problems, features are on the way, it's hard to distinguish my ugly BA units from it, the crude edges fixing fog is too hard for my stone age pc etc.
And here you go, back to CCR.
Then there is ofc the gameplay paradox:
"Boohoo, your map is way too difficult, gameplay is too nonlinear, enemy can flank me so easily and rape my unprotected base. Please make me a map where I can play safe.
Next day:
"Map is too porcy and too much metal."
And here you go, back to CCR.
The only way to deal with this kind of shit paradoxes, is to ignore them, and make maps for yourselves and for your buddies, do them with your own way and own vision. Otherwise you end up in a mental breakdown like me.
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 18:24
by SirArtturi
And yes, as mentioned, there is still lot of niches like in FFA that beherith has been filling up. So yes we do need more maps, just cut the bullshit and play them. Get out of your comfort zone.
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 18:33
by KaiserJ
in my mind at least i'm mapping for ZK and evo; BA players don't really seem to enjoy mine too much apart from chicken maps, so i'll concentrate my efforts towards those that appreciate them the most (would be happy to see games of BA on my maps, don't get me wrong, but the ZK guys are the ones who invariably go "oh cool map" and start playing immediately)
CCR is just about as basic a map texture as you can get. there's nothing BAD about it, its just very minimal and not the route i would have taken.
DsD however IS a bad map. on the surface it appears fine, but there are too many small errors ... people embrace it as "oh look at the depth of strategy" but the bottom line is that it's imbalanced for team-play especially in large groups (people can think what they want about the texture, it's immaterial when compared with flawed gameplay)
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 18:50
by SirArtturi
Indeed KaiserJ, BA scene does not put much weight on the looks, all that matters to them is gameplay.
Thats why Seths Ravine was basically designed for ZK as they appreciate new ideas and approaches. BA is stuck into the comfort zone and that's probably why the map never get much attention in BA: It's just too unconventional.
Anyway, basically I was saying that we really need better looking maps, which looks for progress and future and can be marketed for new players. Thats how we get the game evolving.
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 19:05
by KaiserJ
tbh mapping is getting more and more enjoyable for me; as with seths ravine and some before and some after, i'm working more as a team with other mappers (or even in a support role) and i'm confident that the collaborative efforts going on as late will yield better maps than we had ever imagined possible
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 20:56
by MidKnight
KaiserJ wrote:tbh mapping is getting more and more enjoyable for me; as with seths ravine and some before and some after, i'm working more as a team with other mappers (or even in a support role) and i'm confident that the collaborative efforts going on as late will yield better maps than we had ever imagined possible
This is a very well-written and inspiring post, but all I can think of when I'm reading it is Garwar.
...
pfhahahahahahaha

Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 21:06
by FLOZi
S44, iw both have their own scale and can benefit from custom maps.
CT and kp have their own styles
Those are areas which could benefit from new maps to be sure.
This was going to be my response. There's huge scope and demand for game-specific maps. Although one problem is games having their own adequate feature sets.
Re: Is there even want of maps anymore?
Posted: 07 Jun 2011, 21:29
by triton
SirArtturi's map are the best for small games you should do more maps!!!
I also want inverse heighmap in Throne bis :)
FFA map for 7 players max could be nice too.
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 00:43
by Sprang
There is never ever ever too many good maps!
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 10:05
by PicassoCT
Didnt Behe wrote a program creating maps, by combining and mirroring popular maps? Thus creating DeltaSiegeDuo, DeltaSiegeIslands and so on, and so forth? Once again the machines overcome the need for human labour- even in there sparetime, guess this is a ludist breach. Here robots hold my towell...
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 10:27
by Beherith
Duo was made by silent303, island was by TradeMark.
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 10:35
by PicassoCT
Such fancy names for smurf-programs.. he even became mod to hide his plans for worldconquest;)
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 10:55
by Masure
triton wrote:I also want inverse heighmap in Throne bis :)
+1 :D
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 11:02
by Beherith
Masure wrote:triton wrote:I also want inverse heighmap in Throne bis :)
+1 :D
I dont quite understand why one would want this. It should be OK with 7 players, but for more, it punishes those in the center too much.
Already the people on the edges have a distinct advantage (geo spots, etc)
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 11:30
by Kloot
triton wrote:
I also want inverse heighmap in Throne bis :)
Code: Select all
-- map_invert_height.lua
if (gadgetHandler:IsSyncedCode()) then
function gadget:Initialize()
local mapOptions = Spring.GetMapOptions()
local minH, maxH = Spring.GetGroundExtremes()
local mapX, mapZ = Game.mapSizeX / Game.squareSize, Game.mapSizeZ / Game.squareSize
if (mapOptions.invertHeightMap) then
Spring.SetHeightMapFunc(function()
for x = 0, mapX do
for z = 0, mapZ do
local xw = x * Game.squareSize
local zw = z * Game.squareSize
local h = Spring.GetGroundHeight(xw, zw)
Spring.SetHeightMap(xw, zw, minH + (maxH - h))
end
end
end)
end
end
end
==>
http://imageshack.us/f/23/screen00000g.png/
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 15:22
by BaNa
Throne could use a new version with inverse as a mapoption and lava as a mapoption. I set one up like that but lost the will toward the end.
btw there is a much simpler way to invert height, just setmaxheight 200 and setminheight 1000 or whatever values you want.
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 15:35
by smoth
I do it easier that that. Bana that solutions assumes numbers not all maps have equal height.
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 16:31
by knorke
you can read max/min height
Re: Is there even want of maps anymore?
Posted: 08 Jun 2011, 17:54
by smoth
knorke wrote:you can read max/min height
I am invisible
Re: Is there even want of maps anymore?
Posted: 10 Jun 2011, 17:52
by hunterw
Beherith wrote:Masure wrote:triton wrote:I also want inverse heighmap in Throne bis :)
+1 :D
I dont quite understand why one would want this. It should be OK with 7 players, but for more, it punishes those in the center too much.
Already the people on the edges have a distinct advantage (geo spots, etc)
Wouldn't the edge people also have a shitload of flat, featureless highground land all the way to the corners with inverted heightmap?