Giter Club home page Giter Club logo

Comments (3)

DreadKnight avatar DreadKnight commented on June 20, 2024

I'm aware of this one, no open issue for it already though afaik. I was thinking that this wasn't easily fixable at the time.

from ancientbeast.

andretchen0 avatar andretchen0 commented on June 20, 2024

I was thinking that this wasn't easily fixable at the time.

The whole thing is in need of a rethink/refactor, I think. To give you an idea:

The Creature Grid / Dash isn't isolated, either as a module or otherwise. It's a collection of attributes and methods in interface.js and there's a fair amount of leakage. E.g., the Dash system works by setting an attribute on interface that's picked up during button presses, to then be sent to the Priest's materialize method.

And here's how the priest ability says "choose a creature to summon":

	// Ask the creature to summon
	G.UI.materializeToggled = true;
	G.UI.toggleDash('randomize');

... so it's got to muck around with UI internals, despite not having a direct reference to UI. And then it doesn't even get a direct reference back. Some part of interface has to in turn muck around in the ability like so:

	activeCreature.abilities[3].materialize(this.lastViewedCreature);

Not pointing fingers, but just to walk you through what's going on: here are the assumptions behind and code brittleness introduced with just that single line:

  • activeCreature has to have a field called abilities.
  • That field has to be an array that has at least 4 slots.
  • The 3 slot in the array has to have a materialize method.

And that doesn't include how it is that interface decides that this activeCreature is a creature who can summon.

The whole thing could be a lot less brittle and a lot less complicated if it were called like this:

	// Ask the creature to summon
	G.chooseCreatureTypeFrom(this.creature.getSummonableCreatureTypes()).then(type => this.materialize(type));
  • No special interface code to figure out if the current creature can summon and is currently summoning.
  • No knowledge of interface at all in the ability.

from ancientbeast.

andretchen0 avatar andretchen0 commented on June 20, 2024

I have a coded solution. I'll wait on feedback from this discussion before finalizing and opening a PR.

from ancientbeast.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.