Game.cpu.generatePixel change



  • @artch I neither unterstand the initial post nor your response.

    What's the problem that you intended to fix? How will this change make the situation better?

    Others point to high amount of credit farming, though this is only possible if other players are still in possession of credits. As far as I understood the mechanic, pixels encourage saving CPU, which is good for server cost. Now I am unsure whether I should still generate pixels.

    Or whether I should play less Screeps and just generate pixels, then they would not interfere at all, because there are no rooms and nothing else using CPU...

    Yeah, I just can't follow your train of thought here at all...

    ๐Ÿค๐Ÿ‘


  • I would prefer some other method of limiting it that did not result in a skipped tick. It feels like a breaking change.

    Battle in progress? Losing a tick can mean death. Use % on game time to do recurring tasks on an interval? Might get skipped. Optimize your creep size and spawning to arrive just-in-time for when the previous creep would die? Now it wonโ€™t get there in time because you might lose some actions along the way.

    There are probably several other cases that I cannot think of that might break from this. With this change it seems the best action to prevent breaking is to stop generating pixels completely. I realize the cases I mentioned can be coded around but it seems to be a glitchy requirement to have to consider.

    โ˜

  • Dev Team

    There is no "problem" we are trying to fix. Quite the opposite, we want to create a new coding problem here for those generating pixels. We want to create more coding challenge in it besides simple CPU consumption.

    We understand some may get upset since more coding efforts now should be put to continue generating pixels. But this is exactly the idea. Challenges are fun!

    ๐Ÿ™„


  • I agree that more challenge should be introduced for generating pixels, but I wish it was challenge added into the world of the game, not an arbitrary limitation that will take away from other parts of the game.

    Make us interact with something in the world to generate them, put them inside walls so we have to tunnel to it, make us cooperate somehow to get them. Give us new things to do in the game world, donโ€™t make everything existing more difficult for this.

    Or you could even bring this limitation into the game world and localize it so we generate the pixels in a room, and that room loses all actions, that way it could be used more creatively and without causing headaches for all of your code everywhere.

    Not all challenges are fun. This one does not sound fun to me.

    โ˜


  • I agree to Helam.

    In my initial steam review of the game I wrote something like โ€œall the problems are REAL coding problemsโ€œ and how I liked that. I.e. The game mechanics make sense and all that's left is coding.

    This challenge sounds not fun, but like integrating with a weird vendor API at work.

    Also a winning way around this mechanic is giving up the game, which you should not encourage. I.e. If I do not care about creeps getting anywhere and if I do not care about maximum map coverage, then I will just go for three rooms, keep them alive and defended and generate pixels, filling my Steam wallet with money to buy other games. Why would you encourage that?



  • Welp, I guess I am going to ignore pixels entirely. This is, respectfully, a stupid decision. Losing 100's of intents plus the energy that comes inherently with those intents just took pixels off the table in my code and I will be commenting out that function.


  • Dev Team

    @nobodysnightmare said in Game.cpu.generatePixel change:

    In my initial steam review of the game I wrote something like โ€œall the problems are REAL coding problemsโ€œ and how I liked that. I.e. The game mechanics make sense and all that's left is coding. This challenge sounds not fun, but like integrating with a weird vendor API at work.

    I don't agree this isn't a real coding problem. The limitation is artificial, but so are any other gameplay limitations in the game. This limitation forces you to think what you would like to perform on this tick - game actions or pixel generation. And now the real coding problem is how to decide this. How to predict what is the best tick to call generatePixel. The criteria was very simple before: run it whenever you have spare 5000 CPU. It's just one if condition. Now this decision is a bit more complicated and involves more factors.



  • in the end i see that it will result with ppl dealing with this by doing // Game.cpu.generatePixel()

    Generating pixels was mostly a credit maker, and I really doubt ppl will want to refactor codebase to make it not get broken by implementing workarounds for new logic.

    Also it's quite impossible for ppl that are combat-active to use this feature because of skip-a-tick.

    ๐Ÿ‘†


  • What @gadjung said.

    You either generate pixels for credits (like anything else in the game), or because you want to collect decorations.

    IMO, it is easy to generate pixels and to use them (minus some severe limitations that don't allow you to generate decorations via code). The challenge is getting those rarity 4+ decorations and not a bunch of level 1 vendor trash.

    Here are a couple of ideas.

    1. Allow decoration generation from pixels and recycling via code.*
    2. Allow you decorations and their attributes to be accessed via code.*
    3. If the concern is too many pixels being generated, you can then only allow them to be generated with a cooldown or other measure.

    Pausing code to generate a Pixel kind of defeats the purpose of having an automated bot and I will be selling off all my pixels and decorations and commenting out the code. After all, they are just decorations and does nothing functionally.

    *this will incentivize more people to actually use pixels

    ๐Ÿ‘†๐Ÿ‘‚๐Ÿ‘


  • Also, since most active ppl are preparing for seasonal, this is quite ill-picked timing (and encourages even more abandoning feature altogether by players)

    ๐Ÿ‘†


  • @artch said in Game.cpu.generatePixel change:

    @nobodysnightmare said in Game.cpu.generatePixel change:

    In my initial steam review of the game I wrote something like โ€œall the problems are REAL coding problemsโ€œ and how I liked that. I.e. The game mechanics make sense and all that's left is coding. This challenge sounds not fun, but like integrating with a weird vendor API at work.

    I don't agree this isn't a real coding problem. The limitation is artificial, but so are any other gameplay limitations in the game. This limitation forces you to think what you would like to perform on this tick - game actions or pixel generation. And now the real coding problem is how to decide this. How to predict what is the best tick to call generatePixel. The criteria was very simple before: run it whenever you have spare 5000 CPU. It's just one if condition. Now this decision is a bit more complicated and involves more factors.

    I can't disagree more. Yes, technically you're right, but you're forgetting about the most important factor in all this: value to the game, reason to participate, merit (fun) in the mechanic. Focusing my codebase's features around one incredibly negligible factor is not fun, I'll either just ignore pixels from here on out or buy them off the market from players who most likely just stopped playing the game because of (/for) pixel generation. "[A] limitation that forces you to think what you would like to perform on this tick"? "Now this decision is a bit more complicated and involves more factors"? Well, let me just get my unused cpu active on another shard and slap an

    if (Game.shard.name == "shard1") return;

    at the top of my main loop after the pixel generation statement. Again, this really does not add anything of value or any challenge to the game - especially because you can just cheese it like that. What I would like to see instead is an actual challenge that doesn't reek of friday night hotfix deployment, but is actually thought through.

    What could this be? Well, for example making pixel generation a chance based on certain factors and the player has the challenge to increase the odds of success. Another could be that there are chances of increased or decreased cpu cost when generating and the player influences that in some way.

    Another way is a more far reaching effect on the actual game world as has been proposed by others. Make players dedicate a room to it, or make players gather it season 1 style. There are many ways to make players work for it and even making this a breaking change of sorts without it just being a purely frustrating change devoid of substance.

    ๐Ÿ‘


  • one idea i floated on slack :

    at cross-highways there's structure to which creep needs to go with X resource/Energy, use generatePixel() and that uses resource and bucket. goes within theme of game, introduces new challenges and mechanics within game framework, like defending / blocking said structure and makes idle pixel-farming harder

    ๐Ÿ‘

  • Dev Team

    @gadjung said in Game.cpu.generatePixel change:

    in the end i see that it will result with ppl dealing with this by doing // Game.cpu.generatePixel()

    We're fine with less people generating pixels now. This is expected and will drive pixels price higher for those who actually manage to overcome this challenge.


  • Dev Team

    @rayderblitz @Gadjung We don't consider any challenges that involve world game objects in pixel-related mechanics.



  • @artch said in Game.cpu.generatePixel change:

    @rayderblitz @Gadjung We don't consider any challenges that involve world game objects in pixel-related mechanics.

    That makes sense for buying them and using them, but for generating them that seems like a strange policy.

    Also, you are involving game world objects now - all of them. Every single object in my empire has to pause to generate pixels.

    ๐Ÿ‘†


  • @artch said in Game.cpu.generatePixel change:

    I don't agree this isn't a real coding problem. The limitation is artificial, but so are any other gameplay limitations in the game. This limitation forces you to think what you would like to perform on this tick - game actions or pixel generation. And now the real coding problem is how to decide this. How to predict what is the best tick to call generatePixel. The criteria was very simple before: run it whenever you have spare 5000 CPU. It's just one if condition. Now this decision is a bit more complicated and involves more factors.

    This is not like other limitations in the game. Other limitations exist in the game world and the decisions involved are about what your creeps/structures should do in the game world to react to those challenges or limitations in the game world. The whole game is about writing code to make better decisions in the game world.

    This limitation or โ€œdecisionโ€ you want to introduce is very different because it takes you out of the world and you are basically choosing:

    1. Play the game this tick / participate in the world this tick
    2. Donโ€™t play the game this tick / donโ€™t participate in the world this tick

    This is not an interesting choice and it seems to go against the very purpose of the game.

    I believe many players have written their code in such a way that something useful is happening EVERY tick. I remember watching one of @Mototroller โ€™s rooms a long time ago and being so impressed that a remote mining creep showed up and moved into place on the exact tick that the previous creep died. It was beautiful in a way. There are many other types of things that can be optimized in similar ways that I believe many players have worked on. Skipping ticks entirely throws a wrench in all of this.

    Choices and limitations are good, but I think it is bad if one of the options in the choice is to stop playing the game entirely for a tick.

    Yes we can come up with complicated ways of deciding, but it places unnecessary complications on EVERY other part of your code, and still results in nullifying ALL of your code for a tick to perform one small action.



  • I suspect that this decision isn't about game play, but about how you can purchase pixels for cheaper on the steam marketplace than you can by buying it direct from screeps.


  • Dev Team

    @helam said in Game.cpu.generatePixel change:

    Choices and limitations are good, but I think it is bad if one of the options in the choice is to stop playing the game entirely for a tick.

    Why stop playing the game entirely for a tick? Take note generatePixel call doesn't cancel your tick, it just cancels your intents, i.e. creeps and structures commands. You still can process data, memory, perform calculations, build caches, make estimations, tune your heuristics. This is totally up to you how you overcome this challenge with maximum efficiency.


  • Dev Team

    @crazydubc It would be very strange if players sold items on the community marketplace for a higher price than the official store, their offer would be quite pointless then ๐Ÿ™‚

    โ˜๐Ÿค”


  • @artch imo idea of wrapping "You still can process data, memory, perform calculations, build caches, make estimations, tune your heuristics" around 'generatePixel()' is quite pointless.

    I'm aware that one could do 'refresh all CostMatrixes and all Paths in all rooms' on 'generatePixel()' lost tick, but most (if not all) prefer to do, and is doing that just fine, without losing a tick.

    I think i would not be wrong to say that in general, what players DO NOT want, is to lose a tick of intents, especially since gain itself is barely above nil

    ๐Ÿ‘๐Ÿ‘†๐Ÿ‘