Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
- Update readme
- Split changelog out into its own file
- Remove silly inclusion of GPL notice in every single source file
- Bump major version to account for removal of AVS2.5 support
  • Loading branch information
ItEndsWithTens committed Jul 16, 2020
1 parent 2abae5e commit f08e252
Show file tree
Hide file tree
Showing 22 changed files with 230 additions and 607 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog
Changes listed according to the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) standard. This project attempts to use [Semantic Versioning](https://semver.org/spec/v2.0.0.html), to the best of its author's ability.

## [Unreleased]
### Added
- Add 64-bit builds
- Add Avisynth+ Linux and macOS support

### Changed
- Build with Avisynth+ header

### Removed
- Remove Avisynth 2.5 support

## [0.3.2] 2013-04-10
### Fixed
- Fix tilesheet processing for interlaced clips

## [0.3.1] 2011-09-21
### Changed
- Recompile to remove SSE/SSE2 requirement and Visual C++ CRT dependency

## [0.3.0] 2011-05-06
### Added
- Add YV12 support
- Add CLUTer palettizing function

### Changed
- Expand lotile/hitile operation to clip-only mode

### Fixed
- Correct braindead inclusion guard mistake in TurnsTile.h
- Fix 'res' option to round values correctly

## [0.2.1] 2011-03-12
### Fixed
- Update auto calc for tile size, now properly accounts for minimum YUY2 width

## [0.2.0] 2011-03-10
### Added
- Add 'levels', 'lotile', 'hitile'
- Add auto calculation of default tile size

### Changed
- Change 'res' behavior to simulate bit depth adjustment

## [0.1.0] 2010-12-24
- Initial release
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/artifacts/build/b

project("TurnsTile" CXX)

set(TURNSTILE_MAJOR 0)
set(TURNSTILE_MINOR 3)
set(TURNSTILE_PATCH 2)
set(TURNSTILE_MAJOR 1)
set(TURNSTILE_MINOR 0)
set(TURNSTILE_PATCH 0)
set(TURNSTILE_VERSION ${TURNSTILE_MAJOR}.${TURNSTILE_MINOR}.${TURNSTILE_PATCH})
set(TURNSTILE_AUTHOR "Rob Martens")
set(TURNSTILE_AUTHOR_EMAIL "<[email protected]>")

string(TIMESTAMP TURNSTILE_YEAR "%Y")

string(TOLOWER "${CMAKE_GENERATOR_PLATFORM}" CMAKE_GENERATOR_PLATFORM_LOWER)
if(CMAKE_GENERATOR_PLATFORM_LOWER STREQUAL "" OR
CMAKE_GENERATOR_PLATFORM_LOWER STREQUAL "x64")
Expand Down Expand Up @@ -310,7 +312,7 @@ if(NOT WIN32)
endif()

install(
FILES README.txt
FILES README.md
DESTINATION .
RENAME ${TURNSTILE_OUTPUT_NAME}.txt
)
Expand Down
159 changes: 159 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@

TurnsTile [![Build Status](https://dev.azure.com/robertmartens0491/TurnsTile/_apis/build/status/ItEndsWithTens.TurnsTile?repoName=ItEndsWithTens%2FTurnsTile&branchName=master)](https://dev.azure.com/robertmartens0491/TurnsTile/_build/latest?definitionId=4&repoName=ItEndsWithTens%2FTurnsTile&branchName=master)
===============

A mosaic and palette effects plugin for [Avisynth](http://www.avisynth.nl).

### Requirements ###
1. Avisynth 2.6 or greater, or Avisynth+
2. [**Windows**] Microsoft's Visual C++ 2019 Redistributable - [x64](https://aka.ms/vs/16/release/VC_redist.x64.exe) - [x86](https://aka.ms/vs/16/release/VC_redist.x86.exe)

http://www.gyroshot.com/turnstile.htm
[email protected]
[@ItEndsWithTens](https://twitter.com/ItEndsWithTens)

### TurnsTile ###

TurnsTile(clip c, clip "tilesheet", int "tilew", int "tileh", int "res",
int "mode", string "levels", int "lotile", int "hitile",
bool "interlaced")

**c** clip
- The input clip, which can be RGB32, RGB24, YUY2, or YV12.

**tilesheet** clip
- Optional; if supplied, tiles will be pulled from this clip, which must be in
the same colorspace as 'c'. Your tilesheet can be a still image or a video.
In the latter case, tiles for a given frame of 'c' will be clipped from the
corresponding frame of 'tilesheet'.

The tiles are numbered left to right, then top to bottom. Using the provided
tilesheets as examples, with 16x16 pixel tiles in a 256x256 pixel image, the
top left tile is number 0, top right is 15, bottom left is 240, and bottom
right is 255. Design your own custom images accordingly, with dark tones at
the top left fading up to lighter ones at the bottom right (first left to
right across a row, then top to bottom one row at a time).

**tilew, tileh** int, default largest size <= 16x16 that fits your input
- If your tiles aren't sixteen by sixteen, define custom values here. Each
must be a factor of the respective clip dimension.

**res** int, default 8
- This acts as the effective bit depth of your output. The range of possible
output values is broken up into 2 ** res steps, and each tile index or pixel
component is rounded accordingly. This is quite an effective technique for
RGB footage, but thanks to the way color is represented in YUV spaces, you
won't be able to lower this too much with YUY2 or YV12 input before things
begin to look strange.

**mode** integer, default 0
- Only works when tilesheet is supplied. This option chooses the component
that will serve as the tile index for a given tile. The possible values are
as follows:

0:
RGB: Average of red, green, and blue values
YUY2: Average of Y1 and Y2 in the current pixel pair
YV12: Average of all four Y values in the 2x2 block

1:
RGB: Blue
YUY2: Y1
YV12: Top left

2:
RGB: Green
YUY2: U
YV12: Top right

3:
RGB: Red
YUY2: Y2
YV12: Bottom left

4:
RGB32: Alpha
RGB24: N/A
YUY2: V
YV12: Bottom right

5:
RGB32: N/A
RGB24: N/A
YUY2: N/A
YV12: U

6:
RGB32: N/A
RGB24: N/A
YUY2: N/A
YV12: V

**levels** string, "pc" or "tv", default "pc"
- Which range to use when selecting tiles. If you'd like to map TV black and
white to the lowest and highest tiles in your tilesheet, respectively, use
"tv" instead of the default "pc".

**lotile, hitile** default 0 and tilecount - 1
- A quick way to limit the tile selection to a given portion of your
tilesheet; if for example you have a sheet with an odd number of tiles, and
some spaces are blank, or if you just want to use a smaller range of values
without having to rebuild your tilesheet by hand, use these. If you don't
use a tilesheet, these will instead control the maximum and minimum
component values.

**interlaced** bool, default false
- Enable for interlaced input. For those unaware, "interlaced" and "field
based" are not the same thing. If a clip is field based, it's more than
likely interlaced, but the reverse isn't true, and there's currently no
completely fool proof way to auto-detect interlaced input.

----

### CLUTer ###
CLUTer(clip c, clip palette, int "paletteframe", bool "interlaced")

**c** clip
- No special restrictions, beyond ensuring that this clip's colorspace
matches that of your palette. RGB32, RGB24, YUY2, and YV12 are supported.

**palette** clip
- Must be the same colorspace as the input clip. Progressive chroma siting is
assumed for YV12 palettes; although 'c' will be treated as interlaced if the
appropriate option is enabled, the palette itself will always be read as if
progressive.

**CAUTION!** It is very, very easy to dramatically slow down the operation
of CLUTer, to such a degree that it may appear to be frozen. The short
version: stick with ~100 or fewer unique colors per palette, or you're in
for a long wait. If you want to use an image as your palette, run it through
TurnsTile first, with big tiles and/or a lowered 'res'.

**paletteframe** int, default 0
- Only one frame is used from any clip you pass in as your palette, so if you
don't want to use the colors of frame 0, set paletteframe accordingly.

**interlaced** bool, default false
- As explained above, the terms "field based" and "interlaced" are not
necessarily synonymous. Reading the proper luma values for a given chroma
sample requires knowing the nature of the input clip, and a user-defined
parameter is the most reliable way to achieve that.

----

### Extras ###

Included in the 'extras' directory is a set of tilesheets meant to serve as a
jumping off point for your own experimentation, along with the AviSynth script
used to generate them. It needs [Gavino's GScript](http://forum.doom9.org/showthread.php?t=147846) to make it work in Avisynth
2.6, but there are no other requirements.

CGApalette.avs was introduced along with CLUTer() in version 0.3.0, and as
stated in the comments is meant to be loaded by AVISource as a sample palette
for that function. Open up the script to find more details.

Lastly, also in the extras folder is a copy of the script version of TurnsTile
0.1.0. Use in Aviysnth 2.6 requires GScript, along with [GRunT](http://forum.doom9.org/showthread.php?t=139337), also by Gavino,
and doesn't run very quickly, to say the least. That barely measurable speed
was the motivation to develop this plugin, and the script is only included
here for educational purposes.
Loading

0 comments on commit f08e252

Please sign in to comment.