vid_us_probe.dart 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import 'dart:typed_data';
  2. import 'package:vid/us/vid_us_application.dart';
  3. import 'package:vid/us/vid_us_data_reader.dart';
  4. import 'package:vid/us/vid_us_data_writer.dart';
  5. enum VidUsProbeType {
  6. Undefined,
  7. Linear,
  8. Convex,
  9. Sector,
  10. }
  11. class VidUsProbe {
  12. late String _name;
  13. late VidUsProbeType _type;
  14. late VidUsApplication _application;
  15. late double _frameRate;
  16. String get name => _name;
  17. VidUsProbeType get type => _type;
  18. VidUsApplication get application => _application;
  19. double get frameRate => _frameRate;
  20. VidUsProbe(String name, VidUsProbeType type, VidUsApplication application,
  21. double frameRate) {
  22. _name = name;
  23. _type = type;
  24. _application = application;
  25. _frameRate = frameRate;
  26. }
  27. Uint8List toBytes() {
  28. var writer = new VidUsDataWriter();
  29. writer.writeString(_name);
  30. writer.writeByte(_type.index);
  31. writer.writeBytes(_application.toBytes());
  32. writer.writeDouble(_frameRate);
  33. return writer.data;
  34. }
  35. static VidUsProbe fromBytes(Uint8List bytes) {
  36. var reader = new VidUsDataReader(bytes);
  37. var name = reader.readString();
  38. var type = VidUsProbeType.values[reader.readByte()];
  39. var application = VidUsApplication.fromBytes(reader.readBytes());
  40. var frameRate = reader.readDouble();
  41. return new VidUsProbe(name, type, application, frameRate);
  42. }
  43. }