Java – Libgdx computeGlyphAdvancesAndPositions does not exist

Libgdx computeGlyphAdvancesAndPositions does not exist… here is a solution to the problem.

Libgdx computeGlyphAdvancesAndPositions does not exist

I animate text in Libgdx. Try to do something similar

font1 = new BitmapFont(Gdx.files.internal("fontLabel/fonty.fnt"), false);
font1.getRegion().getTexture()
        .setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear);
touchPos = new Vector3();

listchar = new TextButton[pause.length()];
advances = new FloatArray();
post = new FloatArray();
font1.computeGlyphAdvancesAndPositions(pause, advances, post);

But computeGlyphAdvancesAndPositions doesn’t quit, what to do?

Edit

I read this blog post which says to use GlyphLayout, but I don’t know how? GlyphLayout did not accept the parameters I wanted to give

I wanted to do something like animation in this video, the old source code is here but as mentioned above, it no longer works because of the part I highlighted.

package com.tntstudio.texteffect;

import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.GL10;
import com.badlogic.gdx.graphics.Texture.TextureFilter;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.math.Interpolation;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.scenes.scene2d.actions.Actions;
import com.badlogic.gdx.scenes.scene2d.ui.TextButton;
import com.badlogic.gdx.scenes.scene2d.ui.TextButton.TextButtonStyle;
import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import com.badlogic.gdx.utils.FloatArray;

public class TECore implements ApplicationListener {
    private Stage stage;
    private BitmapFont font;
    private TextButton[] listchar;
    private FloatArray post, advances;
    private String text;
    private static final float time = 0.5f, delay = 0.2f;
    private static final float x = 200f, y = 200f;

@Override
    public void create() {
        stage = new Stage(800f, 480f, true);
        font = new BitmapFont(Gdx.files.internal("data/texteffect.fnt"));
        font.getRegion().getTexture()
                .setFilter(TextureFilter.Linear, TextureFilter.Linear);
        text = "manh phi libgdx";
        listchar = new TextButton[text.length()];
        advances = new FloatArray();
        post = new FloatArray();
        font.computeGlyphAdvancesAndPositions(text, advances, post);

final TextButtonStyle style = new TextButtonStyle();
        style.font = font;

/*-------- List Text --------*/
        for (int i = 0; i < text.length(); i++) {
            listchar[i] = new TextButton(String.valueOf(text.charAt(i)), style);
            listchar[i].setTransform(true);
            listchar[i].setPosition(x + post.get(i), y);
            listchar[i].setOrigin(advances.get(i) / 2,
                    listchar[i].getHeight() / 4);
            stage.addActor(listchar[i]);
        }

Gdx.input.setInputProcessor(stage);

/*-------- Drop Effect Adapter --------*/
        TextButton drop = new TextButton("drop", style);
        drop.setPosition(0, 10);
        drop.addListener(new ClickListener() {
            @Override
            public void clicked(InputEvent event, float x, float y) {
                dropText();
            }
        });
        stage.addActor(drop);

/*-------- Spin effect Adapter --------*/
        TextButton spin = new TextButton("spin", style);
        spin.setPosition(0, 100f);
        spin.addListener(new ClickListener() {
            @Override
            public void clicked(InputEvent event, float x, float y) {
                spinText();
            }
        });
        stage.addActor(spin);
        /*-------- Appear effect Adapter --------*/
        TextButton appear = new TextButton("appear", style);
        appear.setPosition(0, 300f);
        appear.addListener(new ClickListener() {
            @Override
            public void clicked(InputEvent event, float x, float y) {
                appearText();
            }
        });
        stage.addActor(appear);

}

// ///////////////////////////////////////////////////////////////
     Reset Param of a char in text
    // ///////////////////////////////////////////////////////////////
    private void resetText() {
        for (int i = 0; i < text.length(); i++) {
            listchar[i].setPosition(x + post.get(i), y);
            listchar[i].setOrigin(advances.get(i) / 2,
                    listchar[i].getHeight() / 4);
            listchar[i].setColor(0, 0, 0, 1);
            listchar[i].setScale(1f);
        }
    }

private void dropText() {
        resetText();
        for (int i = 0; i < text.length(); i++) {
            listchar[i].setY(y + 200f);
            listchar[i].setColor(0, 0, 0, 0);
            listchar[i].addAction(Actions.delay(
                    delay * i,
                    Actions.parallel(Actions.alpha(1, time), Actions.moveTo(x
                            + post.get(i), y, time, Interpolation.bounceOut))));
        }
    }

private void spinText() {
        resetText();
        for (int i = 0; i < text.length(); i++) {
            listchar[i].addAction(Actions.delay(delay * i,
                    Actions.rotateBy(360f, time * 5, Interpolation.elastic)));
        }
    }

private void appearText(){
        resetText();
        for (int i=0; i<text.length(); i++){
            listchar[i].setScale(0f);
            listchar[i].setColor(0, 0, 0, 0);
            listchar[i].addAction(Actions.delay(delay*i, Actions.parallel(Actions.alpha(1, time), Actions.scaleTo(1, 1, time, Interpolation.swingOut))));
        }
    }

@Override
    public void dispose() {
    }

@Override
    public void render() {
        Gdx.gl.glClearColor(0, 0, 1, 1);
        Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
        stage.act(Gdx.graphics.getDeltaTime());
        stage.draw();
    }

@Override
    public void resize(int width, int height) {
    }

@Override
    public void pause() {
    }

@Override
    public void resume() {
    }
}

Solution

Since version 1.5.6 libGDX methods BitmapFont.computeGlyphAdvancesAndPositions was removed GlyphLayout .

BitmapFont.computeGlyphAdvancesAndPositions returns 2 arrays containing the progress and position of the characters for the given CharSequence.

To retrieve the same information using GlyphLayout:

  1. Create a GlyphLayout object and set the desired font and text:

    GlyphLayout layout = new GlyphLayout();
    layout.setText(font, text);
    
  2. The provided text will be split into “Run” based on line breaks; Without a newline character, the entire text is stored the first time it runs:

    GlyphRun run = layout.runs.get(0);
    
  3. GlyphRun Contains xAdvances, which is comparable to the advances array returned by BitmapFont.computeGlyphAdvancesAndPositions; The difference is that the first position of the array contains an X offset relative to the plot position, while the actual forward width of the i-th character is in the i-th + 1 array element:

    float startingOffset = run.xAdvances.get(0);
    float ithAdvance = run.xAdvances.get(i + 1);
    
  4. Unfortunately, the

  5. position of individual characters in the text is no longer readily available, but we can get them by adding advances in the preceding characters :

    float[] positions = new float[text.length()];
    for (int i = 0; i < positions.length; i++) {
        if (i == 0) {
             first position is the starting offset
            positions[0] = run.xAdvances.get(0);
        } else {
             current position is the previous position plus its advance
            positions[i] = positions[i - 1] + run.xAdvances.get(i);  
        }         
    }
    

Summary:

  • advances.get(i) is replaced with run.xAdvances.get(i + 1).
  • post.get(i) is replaced with positions[i], as shown earlier (or equivalently).

Related Problems and Solutions