opentag3d.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. """OpenTag3D NDEF encoder for NTAG tags.
  2. Encodes spool data as an OpenTag3D NDEF message ready to write to NTAG
  3. starting at page 4 (after the manufacturer pages).
  4. NDEF structure:
  5. [CC: E1 10 12 00] - Capability Container (4 bytes, page 4)
  6. [TLV: 03 len] - NDEF Message TLV (2 bytes)
  7. [NDEF record header] - D2 15 payload_len (3 bytes: MB|ME|SR, TNF=MIME, type_len=21)
  8. [Type: "application/opentag3d"] - 21 bytes
  9. [Payload: OpenTag3D fields] - 102 bytes
  10. [Terminator: FE] - 1 byte
  11. """
  12. import logging
  13. import struct
  14. from backend.app.api.routes._spoolman_helpers import MappedSpoolFields
  15. from backend.app.models.spool import Spool
  16. logger = logging.getLogger(__name__)
  17. OPENTAG3D_MIME_TYPE = b"application/opentag3d"
  18. PAYLOAD_SIZE = 102
  19. TAG_VERSION = 1000 # v1.000
  20. def _build_payload_from_dict(data: dict) -> bytes:
  21. """Build 102-byte OpenTag3D core payload from a plain field dict.
  22. Accepted keys: material, subtype, brand, color_name, rgba,
  23. label_weight, nozzle_temp_min. All are optional and default to
  24. safe zero/empty values when missing.
  25. """
  26. buf = bytearray(PAYLOAD_SIZE)
  27. # 0x00: Tag Version (2 bytes, big-endian)
  28. struct.pack_into(">H", buf, 0x00, TAG_VERSION)
  29. # 0x02: Base Material (5 bytes, UTF-8, space-padded)
  30. material = (data.get("material") or "")[:5].ljust(5)
  31. buf[0x02:0x07] = material.encode("utf-8")[:5]
  32. # 0x07: Material Modifiers (5 bytes, UTF-8, space-padded)
  33. modifiers = (data.get("subtype") or "")[:5].ljust(5)
  34. buf[0x07:0x0C] = modifiers.encode("utf-8")[:5]
  35. # 0x0C: Reserved (15 bytes, zero-fill) — already zero
  36. # 0x1B: Manufacturer (16 bytes, UTF-8, space-padded)
  37. brand = (data.get("brand") or "")[:16].ljust(16)
  38. buf[0x1B:0x2B] = brand.encode("utf-8")[:16]
  39. # 0x2B: Color Name (32 bytes, UTF-8, space-padded)
  40. color_name = (data.get("color_name") or "")[:32].ljust(32)
  41. buf[0x2B:0x4B] = color_name.encode("utf-8")[:32]
  42. # 0x4B: Color 1 RGBA (4 bytes)
  43. rgba_hex = data.get("rgba") or "00000000"
  44. try:
  45. rgba_bytes = bytes.fromhex(rgba_hex[:8].ljust(8, "0"))
  46. except ValueError:
  47. logger.warning("OpenTag3D encoder: invalid rgba value %r — encoding as transparent black", rgba_hex)
  48. rgba_bytes = b"\x00\x00\x00\x00"
  49. buf[0x4B:0x4F] = rgba_bytes[:4]
  50. # 0x4F: Colors 2-4 (12 bytes, zero-fill) — already zero
  51. # 0x5C: Target Diameter (2 bytes, big-endian) — 1750 = 1.75mm
  52. struct.pack_into(">H", buf, 0x5C, 1750)
  53. # 0x5E: Target Weight (2 bytes, big-endian) — clamped to uint16 (0–65535)
  54. label_weight = max(0, min(int(data.get("label_weight") or 0), 65535))
  55. struct.pack_into(">H", buf, 0x5E, label_weight)
  56. # 0x60: Print Temp (1 byte) — nozzle_temp_min / 5, clamped to 0–255
  57. buf[0x60] = max(0, min(int((data.get("nozzle_temp_min") or 0) // 5), 255))
  58. # 0x61: Bed Temp (1 byte) — not tracked
  59. # 0x62: Density (2 bytes) — not tracked
  60. # 0x64: Transmission Distance (2 bytes) — not tracked
  61. # All zero — already zero
  62. return bytes(buf)
  63. def _build_payload(spool: Spool) -> bytes:
  64. """Build 102-byte OpenTag3D core payload from a Spool ORM object."""
  65. return _build_payload_from_dict(
  66. {
  67. "material": spool.material,
  68. "subtype": spool.subtype,
  69. "brand": spool.brand,
  70. "color_name": spool.color_name,
  71. "rgba": spool.rgba,
  72. "label_weight": spool.label_weight,
  73. "nozzle_temp_min": spool.nozzle_temp_min,
  74. }
  75. )
  76. def _encode_ndef(payload: bytes) -> bytes:
  77. """Wrap a 102-byte payload in CC + TLV + NDEF record + terminator."""
  78. mime_type = OPENTAG3D_MIME_TYPE
  79. # NDEF record: MB|ME|SR (0xD0) | TNF=MIME (0x02) => 0xD2
  80. record_header = bytes([0xD2, len(mime_type), len(payload)])
  81. ndef_record = record_header + mime_type + payload
  82. # TLV: type=0x03 (NDEF Message), length
  83. ndef_len = len(ndef_record)
  84. if ndef_len < 0xFF:
  85. tlv = bytes([0x03, ndef_len])
  86. else:
  87. tlv = bytes([0x03, 0xFF, (ndef_len >> 8) & 0xFF, ndef_len & 0xFF])
  88. cc = bytes([0xE1, 0x10, 0x12, 0x00])
  89. terminator = bytes([0xFE])
  90. return cc + tlv + ndef_record + terminator
  91. def encode_opentag3d(spool: Spool) -> bytes:
  92. """Encode spool ORM object as OpenTag3D NDEF message.
  93. Returns raw bytes ready to write to NTAG starting at page 4.
  94. """
  95. return _encode_ndef(_build_payload(spool))
  96. def encode_opentag3d_from_mapped(mapped: MappedSpoolFields) -> bytes:
  97. """Encode a Spoolman-mapped spool dict as OpenTag3D NDEF message.
  98. Accepts the dict produced by ``_map_spoolman_spool`` (or any dict
  99. with the same field names). Returns raw bytes ready to write to
  100. NTAG starting at page 4.
  101. """
  102. return _encode_ndef(_build_payload_from_dict(mapped))