Jump to content
  • Sign Up

Search the Community

Showing results for tags 'what-should-i-put-here'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • ClassiCube
    • Announcements
    • ClassiCube Central
    • I Need Help!
    • Tutorials
  • Other
    • General Tomfoolery
    • Vidya Gaems
    • Techno Babble

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 1 result

  1. Overrideable Blocks: basically a normal, renderable block that can also be placed over, like tall grass or snow in MC DEPRECATED: not useful unless you HAVE to input an id for each possible block position, which no packet does atm. Noop ID: Reserve the highest id representable (currently 0x3FF, 1023) as a "noop" - this means that trying to place this block in any way results in nothing happening, leaving the current block in its place Extended Extended IDs: Increase the highest valid block to 1023. Will need to find a way to fit the extra 256 ids into the system MCGalaxy uses, which should be possible if so much as a single free bit is found in all size-constrained structures. Advanced Filling: Adds the following: A slight modification on how block indices are used: Indexes -1 to -256 mean "skip forward this many indices". This means, for the most common operations (large fills or copies, for example), poorly-compressing number changes are replaced with long runs of a few numbers (with the most common case of -1 being 4 FF bytes), all at the low cost of shrinking the maximum world area size by 256 - assuming unsigned ints for the index are even enforced, otherwise there's no change! Paletted Bulk Update: Many operations tend to modify a large amount of blocks, but only do so with a few block types. This packet takes advantage of this redundancy to decrease size of payload data. TODO: Check if this is worthwhile in bandwidth. Count is an unsigned integer, just like in BulkBlockUpdate 16 block definitions (totaling 16 bytes for non-extid or 20 bytes for extid) 256 ints for block indices, same as BulkBlockUpdate 128 bytes for what block id is used for this position. Bulker Block Update: Same as BulkBlockUpdate and its paletted counterpart, just with all fields increased in size by around 16x, creating a larger packet that should be able to compress better over the network. (if you aren't transparently compressing packets, it might be worthwhile to make these a variable-length packet for a compressed version of this) Count can become a short or remain as a single byte, whose value is multiplied by 16 to get the used count. Up to 15 extra SetBlock packets after this should be small enough to not really matter. NEW! 01-12-23 Model part properties: 2 new property type values, each one being a bitmask, with each bit enabling or disabling one of the 64 parts of a model. Useful for making multiple small variations of a single model without relying on transparent textures. Alternatively, more properties can be used, and a way to turn such info into an animdata field added to allow for further per-model customization. Sounds: Already explained here:
×
×
  • Create New...