### PsychoPy Version
2022.2.4
### What OS are your PsychoPy running on?
Windo…ws 10
### Bug Description
We are facing this major issue with PsychoPy since last 3+ years that it is not able to display any character/string with matras/vowel sign.
### It displays **`कमल`** correctly without any errors but crashes as soon as we add word with matra **`कमाल`**
It works correctly on Pavlovia (online environment) though. I guess because it offloads that task to web-fonts.
### Let me first explain what is a _matra_ :
In Hindi, a "matra" refers to the diacritical marks or vowel signs used in the script. Matras are an integral part of the script to convey accurate pronunciation. Matras do not mean anything on their own and need a "akshara" i.e. consonant to make proper syllable.
**For example:** `म` is (akshara or consonant) and ` ा` is (matra or diacritic denoting vowel). When they combine, it forms a single but composite glyph like `म + ा = मा`
These matras are very interesting and unique to Indian languages. Each matra have its own property and can be displayed all around the akshara/consonant, (` ी at right, ि at left, ै at top, ू at bottom etc.`, there are others too) and can even combine to make a akshara/consonant half. I'm mentioning some more such examples below:
> प + ी = पी (displayed at right)
> प + ि = पि (displayed at left)
> प + ू = पू (displayed at bottom)
> प + ै = पै (displayed at top)
> प + ् + य = प्य (प is displayed only half with combined with ्) as opposed to प + य = पय
PsychoPy in its current form, is not able to display any of the Hindi characters. We currently rely on jsPsych or OpenSesame.
```
C:\Users\XXXXXXXXXXXXXXX\Desktop\codes\PsychopyHindi>python test_by_code.py
pygame 2.1.0 (SDL 2.0.16, Python 3.8.10)
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
File "test_by_code.py", line 10, in <module>
text = psychopy.visual.TextStim(win=win,text=word_to_display)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\visual\text.py", line 227, in __init__
self.setText(text, log=False)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\visual\text.py", line 387, in setText
setAttribute(self, 'text', text, log)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\tools\attributetools.py", line 134, in setAttribute
setattr(self, attrib, value)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\tools\attributetools.py", line 27, in __set__
newValue = self.func(obj, value)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\visual\text.py", line 378, in text
self._setTextShaders(text)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\psychopy\visual\text.py", line 396, in _setTextShaders
self._pygletTextObj = pyglet.text.Label(
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\__init__.py", line 452, in __init__
super(Label, self).__init__(document, x, y, width, height,
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\__init__.py", line 273, in __init__
super(DocumentLabel, self).__init__(document,
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 820, in __init__
self.document = document
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 929, in _set_document
self._init_document()
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 1043, in _init_document
self._update()
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 966, in _update
lines = self._get_lines()
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 942, in _get_lines
glyphs = self._get_glyphs()
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\text\layout.py", line 1085, in _get_glyphs
glyphs.extend(font.get_glyphs(text[start:end]))
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\font\base.py", line 394, in get_glyphs
self.glyphs[c] = glyph_renderer.render(c)
File "C:\Program Portable\PsychoPy\psychopy_2022.2\lib\site-packages\pyglet\font\win32.py", line 432, in render
ord(text), ord(text), byref(abc)):
TypeError: ord() expected a character, but string of length 2 found
3.3274 WARNING Monitor specification not found. Creating a temporary one...
```
### Expected Behaviour
Ideally, it should not crash and should display all the valid glyphs (vowels, consonants, conjuncts) correctly. Some documentation and in-depth discussion about ligature glyphs can be found at following links:
- https://glyphsapp.com/learn/creating-a-devanagari-font
- https://github.com/MicrosoftDocs/typography-issues/issues/973
### Steps to Reproduce
### Reproduce with PsychoPy Builder (any version)
1. Make a simple experiment with just text to display `कमाल`
2. or Download the zipped package from here [display_word.zip](https://github.com/psychopy/psychopy/files/13851329/display_word.zip) here
3. It contains a .psyexp file and three excel files.
4. **stim_en.xlsx** contains words in English (working), **stim_hi.xlsx** contains words in Hindi (will cause program to crash)
5. **stim_hi_working.xlsx** contains words in Hindi without matras (program works as expected)
### Reproduce with PsychoPy Coder (any version)
Here is the code to reproduce the error, just comment/ uncomment relevant lines to see the error
```
import psychopy.visual
import psychopy.event
win = psychopy.visual.Window(size=[400, 400],units="pix",fullscr=False)
#word_to_display = "hello" #displays correctly
#word_to_display = "कमल" #displays correctly, क + म + ल
word_to_display = "कमाल" #displays incorrectly, क + म + ा + ल
text = psychopy.visual.TextStim(win=win,text=word_to_display)
text.draw()
win.flip()
psychopy.event.waitKeys()
win.close()
```
### Additional context
_No response_