Files
cell/scripts/docstrings.cm

1130 lines
38 KiB
Plaintext

prosperon.c_types.sprite[cell.DOC] = {}
prosperon.c_types.sprite[cell.DOC][cell.DOC] = `A 'sprite' is a simple struct for 2D drawing. It stores a rectangle (pos + size),
UV coordinates, color, and layer, as well as an associated 'image' object. The sprite
can be drawn via GPU or SDL_Renderer. Freed when no JS references remain.
`;
prosperon.c_types.sprite[cell.DOC].set_affine = `Update this sprite's position and size from a transform's pos and scale.
:param transform: The transform whose pos/scale will overwrite the sprite's rect.
:return: None
`;
prosperon.c_types.sprite[cell.DOC].set_rect = `Set the sprite's rect (x, y, w, h) directly.
:param rect: An object or array specifying x, y, width, and height.
:return: None
`;
prosperon.c_types.sprite[cell.DOC].set_image = `Assign or replace the sprite's underlying image. Automatically updates UV if
the image has a 'rect' property.
:param image: A JS object representing the image (with .texture, .rect, etc.).
:return: None
`;
prosperon.c_types.sprite[cell.DOC].layer = `Get or set the sprite's z-layer integer. Sprites with higher layers typically
draw on top of lower layers.
:param value: (when setting) An integer specifying the layer.
:return: The current layer (when getting), or None (when setting).
`;
prosperon.c_types.sprite[cell.DOC].color = `Get or set the sprite's color tint as [r, g, b, a].
:param value: (when setting) An array [r, g, b, a] in the 0.0..1.0 range.
:return: The current color array (when getting), or None (when setting).
`;
//
// transform
//
prosperon.c_types.transform[cell.DOC] = {}
prosperon.c_types.transform[cell.DOC][cell.DOC] = `A hierarchical transform storing 3D or 2D position, rotation (as a quaternion),
and scale. Can have a parent transform. Freed automatically on GC.
`;
prosperon.c_types.transform[cell.DOC].pos = `Get or set the transform's position as a 3D vector [x, y, z].
:param value: (when setting) [x, y, z].
:return: The current position vector (when getting), or None (when setting).
`;
prosperon.c_types.transform[cell.DOC].scale = `Get or set the transform's scale as a 3D vector [x, y, z].
For 2D usage, z is often 1.
:param value: (when setting) [sx, sy, sz].
:return: The current scale (when getting), or None (when setting).
`;
prosperon.c_types.transform[cell.DOC].rotation = `Get or set the transform's rotation as a quaternion [x, y, z, w].
Angles in degrees or radians must first be converted prior to making a quaternion.
:param value: (when setting) [qx, qy, qz, qw].
:return: The current quaternion (when getting), or None (when setting).
`;
prosperon.c_types.transform[cell.DOC].parent = `Get or set the transform's parent. If set, this transform becomes a child of
the parent (re-parenting). Must be another transform object or null.
:param value: (when setting) Another transform or null.
:return: The current parent transform (when getting), or None (when setting).
`;
prosperon.c_types.transform[cell.DOC].change_hook = `A user-supplied function that's called whenever the transform's local matrix changes.
If null, no hook is called.
:param value: (when setting) A function.
:return: The current function or null.
`;
prosperon.c_types.transform[cell.DOC].trs = `Set the transform's position, rotation, and scale in one call.
:param pos: [x,y,z] for position, or null to keep existing.
:param quat: [qx,qy,qz,qw] for rotation, or null.
:param scale: [sx,sy,sz] for scale, or null.
:return: None
`;
prosperon.c_types.transform[cell.DOC].phys2d = `Apply simple 2D velocity and angular velocity to this transform.
:param velocity: [vx, vy] added to 'pos' each frame.
:param angularVel: A scalar for rotation in (radians/second).
:param dt: The time delta in seconds.
:return: None
`;
prosperon.c_types.transform[cell.DOC].move = `Translate this transform by the specified vector.
:param delta: [dx, dy, dz] to add to .pos
:return: None
`;
prosperon.c_types.transform[cell.DOC].rotate = `Rotate this transform by an axis+angle.
:param axis: [ax, ay, az] the axis of rotation.
:param angle: The angle in turns or radians (depending on usage).
:return: None
`;
prosperon.c_types.transform[cell.DOC].angle = `Return the transform's rotation about a specified axis (x, y, or z).
For example, angle([1,0,0]) returns the roll about the X-axis.
:param axis: Which axis [1,0,0] or [0,1,0] or [0,0,1].
:return: The numeric angle in 'turns' or radians, depending on usage.
`;
prosperon.c_types.transform[cell.DOC].lookat = `Rotate this transform so it looks toward the given world position.
:param target: [x, y, z] position in world coords.
:return: None
`;
prosperon.c_types.transform[cell.DOC].direction = `Rotate a vector by this transform's rotation, effectively "transforming"
a direction from local space to world space.
:param localDir: [dx, dy, dz] in local transform coordinates.
:return: [dx', dy', dz'] direction in world space.
`;
prosperon.c_types.transform[cell.DOC].unit = `Reset position, rotation, and scale to [0,0,0], identity rotation, and [1,1,1].
:return: None
`;
prosperon.c_types.transform[cell.DOC].rect = `Set this transform's pos and scale from a 2D rect object {x, y, w, h}.
:param rect: Object with .x, .y, .w, .h
:return: None
`;
prosperon.c_types.transform[cell.DOC].array = `Return this transform's matrix as a 16-element float array in column-major order.
:return: An array of 16 floats.
`;
prosperon.c_types.transform[cell.DOC].torect = `Convert transform's 2D position/scale to a rect {x, y, w, h}.
Rotation is currently ignored.
:return: A rect object {x, y, w, h}.
`;
prosperon.c_types.transform[cell.DOC].children = `Return an array of child transforms belonging to this transform.
:return: An array of transform objects.
`;
//
// font
//
prosperon.c_types.font[cell.DOC] = {}
prosperon.c_types.font[cell.DOC][cell.DOC] = `A bitmap or TTF-based font object storing glyph data.
Used for measuring/drawing text. Freed when GC sees no references.
`;
prosperon.c_types.font[cell.DOC].linegap = `Get or set the font's additional line spacing above the built-in metrics.
:param value: (when setting) The new line gap.
:return: The current line gap (when getting), or None (when setting).
`;
prosperon.c_types.font[cell.DOC].height = `The baseline-to-baseline height in pixels.
:return: The font's total height in px.
`;
prosperon.c_types.font[cell.DOC].ascent = `How far above the baseline the font extends.
:return: A scalar float for ascent.
`;
prosperon.c_types.font[cell.DOC].descent = `How far below baseline the font extends.
:return: A scalar float for descent.
`;
prosperon.c_types.font[cell.DOC].text_size = `Measure a piece of text's width/height when rendered with this font.
:param text: The string to measure.
:param letterSpacing: Extra spacing between characters.
:param wrap: If nonzero, word-wrap to this maximum width.
:return: [width, height] as a float array.
`;
//
// datastream
//
prosperon.c_types.datastream[cell.DOC]= {}
prosperon.c_types.datastream[cell.DOC][cell.DOC] = `A streaming media handle, typically for MPEG video. Freed automatically.
`;
prosperon.c_types.datastream[cell.DOC].time = `Return the current playback time in seconds.
:return: Current time as a float in seconds.
`;
prosperon.c_types.datastream[cell.DOC].seek = `Seek to the specified time (in seconds).
:param seconds: The time to jump to in the stream.
:return: None
`;
prosperon.c_types.datastream[cell.DOC].advance = `Advance by a certain number of seconds, decoding video as needed.
:param seconds: The amount of time to skip forward.
:return: None
`;
prosperon.c_types.datastream[cell.DOC].duration = `Return the total duration of the video stream, in seconds, if known.
:return: Float seconds duration, or 0 if unknown.
`;
prosperon.c_types.datastream[cell.DOC].framerate = `Return the framerate (FPS) of the stream if known.
:return: Float frames per second, or 0 if unknown.
`;
prosperon.c_types.datastream[cell.DOC].callback = `A function to call whenever a new frame is decoded. If not set, no callback is invoked.
:param fn: (when setting) A function that receives (surface).
:return: The existing function or null if none.
`;
//
// rtree
//
prosperon.c_types.rtree[cell.DOC] = {}
prosperon.c_types.rtree[cell.DOC][cell.DOC] = `An R-tree for spatial lookups. Insert bounding boxes, query by bounding box, etc.
`;
prosperon.c_types.rtree[cell.DOC].add = `Insert an object that has a 'rect' property {x, y, w, h} into the tree.
:param obj: The object to add (must have rectAtom).
:return: None
`;
prosperon.c_types.rtree[cell.DOC].delete = `Remove an object from the tree. Must match the same rect as used when adding.
:param obj: The object to remove.
:return: None
`;
prosperon.c_types.rtree[cell.DOC].query = `Return an array of objects whose bounding boxes intersect the given rect.
:param rect: {x, y, w, h} bounding region to query.
:return: Array of objects that overlap that region.
`;
prosperon.c_types.rtree[cell.DOC].size = `Indicates how many items are stored in the rtree.
:return: Integer count of items in the tree.
`;
prosperon.c_types.rtree[cell.DOC].forEach = `Call a function for every item in the rtree.
:param callback: A function called with no arguments, or possibly (item).
:return: None
`;
prosperon.c_types.rtree[cell.DOC].has = `Return true if the specified object is in the tree, false otherwise.
:param obj: The object to check.
:return: True if found, else false.
`;
prosperon.c_types.rtree[cell.DOC].values = `Return an array of all items currently in the rtree.
:return: Array of all stored objects.
`;
//
// PHYSFS_File
//
prosperon.c_types.PHYSFS_File[cell.DOC] = {}
prosperon.c_types.PHYSFS_File[cell.DOC][cell.DOC] = `A file handle opened via PhysFS for writing or reading. Freed automatically when references go away.
`;
prosperon.c_types.PHYSFS_File[cell.DOC].close = `Close this file handle. Throws on error.
:return: None
`;
prosperon.c_types.PHYSFS_File[cell.DOC].write = `Write data (string or ArrayBuffer) to the file. Throws on error.
:param data: The data to write (string or ArrayBuffer).
:return: None
`;
prosperon.c_types.PHYSFS_File[cell.DOC].buffer = `Enable an internal write buffer of the given size on this file.
:param size: Size in bytes of the buffer.
:return: None
`;
prosperon.c_types.PHYSFS_File[cell.DOC].tell = `Return the current position in the file.
:return: A numeric offset.
`;
prosperon.c_types.PHYSFS_File[cell.DOC].eof = `Return whether the file pointer is at end-of-file.
:return: True if at EOF, false otherwise.
`;
//
// SDL_Camera
//
prosperon.c_types.SDL_Camera[cell.DOC] = {}
prosperon.c_types.SDL_Camera[cell.DOC][cell.DOC] = `A handle to a physical camera device. Freed when references drop or camera is closed.
`;
prosperon.c_types.SDL_Camera[cell.DOC].frame = `Acquire the latest camera frame (as an SDL_Surface). Returns null if no
new frame is available yet. Throws on error.
:return: SDL_Surface or null.
`;
prosperon.c_types.SDL_Camera[cell.DOC].release_frame = `Release a frame surface previously acquired via camera.frame(). Must be
done for each acquired frame.
:param surface: The surface to release.
:return: None
`;
//
// SDL_Cursor
//
prosperon.c_types.SDL_Cursor[cell.DOC] = {}
prosperon.c_types.SDL_Cursor[cell.DOC][cell.DOC] = `An SDL cursor handle. Freed automatically on GC. No direct methods.
`;
//
// SDL_Window
//
prosperon.c_types.SDL_Window[cell.DOC] = {}
prosperon.c_types.SDL_Window[cell.DOC][cell.DOC] = `An application window, created via prosperon.engine_start or SDL calls. Freed on GC.
`;
prosperon.c_types.SDL_Window[cell.DOC].fullscreen = `Toggle fullscreen mode for this window (SDL_WINDOW_FULLSCREEN).
:return: None
`;
prosperon.c_types.SDL_Window[cell.DOC].make_renderer = `Create an SDL_Renderer for 2D rendering tied to this window.
:param name: The renderer driver name, e.g. "opengl" (may be optional).
:return: An SDL_Renderer object.
`;
prosperon.c_types.SDL_Window[cell.DOC].make_gpu = `Create an SDL_GPUDevice for low-level GPU rendering on this window.
:param debug: If true, enable debugging in the GPU device.
:param driverName: The GPU back-end driver, e.g. "opengl".
:return: An SDL_GPUDevice.
`;
prosperon.c_types.SDL_Window[cell.DOC].keyboard_shown = `Return whether the on-screen keyboard is visible (mobile/tablet).
:return: True if shown, false otherwise.
`;
prosperon.c_types.SDL_Window[cell.DOC].theme = `Currently returns null. Placeholder for retrieving OS window theme info.
:return: null
`;
prosperon.c_types.SDL_Window[cell.DOC].safe_area = `Return a rect describing any OS-specific "safe" region for UI, e.g. on iPhone with a notch.
:return: A rect object {x, y, w, h}.
`;
prosperon.c_types.SDL_Window[cell.DOC].bordered = `Enable or disable window borders.
:param flag: True to show borders, false to hide.
:return: None
`;
prosperon.c_types.SDL_Window[cell.DOC].set_icon = `Set the window's icon from an SDL_Surface.
:param surface: An SDL_Surface holding the icon.
:return: None
`;
prosperon.c_types.SDL_Window[cell.DOC].mouse_grab = `Grab or ungrab the mouse for this window (so the pointer won't leave).
:param flag: True to grab mouse input, false to release.
:return: None
`;
prosperon.c_types.SDL_Window[cell.DOC].title = `Get or set the window's title text in the title bar.
:param newTitle: (when setting) A string title.
:return: The current title if getting, or None if setting.
`;
prosperon.c_types.SDL_Window[cell.DOC].size = `Get or set the window's size as [width, height].
:param newSize: (when setting) e.g. [640, 480]
:return: The current [width, height] or None if setting.
`;
//
// SDL_Renderer
//
prosperon.c_types.SDL_Renderer[cell.DOC] = {}
prosperon.c_types.SDL_Renderer[cell.DOC][cell.DOC] = `A 2D rendering context using the SDL renderer API. Freed automatically.
`;
prosperon.c_types.SDL_Renderer[cell.DOC].draw_color = `Set the render draw color for subsequent primitive calls (rect, line, etc.).
:param color: [r, g, b, a] in 0..1.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].present = `Display whatever has been rendered (swap buffers). Must be called each frame.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].clear = `Clear the current render target with the renderer's draw color.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].rect = `Draw one or more outlines of rectangles.
:param rectOrArray: A single rect {x,y,w,h} or an array of rects.
:param color: Optional [r,g,b,a]. If provided, overrides current draw color.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].fillrect = `Fill one or more rectangles with the renderer's current color or an optional override.
:param rectOrArray: A single rect {x,y,w,h} or an array of rects.
:param color: Optional [r,g,b,a].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].line = `Draw a sequence of lines connecting points in an array.
:param points: An array of [x,y] points. Lines connect consecutive points.
:param color: Optional [r,g,b,a].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].point = `Draw a list of points (pixels).
:param points: An array of [x,y] positions.
:param color: Optional [r,g,b,a].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].load_texture = `Create an SDL_Texture from a given SDL_Surface for use with this renderer.
:param surface: An SDL_Surface.
:return: An SDL_Texture object.
`;
prosperon.c_types.SDL_Renderer[cell.DOC].texture = `Draw a texture onto the render target.
:param tex: The SDL_Texture to draw.
:param dstRect: The destination rect {x, y, w, h}.
:param srcRect: Optional portion of the texture to draw {x, y, w, h}.
:param color: Optional color mod [r,g,b,a].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].slice9 = `Draw a texture with 9-slice scaling. The argument includes edges {l, r, t, b}
for the corners/borders that remain unscaled. The rest is tiled or stretched.
:param tex: The SDL_Texture.
:param dstRect: Destination region {x, y, w, h}.
:param edges: {l, r, t, b} for corner sizes in pixels.
:param srcRect: Optional portion in the texture.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].tile = `Tile a texture repeatedly within the specified region. Optionally use a srcRect.
:param tex: The SDL_Texture to tile.
:param dstRect: The region to fill {x, y, w, h}.
:param srcRect: Optional portion of texture.
:param scale: A float scale factor for each tile.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].get_image = `Read back the rendered pixels into a new SDL_Surface. If rect is null, capture entire output.
:param rect: Optional {x,y,w,h}.
:return: An SDL_Surface with the requested region's pixels.
`;
prosperon.c_types.SDL_Renderer[cell.DOC].fasttext = `Draw debug text using an internal fast path. Typically used for quick debugging overlays.
:param text: The string to draw.
:param pos: The [x, y] position to draw text.
:param color: Optional [r,g,b,a].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].geometry = `Render custom geometry from a mesh object {pos, uv, color, indices, count} with an optional texture.
:param texture: The SDL_Texture or null.
:param meshObject: The geometry data with typed arrays.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].scale = `Set a scaling factor for all subsequent rendering on this renderer.
:param scaleVec2: [sx, sy] scaling factors.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].logical_size = `Set a "logical" size that the renderer will scale to.
For example, (320, 240) can auto-scale up to the window resolution.
:param size: [width, height].
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].viewport = `Set the clipping viewport for rendering. Pass null to use the full render target.
:param rect: {x, y, w, h}, or null.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].clip = `Set or clear the clipping rectangle for drawing. Pass null to clear.
:param rect: {x, y, w, h} or null.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].vsync = `Enable or disable vertical sync. This may have no effect depending on the driver.
:param flag: True or false.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].coords = `Convert window coordinates to this renderer's coordinate space.
:param pos: [x, y] in window space.
:return: [x, y] in renderer coordinate space.
`;
prosperon.c_types.SDL_Renderer[cell.DOC].camera = `Set up a basic 2D camera matrix from a given transform. If 'centered' is true,
the origin is the center of the viewport, else top-left.
:param cameraTransform: The transform whose pos is used.
:param centered: Boolean true or false.
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].get_viewport = `Return the current viewport rect.
:return: {x, y, w, h}
`;
prosperon.c_types.SDL_Renderer[cell.DOC].screen2world = `Convert a screen coordinate to world space based on the current camera transform.
:param pos: [x, y] screen coords
:return: [wx, wy] in world space
`;
prosperon.c_types.SDL_Renderer[cell.DOC].target = `Set or clear the current render target texture. Pass null to reset to the default/window.
:param texture: An SDL_Texture or null
:return: None
`;
prosperon.c_types.SDL_Renderer[cell.DOC].make_sprite_mesh = `Generate a mesh from an array of sprite objects, combining their positions, UVs,
and colors into a single geometry block.
:param sprites: An array of sprite-like objects.
:return: A 'mesh' object with pos, uv, color, indices, etc.
`;
//
// SDL_Texture
//
prosperon.c_types.SDL_Texture[cell.DOC] = {}
prosperon.c_types.SDL_Texture[cell.DOC][cell.DOC] = `A 2D GPU-accelerated texture for rendering with SDL_Renderer. Freed automatically.
`;
prosperon.c_types.SDL_Texture[cell.DOC].mode = `Set texture scale mode or filtering mode (nearest/linear).
:param mode: A string or numeric mode to set (e.g., 'linear').
:return: None
`;
//
// SDL_Surface
//
prosperon.c_types.SDL_Surface[cell.DOC] = {}
prosperon.c_types.SDL_Surface[cell.DOC][cell.DOC] = `A software (CPU) image in memory. Freed when references vanish. Typically converted
to SDL_Texture for drawing, or used as raw pixel data.
`;
prosperon.c_types.SDL_Surface[cell.DOC].blit = `Blit (copy) another surface onto this surface, scaling if needed.
:param dstRect: Destination {x, y, w, h}
:param srcSurface: The source SDL_Surface
:param srcRect: {x, y, w, h} portion from source
:return: None
`;
prosperon.c_types.SDL_Surface[cell.DOC].scale = `Return a new SDL_Surface scaled to [width, height] using linear filtering.
:param newSize: [width, height]
:return: A new SDL_Surface with the scaled result.
`;
prosperon.c_types.SDL_Surface[cell.DOC].fill = `Fill the entire surface with a single color.
:param color: [r, g, b, a] in 0..1
:return: None
`;
prosperon.c_types.SDL_Surface[cell.DOC].rect = `Fill a sub-rectangle of the surface with a color.
:param rect: {x, y, w, h}
:param color: [r, g, b, a]
:return: None
`;
prosperon.c_types.SDL_Surface[cell.DOC].dup = `Make a copy of this surface in RGBA format.
:return: A new SDL_Surface copy.
`;
//
// SDL_GPUDevice
//
prosperon.c_types.SDL_GPUDevice[cell.DOC] = {}
prosperon.c_types.SDL_GPUDevice[cell.DOC][cell.DOC] = `A handle for low-level GPU operations via SDL GPU. Freed on GC.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].claim_window = `Claim an existing SDL_Window so this GPU device can render to it.
:param window: The SDL_Window to attach.
:return: None
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].make_pipeline = `Create a new graphics pipeline from a descriptor object specifying shaders,
blend states, vertex format, etc.
:param pipelineDesc: An object containing pipeline fields (vertexShader, blend, etc.).
:return: A SDL_GPUGraphicsPipeline handle.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].compute_pipeline = `Create a compute pipeline from a descriptor (shader code, threadgroup sizes, etc.).
:param desc: An object with shader code, thread counts, etc.
:return: SDL_GPUComputePipeline handle.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].set_swapchain = `Specify how the swapchain (final rendered image) is composed, e.g. 'sdr', 'hdr',
and present mode like 'vsync' or 'immediate'.
:param composition: E.g. 'sdr', 'linear', or 'hdr'.
:param presentMode: E.g. 'vsync', 'immediate', 'mailbox'.
:return: None
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].sort_sprite = `A comparator function used for sorting sprite objects by layer, y, and texture.
Usually used internally.
:param a: A sprite object.
:param b: Another sprite object.
:return: <0, 0, or >0 for sort ordering.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].make_sampler = `Create a sampler object specifying filtering, wrapping, anisotropy, etc.
:param samplerDesc: An object with min_filter, mag_filter, etc.
:return: SDL_GPUSampler handle.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].load_texture = `Upload an SDL_Surface into a GPU texture, optionally compressing with DXT. Freed automatically.
:param surface: An SDL_Surface.
:param compressionLevel: 0=none, 1=DXT1 or DXT5, 2=high quality, etc.
:return: SDL_GPUTexture
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].texture = `Create a GPU texture with the specified format usage.
:param desc: Object with {width, height, layers, type, format, usage, etc.}
:return: SDL_GPUTexture
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].make_quad = `Return a simple 2-triangle quad geometry covering [0,1]x[0,1].
Useful for post-processing passes.
:return: A mesh {pos, uv, color, indices}.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].driver = `Return the name of the underlying GPU driver in use (e.g. 'OpenGL').
:return: A string with driver name.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].make_shader = `Compile raw shader code (vertex or fragment) in e.g. SPIR-V, MSL, or DXIL format.
:param desc: {code:ArrayBuffer, stage:'vertex'|'fragment', format:'spv'|..., entrypoint:'main', ...}
:return: SDL_GPUShader object
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].acquire_cmd_buffer = `Obtain a new command buffer for recording GPU commands. Must be submitted or canceled.
:return: SDL_GPUCommandBuffer handle
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].upload = `Upload CPU data into a list of GPU buffers, optionally reusing or returning a
transfer buffer. Typically you provide (cmdBuf, arrayOfTypedArrays, [transferBuffer]).
:param cmdBuffer: The command buffer in which to record copy commands.
:param buffers: An array of typed-array data to upload, each must have a 'gpu' property or so.
:param transferBuffer: Optional existing GPU transfer buffer to reuse.
:return: The transfer buffer used or newly created.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].wait_for_fences = `Wait on an array of GPU fence objects, optionally requiring all or any.
:param fences: An array of SDL_GPUFence objects.
:param waitAll: Boolean, true to wait for all fences, false for any.
:return: True if fences signaled, false on timeout or error.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].query_fence = `Check if the given fence has been signaled yet. Non-blocking.
:param fence: SDL_GPUFence handle
:return: True if signaled, false if still pending
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].shader_format = `Return an array of supported GPU shader binary formats (like 'spv', 'dxbc', etc.).
:return: Array of strings naming supported formats.
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].slice9 = `Generate a 9-slice tiling geometry in one shot. For advanced usage with GPU pipeline.
:param texture: An SDL_GPUTexture
:param dstRect: The rectangle {x, y, w, h}
:param edges: {l, r, t, b} edge sizes
:return: A mesh object
`;
prosperon.c_types.SDL_GPUDevice[cell.DOC].tile = `Generate geometry to tile a texture portion inside a dest rect.
Often used for repeating backgrounds.
:param texture: The SDL_GPUTexture
:param srcRect: The portion to tile in pixels
:param dstRect: Where to fill
:param tileInfo: e.g. {repeat_x:true, repeat_y:true}
:return: A mesh object
`;
//
// SDL_GPUCommandBuffer
//
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC] = {}
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC][cell.DOC] = `A command buffer that accumulates rendering, copy, and compute operations. Freed after submission or GC.
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].render_pass = `Begin a render pass with color/depth attachments. Provide an object with
'color_targets' and optional 'depth_stencil'. Returns an SDL_GPURenderPass handle.
:param passDesc: {color_targets:[...], depth_stencil:...}
:return: SDL_GPURenderPass
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].compute_pass = `Begin a compute pass reading/writing given arrays of textures and buffers.
:param storageTextures: array of read/write textures
:param storageBuffers: array of read/write buffers
:return: SDL_GPUComputePass
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].swapchain_pass = `Begin a render pass that directly targets the swapchain (the window). Clears
with the specified color.
:param clearColor: [r,g,b,a]
:return: SDL_GPURenderPass
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].acquire_swapchain = `Acquire the current swapchain texture from the window. Internal usage.
:return: SDL_GPUTexture handle
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].bind_vertex_buffer = `Bind a GPU buffer as the vertex buffer at a given slot.
:param slot: Integer slot index.
:param buffer: The SDL_GPUBuffer.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].bind_index_buffer = `Bind a GPU buffer as the index buffer (16-bit or 32-bit).
:param buffer: The SDL_GPUBuffer.
:param offset: Optional offset in bytes.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].bind_fragment_sampler = `Bind a texture+sampler pair to a particular fragment shader slot.
:param slot: Index of the sampler binding.
:param texture: The SDL_GPUTexture
:param sampler: The SDL_GPUSampler
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].push_vertex_uniform_data = `Push raw data to a vertex shader uniform block.
:param slot: The uniform buffer slot.
:param data: An ArrayBuffer with the data to upload.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].push_fragment_uniform_data = `Push raw data to a fragment shader uniform block.
:param slot: The uniform buffer slot index.
:param data: An ArrayBuffer with uniform data.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].push_compute_uniform_data = `Push raw data to a compute shader uniform buffer.
:param slot: The uniform buffer slot.
:param data: An ArrayBuffer with the data.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].submit = `Submit this command buffer to the GPU and return a fence for synchronization.
:return: An SDL_GPUFence
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].cancel = `Cancel (discard) this command buffer without submitting.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].camera = `Write a camera transform (projection/view) to a uniform slot for 3D or 2D usage.
:param cameraTransform: A camera object or transform with .pos, fov, etc.
:param uniformSlot: The integer uniform buffer slot to which data is pushed.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].hud = `Write an orthographic full-screen "HUD" matrix to a uniform slot. Typically used
for 2D overlays.
:param sizeVec2: [width, height] of the viewport area.
:param uniformSlot: The integer uniform buffer slot.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].push_debug_group = `Push a named debug group marker onto the GPU command list (for debuggers/profilers).
:param name: The debug label string.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].pop_debug_group = `Pop the most recent debug group marker.
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].debug_label = `Insert a one-off debug label at the current spot in the command list.
:param label: The debug label string
:return: None
`;
prosperon.c_types.SDL_GPUCommandBuffer[cell.DOC].blit = `Blit one GPU texture to another with optional flip mode, filter, and clear operations.
:param blitDesc: { src:{texture,mip_level, etc}, dst:{texture,...}, load_op, flip, filter, clear_color:[r,g,b,a] }
:return: None
`;
//
// SDL_GPURenderPass
//
prosperon.c_types.SDL_GPURenderPass[cell.DOC] = {}
prosperon.c_types.SDL_GPURenderPass[cell.DOC][cell.DOC] = `A single pass of drawing commands with color/depth attachments. Freed after end() or GC.
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_pipeline = `Bind a previously created graphics pipeline (shaders, states, vertex layouts, etc.).
:param pipeline: The SDL_GPUGraphicsPipeline
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].viewport = `Set the viewport for clipping or scaling draws, in pass-local coordinates.
:param rect: {x,y,w,h}
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].scissor = `Set a scissor rectangle for discarding pixels outside it.
:param rect: {x,y,w,h}
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].draw = `Issue a non-indexed draw call.
:param primitiveType: e.g. SDL_GPU_PRIMITIVETYPE_TRIANGLELIST
:param baseVertex: Starting vertex offset.
:param firstVertex: The first vertex to draw.
:param vertexCount: How many vertices to draw.
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].draw_indexed = `Issue an indexed draw call from the bound index buffer.
:param primitiveType: The primitive type constant.
:param baseVertex: Offset in the vertex buffer.
:param firstIndex: Which index to start from.
:param indexCount: Number of indices to draw.
:param instanceCount: For instanced drawing, or 1 if normal.
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].end = `End this render pass, finalizing the draw operations.
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_index_buffer = `Bind an index buffer inside this pass, possibly overriding the global one.
:param buffer: The SDL_GPUBuffer
:param elementSize16bit: If 2, uses 16-bit indices; if 4, uses 32-bit indices
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_buffers = `Bind multiple vertex buffers at consecutive slots.
:param firstSlot: The starting vertex buffer slot.
:param arrayOfBuffers: An array of GPUBuffer objects
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_samplers = `Bind multiple texture/sampler pairs to either vertex or fragment slots.
:param vertexOrFragment: Boolean, true for vertex stage, false for fragment.
:param firstSlot: The first sampler slot to bind.
:param samplerBindings: An array of {texture, sampler}.
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_storage_buffers = `Bind one or more storage buffers for read/write in the pipeline.
:param firstSlot: Starting buffer slot index.
:param buffers: An array of SDL_GPUBuffer objects.
:return: None
`;
prosperon.c_types.SDL_GPURenderPass[cell.DOC].bind_storage_textures = `Bind one or more storage textures for read/write in the pipeline.
:param firstSlot: Starting texture slot index.
:param textures: An array of SDL_GPUTexture objects.
:return: None
`;
//
// SDL_GPUComputePass
//
prosperon.c_types.SDL_GPUComputePass[cell.DOC] = {}
prosperon.c_types.SDL_GPUComputePass[cell.DOC][cell.DOC] = `A compute pass for dispatching compute pipelines. Freed after end() or GC.
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].dispatch = `Dispatch the compute pipeline with the specified threadgroup counts.
:param x: Number of groups in X dimension
:param y: Number of groups in Y dimension
:param z: Number of groups in Z dimension
:return: None
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].end = `End this compute pass.
:return: None
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].pipeline = `Bind a compute pipeline in this pass.
:param computePipeline: The SDL_GPUComputePipeline
:return: None
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].samplers = `Bind a set of texture/sampler pairs for compute usage.
:param arrayOfSamplerBindings: e.g. [ {texture, sampler}, ...]
:param firstSlot: The starting sampler slot.
:return: None
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].storage_buffers = `Bind an array of storage buffers for the compute shader.
:param arrayOfBuffers: The buffers
:param firstSlot: Starting binding slot.
:return: None
`;
prosperon.c_types.SDL_GPUComputePass[cell.DOC].storage_textures = `Bind an array of storage textures for the compute shader.
:param arrayOfTextures: The textures
:param firstSlot: Starting binding slot
:return: None
`;
//
// SDL_GPUCopyPass
//
prosperon.c_types.SDL_GPUCopyPass[cell.DOC] = {}
prosperon.c_types.SDL_GPUCopyPass[cell.DOC][cell.DOC] = `A pass for CPU<->GPU or GPU<->GPU copy operations. No direct JS API besides internal usage.
`;
//
// SDL_GPUFence
//
prosperon.c_types.SDL_GPUFence[cell.DOC] = {}
prosperon.c_types.SDL_GPUFence[cell.DOC][cell.DOC] = `A GPU fence for synchronization. Created upon commandBuffer.submit().
Wait or query it with device.wait_for_fences or device.query_fence.
`;
//
// SDL_GPUTransferBuffer
//
prosperon.c_types.SDL_GPUTransferBuffer[cell.DOC] = {}
prosperon.c_types.SDL_GPUTransferBuffer[cell.DOC][cell.DOC] = `A staging buffer used for copying data to or from GPU buffers/textures. Typically
allocated/used internally by device.upload(...).
`;
//
// SDL_GPUShader
//
prosperon.c_types.SDL_GPUShader[cell.DOC] = {}
prosperon.c_types.SDL_GPUShader[cell.DOC][cell.DOC] = `A single compiled shader (vertex or fragment) in a GPU-friendly format
(e.g., SPIR-V, MSL). Combined into a pipeline for drawing.
`;
//
// SDL_GPUSampler
//
prosperon.c_types.SDL_GPUSampler[cell.DOC] = {}
prosperon.c_types.SDL_GPUSampler[cell.DOC][cell.DOC] = `Defines how a texture is sampled (filter mode, address mode, anisotropy, compare op, etc.).
`;
//
// SDL_GPUGraphicsPipeline
//
prosperon.c_types.SDL_GPUGraphicsPipeline[cell.DOC] = {}
prosperon.c_types.SDL_GPUGraphicsPipeline[cell.DOC][cell.DOC] = `Encapsulates vertex+fragment shaders, blend/cull states, and vertex attribute layouts.
Created via device.make_pipeline(...).
`;
//
// SDL_GPUComputePipeline
//
prosperon.c_types.SDL_GPUComputePipeline[cell.DOC] = {}
prosperon.c_types.SDL_GPUComputePipeline[cell.DOC][cell.DOC] = `Encapsulates a compute shader program plus associated resource layouts.
Created via device.compute_pipeline(...).
`;
// Document the main prosperon object
prosperon[cell.DOC] = {
doc: `The main prosperon object providing event dispatch, signal handling, and engine management.`,
DOC: `Symbol used to store documentation references on objects.`,
on: `Register a callback function for a given event type. Returns a function to remove the callback.`,
dispatch: `Dispatch an event of the given type, calling all registered callbacks with the provided data.`,
PATH: `Array of directory paths that Prosperon will search to find scripts or modules.`,
c_types: `Prototype objects for all present defined c-types (like sprite, transform, etc)`
}
// Document the actor object/prototype
actor[cell.DOC] = {
doc: `The actor object/prototype, serving as a base for all game actors or entities.`,
spawn: `Create a new actor from a script, optionally applying a config object, then call the new actor's 'awake' method.`,
kill: `Destroy this actor, removing it from the game along with all underlings. Frees resources and triggers garbage if defined.`,
clear: `Remove all child (underling) actors by calling kill on each.`,
delay: `Schedule a function to be called after a specified delay (in seconds) on this actor.`,
toString: `Return the script filename associated with this actor instance.`
}
// Expand console.doc to document the console object and missing methods
console[cell.DOC] = {}
console[cell.DOC][cell.DOC] = `The console object provides various logging, debugging, and output methods.`
console[cell.DOC].spam = `Output a spam-level message for very verbose logging.`
console[cell.DOC].debug = `Output a debug-level message.`
console[cell.DOC].panic = `Output a panic-level message and exit the program.`
console[cell.DOC].assert = `If the condition is false, print an error and panic.`
// Document the Register object
Register[cell.DOC] = {
doc: `Factory for creating and managing event registries (e.g. update, draw, etc.) within Prosperon.`,
add_cb: `Create or retrieve a registry for an event type, exposing a 'register' method for callbacks.`,
pull_registers: `Gather the names of all recognized event methods implemented by an object.`,
register_obj: `Bind an object's event method to the relevant registry. The unregistration handle goes in the actor's timers.`,
check_registers: `Automatically register recognized events (like 'update', 'gui', etc.) on an object.`,
}
use[cell.DOC] = 'Return the value from the provided path to a module.'