#!/usr/bin/env bash

# Personalized filtered report mode configuration for verify_game.sh.
# This is sourced by verify_game.sh and not meant to be run directly.

# These filters are applied before local and verified names are compared.

# Set default region
# If set, this region will be implied for all games missing a region tag
REPORT_DEFAULT_REGION='USA'

# Region tag map for custom local tags
REPORT_REGION_MAP=(
    [J]='Japan'
)

# Strip language tags from verified names
REPORT_LANGUAGE_TAG_PATTERN='\([A-Za-z]{2}(-[A-Za-z0-9]{2,8})?(, ?[A-Za-z]{2}(-[A-Za-z0-9]{2,8})?)*\)'

# Tags to be stripped
REPORT_COMMON_TAG_PATTERNS=(
)

# Strings to strip from local names
REPORT_LOCAL_STRIPS=(
)

# Strings to stip from verified names
REPORT_VERIFIED_STRIPS=(
)

# Regex patterns to strip from verified names
REPORT_VERIFIED_STRIP_PATTERNS=(
)

# Strings to replace in local and verified names, in the format 'FROM|TO'
REPORT_COMMON_NAME_FIXES=(
)

# Strings to replace in local names, in the format 'FROM|TO'
REPORT_LOCAL_NAME_FIXES=(
)

# Strings to replace in verified names, in the format 'FROM|TO'
REPORT_VERIFIED_NAME_FIXES=(
)
