Giter Site home page Giter Site logo

Comments (4)

Querz avatar Querz commented on June 3, 2024

and when you then use the list at a completely unrelated place you suddenly get an exception.

This would not change by passing the type class to the constructor.
The point of having generics is that the type is already ensured at compile time, therefore the actual solution would be to remove all convenience methods that add values directly to a ListTag like e.g. ListTag#addString(). I made a compromise by having generic methods on the one hand that use the Tag classes for type safety and on the other hand having convenience methods that are consistent with the other structure tags (CompoundTag and StructTag).

from nbt.

Marcono1234 avatar Marcono1234 commented on June 3, 2024

When the type is passed to the constructor it would already be initialized when you try to add an element of the incorrect type.

Then the special case in checkValue would have to be removed

if (typeID != 0 && t.getID() != typeID) {

And the modification of the tag type in the add method

typeID = t.getID();
typeClass = t.getClass();

Additionally it would probably be good to have a protected or private method addUnchecked(Tag<?>) to prevent all the casts and SuppressWarnings annotations for the type specific methods.

from nbt.

Querz avatar Querz commented on June 3, 2024

I'll have too look into how deserialisation works with that, because the type of the list is read after it's been instantiated.

from nbt.

Querz avatar Querz commented on June 3, 2024

An empty ListTag can now only be untyped if created using the protected static method ListTag.createUnchecked(). ListTag#getTypeClass() will return EndTag.class if the type is not specified and the ListTag is empty. From this untyped state, the LisTag can only ever change it's type once using any of the set(), add...() or as...List() methods. A ListTag of type EndTag can not be created anymore. If attempting to do so it will throw an IllegalArgumentException.

#clone(), #equals() and #hashCode() have been adjusted to include the type class in their actions.

The ListTag constructor now needs a mandatory type class additionally to the ListTag generic type specification. The type class passed to the constructor must be of the exact same type as the generic type.

ListTag<StringTag> s = new ListTag<>(StringTag.class);
ListTag<ListTag<?>> l = new ListTag<>(ListTag.class);

from nbt.

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.