Files
orx/orx-compositor/src/commonMain/kotlin/Compositor.kt
2022-06-19 08:06:16 +02:00

319 lines
10 KiB
Kotlin

package org.openrndr.extra.compositor
import org.openrndr.Extension
import org.openrndr.Program
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.*
import org.openrndr.extra.fx.blend.SourceIn
import org.openrndr.extra.fx.blend.SourceOut
import org.openrndr.extra.parameters.BooleanParameter
import org.openrndr.extra.parameters.Description
import org.openrndr.math.Matrix44
private val postBufferCache = mutableListOf<ColorBuffer>()
fun RenderTarget.deepDestroy() {
val cbcopy = colorAttachments.map { it }
val dbcopy = depthBuffer
detachDepthBuffer()
detachColorAttachments()
cbcopy.forEach {
when (it) {
is ColorBufferAttachment -> it.colorBuffer.destroy()
is CubemapAttachment -> it.cubemap.destroy()
is ArrayTextureAttachment -> it.arrayTexture.destroy()
is ArrayCubemapAttachment -> it.arrayCubemap.destroy()
else -> {}
}
}
dbcopy?.destroy()
destroy()
}
/**
* A single layer representation
*/
@Description("Layer")
open class Layer internal constructor(val bufferMultisample: BufferMultisample = BufferMultisample.Disabled) {
var copyLayers: List<Layer> = listOf()
var sourceOut = SourceOut()
var sourceIn = SourceIn()
var maskLayer: Layer? = null
var drawFunc: () -> Unit = {}
val children: MutableList<Layer> = mutableListOf()
var blendFilter: Pair<Filter, Filter.() -> Unit>? = null
val postFilters: MutableList<Pair<Filter, Filter.() -> Unit>> = mutableListOf()
var colorType = ColorType.UINT8
private var unresolvedAccumulation: ColorBuffer? = null
var accumulation: ColorBuffer? = null
@BooleanParameter("enabled")
var enabled = true
@BooleanParameter("Invert mask")
var invertMask = false
var clearColor: ColorRGBa? = ColorRGBa.TRANSPARENT
private var layerTarget: RenderTarget? = null
val result: ColorBuffer?
get() {
return layerTarget?.colorBuffer(0)
}
/**
* draw the layer
*/
fun drawLayer(drawer: Drawer) {
if (!enabled) {
return
}
val activeRenderTarget = RenderTarget.active
if (shouldCreateLayerTarget(activeRenderTarget)) {
createLayerTarget(activeRenderTarget, drawer, bufferMultisample)
}
layerTarget?.let { target ->
if (copyLayers.isNotEmpty()) {
copyLayers.forEach {
drawer.isolatedWithTarget(target) {
clearColor?.let {
drawer.clear(it)
}
it.layerTarget?.let { copyTarget ->
if (it.bufferMultisample == BufferMultisample.Disabled) {
drawer.image(copyTarget.colorBuffer(0))
} else {
copyTarget.colorBuffer(0).copyTo(it.accumulation!!)
drawer.image(it.accumulation!!)
}
}
}
}
}
maskLayer?.let {
if (it.shouldCreateLayerTarget(activeRenderTarget)) {
it.createLayerTarget(activeRenderTarget, drawer, it.bufferMultisample)
}
it.layerTarget?.let { maskRt ->
drawer.isolatedWithTarget(maskRt) {
if (copyLayers.isEmpty()) {
clearColor?.let { color ->
drawer.clear(color)
}
}
drawer.fill = ColorRGBa.WHITE
drawer.stroke = ColorRGBa.WHITE
it.drawFunc()
}
}
}
drawer.isolatedWithTarget(target) {
if (copyLayers.isEmpty()) {
clearColor?.let {
drawer.clear(it)
}
}
drawFunc()
children.forEach {
it.drawLayer(drawer)
}
}
if (postFilters.size > 0) {
val sizeMismatch = postBufferCache.isNotEmpty()
&& (postBufferCache[0].width != activeRenderTarget.width
|| postBufferCache[0].height != activeRenderTarget.height)
if (sizeMismatch) {
postBufferCache.forEach { it.destroy() }
postBufferCache.clear()
}
if (postBufferCache.isEmpty()) {
postBufferCache += persistent {
colorBuffer(activeRenderTarget.width, activeRenderTarget.height,
activeRenderTarget.contentScale, type = colorType)
}
postBufferCache += persistent {
colorBuffer(activeRenderTarget.width, activeRenderTarget.height,
activeRenderTarget.contentScale, type = colorType)
}
}
}
val layerPost = postFilters.let { filters ->
val targets = postBufferCache
val result = filters.foldIndexed(target.colorBuffer(0)) { i, source, filter ->
val localTarget = targets[i % targets.size]
filter.first.apply(filter.second)
filter.first.apply(source, localTarget)
localTarget
}
result
}
maskLayer?.let {
val maskFilter = if (invertMask) sourceOut else sourceIn
maskFilter.apply(arrayOf(layerPost, it.layerTarget!!.colorBuffer(0)), layerPost)
}
val localBlendFilter = blendFilter
if (localBlendFilter == null) {
drawer.isolatedWithTarget(activeRenderTarget) {
drawer.ortho()
drawer.view = Matrix44.IDENTITY
drawer.model = Matrix44.IDENTITY
if (bufferMultisample == BufferMultisample.Disabled) {
drawer.image(layerPost, layerPost.bounds, drawer.bounds)
} else {
layerPost.copyTo(accumulation!!)
drawer.image(accumulation!!, layerPost.bounds, drawer.bounds)
}
}
} else {
localBlendFilter.first.apply(localBlendFilter.second)
activeRenderTarget.colorBuffer(0).copyTo(unresolvedAccumulation!!)
if (bufferMultisample == BufferMultisample.Disabled) {
localBlendFilter.first.apply(arrayOf(unresolvedAccumulation!!, layerPost), unresolvedAccumulation!!)
} else {
layerPost.copyTo(accumulation!!)
localBlendFilter.first.apply(arrayOf(unresolvedAccumulation!!, accumulation!!), unresolvedAccumulation!!)
}
if (activeRenderTarget !is ProgramRenderTarget) {
unresolvedAccumulation!!.copyTo(target.colorBuffer(0))
}
unresolvedAccumulation!!.copyTo(activeRenderTarget.colorBuffer(0))
}
}
}
private fun shouldCreateLayerTarget(activeRenderTarget: RenderTarget): Boolean {
return layerTarget == null
|| ((layerTarget?.width != activeRenderTarget.width || layerTarget?.height != activeRenderTarget.height)
&& activeRenderTarget.width > 0 && activeRenderTarget.height > 0)
}
private fun createLayerTarget(
activeRenderTarget: RenderTarget, drawer: Drawer, bufferMultisample: BufferMultisample
) {
layerTarget?.deepDestroy()
layerTarget = renderTarget(
activeRenderTarget.width, activeRenderTarget.height,
activeRenderTarget.contentScale, bufferMultisample
) {
colorBuffer(type = colorType)
depthBuffer()
}
if (bufferMultisample != BufferMultisample.Disabled) {
accumulation?.destroy()
accumulation = colorBuffer(
activeRenderTarget.width, activeRenderTarget.height,
activeRenderTarget.contentScale, type = colorType
)
}
unresolvedAccumulation?.destroy()
unresolvedAccumulation = colorBuffer(
activeRenderTarget.width, activeRenderTarget.height,
activeRenderTarget.contentScale, type = colorType
)
layerTarget?.let {
drawer.withTarget(it) {
drawer.clear(ColorRGBa.TRANSPARENT)
}
}
}
}
/**
* create a layer within the composition
*/
fun Layer.layer(function: Layer.() -> Unit): Layer {
val layer = Layer().apply { function() }
children.add(layer)
return layer
}
/**
* create a layer within the composition with a custom [BufferMultisample]
*/
fun Layer.layer(bufferMultisample: BufferMultisample, function: Layer.() -> Unit): Layer {
val layer = Layer(bufferMultisample).apply { function() }
children.add(layer)
return layer
}
/**
* set the draw contents of the layer
*/
fun Layer.draw(function: () -> Unit) {
drawFunc = function
}
/**
* use the layer as a base
*/
fun Layer.use(vararg layer: Layer) {
copyLayers = layer.toList()
}
/**
* the drawing acts as a mask on the layer
*/
fun Layer.mask(function: () -> Unit) {
maskLayer = Layer().apply {
this.drawFunc = function
}
}
/**
* add a post-processing filter to the layer
*/
fun <F : Filter> Layer.post(filter: F, configure: F.() -> Unit = {}): F {
@Suppress("UNCHECKED_CAST")
postFilters.add(Pair(filter as Filter, configure as Filter.() -> Unit))
return filter
}
/**
* add a blend filter to the layer
*/
fun <F : Filter> Layer.blend(filter: F, configure: F.() -> Unit = {}): F {
@Suppress("UNCHECKED_CAST")
blendFilter = Pair(filter as Filter, configure as Filter.() -> Unit)
return filter
}
class Composite : Layer() {
fun draw(drawer: Drawer) {
drawLayer(drawer)
}
}
/**
* create a layered composition
*/
fun compose(function: Layer.() -> Unit): Composite {
val root = Composite()
root.function()
return root
}
class Compositor : Extension {
override var enabled: Boolean = true
var composite = Composite()
override fun afterDraw(drawer: Drawer, program: Program) {
drawer.isolated {
drawer.defaults()
composite.drawLayer(drawer)
}
}
}