#!/usr/pkg/bin/bash
#
# Copyright (c) 2019-2022 Paul Mattes.
# All rights reserved.
# 
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above copyright
#       notice, this list of conditions and the following disclaimer in the
#       documentation and/or other materials provided with the distribution.
#     * Neither the names of Paul Mattes, Jeff Sparkes, GTRC nor their
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
# 
# THIS SOFTWARE IS PROVIDED BY PAUL MATTES "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL PAUL MATTES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# Run x3270 with cheesy automatic font scaling.
#  x3270a [-d] [x3270-options]

# Figure out the pathname of the directory this was run in.
d=`dirname $0`
case "$d" in
    .)	d=`pwd`
	;;
    /*)	;;
    *)	d=`pwd`/$d
esac

if [ "$1" = "-d" ]
then	debug=1
	shift
fi

# Debug echo function.
function decho
{
    [ -n "$debug" ] && echo $*
}

# Figure out the display dpi and the scale relative to 96.
if [ -n "$DPI" ]
then	dpi=$DPI
    	dpi_opt="Xft.dpi: $DPI"
else	dpi=$(xrdb -query | awk '/^Xft\.dpi:/ { print $2 }')
	if [ -z "$dpi" ]
	then	echo >&2 "Display DPI is unknown"
		exit 1
	fi
fi
typeset -i scale
let "scale = ($dpi*100)/96"
decho "display is ${dpi}dpi, scale is $scale"

# 96dpi needs no mods
if [ $scale -eq 100 ]
then	set -x
    	exec $d/x3270 "$@"
fi

# These are hand-tuned.
typeset -i s20
let "s20 = ($scale * 10) / 130"
decho "s20 is $s20"
typeset -i s24
let "s24 = ($scale * 10) / 108"
decho "s24 is $s24"
typeset -i s32
let "s32 = ($scale * 10) / 81"
decho "s32 is $s32"
typeset -i s40
let "s40 = ($scale * 10) / 65"
decho "s40 is $s40"

# x3270 fonts only come in discrete sizes (12, 16, 20, 24, 32).
# Pick something big enough.
if [ $s32 -ge 29 ]
then	efont=3270gt32
elif [ $s32 -ge 23 ]
then	efont=3270gt24
elif [ $s32 -ge 19 ]
then	efont=3270-20
elif [ $s32 -ge 15 ]
then	efont=3270gt16
else	efont=3270
fi
decho "efont is $efont"

f1="x3270*keyPad*large*font: -misc-fixed-medium-r-normal--$s24-*-*-*-*-*-iso8859-1"
f2="x3270*keyPad*small*font: -misc-fixed-medium-r-normal--$s20-*-*-*-*-*-iso8859-1"
f3="x3270*value*font: -misc-fixed-medium-r-normal--$s20-*-*-*-*-*-iso8859-1"
f4="x3270*filename*font: -misc-fixed-medium-r-normal--$s20-*-*-*-*-*-iso8859-1"
f5="x3270*kmPopup*text*font: -misc-fixed-medium-r-normal--$s20-*-*-*-*-*-iso8859-1"
f6="x3270*smallLabel.font: -misc-fixed-medium-r-normal--$s24-*-*-*-*-*-iso8859-1"
f7="x3270*dataLabel.font: -misc-fixed-medium-r-normal--$s40-*-*-*-*-*-iso8859-1"
f8="x3270*dialog*value*font: -misc-fixed-medium-r-normal--$s40-*-*-*-*-*-iso8859-1"
f9="x3270*font: -*-helvetica-bold-r-normal--$s32-*-*-*-p-*-iso8859-1"

set -x
if [ -n "$dpi_opt" ]
then	exec $d/x3270 -xrm "$f1" -xrm "$f2" -xrm "$f3" -xrm "$f4" -xrm "$f5" \
	    -xrm "$f6" -xrm "$f7" -xrm "$f8" -xrm "$f9" \
	    -xrm "$dpi_opt" \
	    -efont $efont "$@"
else	exec $d/x3270 -xrm "$f1" -xrm "$f2" -xrm "$f3" -xrm "$f4" -xrm "$f5" \
	    -xrm "$f6" -xrm "$f7" -xrm "$f8" -xrm "$f9" \
	    -efont $efont "$@"
fi
