Canvas basic image submission fully working

This commit is contained in:
Ada 2025-02-27 07:50:49 +10:00
parent b28bac1f5f
commit 43d6bb298d
4 changed files with 8 additions and 12 deletions

View file

@ -17,6 +17,4 @@ CanvasEntityRenderer::~CanvasEntityRenderer() { }
void CanvasEntityRenderer::doRenderUpdateAsynchronousTyped(const TypedEntityPointer& entity) {
_texture = entity->getTexture();
qDebug() << "CanvasEntityRenderer::doRenderUpdateAsynchronousTyped";
}

View file

@ -116,6 +116,7 @@ void CanvasEntityItem::setImageData(const QByteArray& data) {
_texture = texture;
setNeedsRenderUpdate(true);
somethingChangedNotification();
}
void CanvasEntityItem::setImageSubData(const QByteArray& data, uint32_t dx, uint32_t dy, uint32_t dw, uint32_t dh, uint32_t sx, uint32_t sy, uint32_t sw, uint32_t sh) {

View file

@ -2709,7 +2709,3 @@ void EntityScriptingInterface::canvasSubmitImage(const QUuid& entityID, const QB
qCWarning(entities) << "canvasSubmitImage called on a non-canvas entity " << entityID;
}
}
void EntityScriptingInterface::canvasSubmitSubImage(const QUuid& entityID, const QByteArray& imageData, const QVector<uint32_t>& destRect, const QVector<uint32_t>& srcRect) {
qCWarning(entities) << "canvasSubmitSubImage unimplemented! called on " << entityID;
}

View file

@ -2196,15 +2196,16 @@ public slots:
Q_INVOKABLE const EntityPropertyInfo getPropertyInfo(const QString& propertyName) const;
/*@jsdoc
* TODO
* Submits an sRGBA8 buffer to a Canvas entity. The buffer must be the correct
* size for the canvas entity (4 * width * height) or nothing will happen.
* This function only has client-side effects, the image data will not be
* sent across the network.
* @function Entities.canvasSubmitImage
* @param {Uuid} entityID - The Canvas entity that this image will be submitted to.
* @param {ArrayBuffer} imageData - The sRGBA8 image data to submit.
*/
Q_INVOKABLE void canvasSubmitImage(const QUuid& entityID, const QByteArray& imageData);
/*@jsdoc
* TODO
*/
Q_INVOKABLE void canvasSubmitSubImage(const QUuid& entityID, const QByteArray& imageData, const QVector<uint32_t>& destRect, const QVector<uint32_t>& srcRect);
signals:
/*@jsdoc
* Triggered on the client that is the physics simulation owner during the collision of two entities. Note: Isn't triggered