Added more javadoc

This commit is contained in:
Willem Cazander 2022-01-31 13:40:01 +01:00
parent c50444e04c
commit 1001234fbb
61 changed files with 96 additions and 50 deletions

View file

@ -30,9 +30,9 @@ import love.distributedrebirth.demo4d.screen.ScreenUnicode4D;
import net.spookygames.gdx.nativefilechooser.NativeFileChooser;
/**
* Main loop render dispatcher and event handling.
*
* @author willemtsade ©Δ 仙上主天
*
*/
public class Demo4DMain extends Game {
private List<String> args;

View file

@ -3,9 +3,9 @@ package love.distributedrebirth.demo4d;
import com.badlogic.gdx.ScreenAdapter;
/**
*
*
* @author willemtsade ©Δ 仙上主天
*
*/
public class Demo4DMainAdapter extends ScreenAdapter {
protected final Demo4DMain main;

View file

@ -4,8 +4,8 @@ import imgui.type.ImBoolean;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public interface ImGuiRenderer {

View file

@ -2,8 +2,8 @@ package love.distributedrebirth.demo4d;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
abstract public class ImGuiRendererMain implements ImGuiRenderer {

View file

@ -11,9 +11,9 @@ import imgui.glfw.ImGuiImplGlfw;
import love.distributedrebirth.numberxd.base2t.T60Sexagesimal;
/**
* Create and shutdown of ImGui and font activations.
*
* @author willemtsade ©Δ 仙上主天
*
*/
public class ImGuiSetup {
public static final ImGuiImplGlfw imGuiImp = new ImGuiImplGlfw();

View file

@ -32,8 +32,8 @@ import love.distributedrebirth.demo4d.Demo4DMainAdapter;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenMatrix4D extends Demo4DMainAdapter {
public Environment environment;

View file

@ -13,8 +13,8 @@ import com.badlogic.gdx.utils.GdxRuntimeException;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class UserColorShader implements Shader {
ShaderProgram program;

View file

@ -9,9 +9,9 @@ import com.badlogic.gdx.audio.Music.OnCompletionListener;
import com.badlogic.gdx.files.FileHandle;
/**
* Manages the background and others songs.
*
* @author willemtsade ©Δ 仙上主天
*
*/
public class MusicManager {

View file

@ -16,8 +16,8 @@ import net.spookygames.gdx.nativefilechooser.NativeFileChooserConfiguration;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class MusicPlayerRenderer extends ImGuiRendererMain {

View file

@ -4,8 +4,8 @@ import com.badlogic.gdx.audio.Music;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class MusicSong {
protected final Music music;

View file

@ -2,8 +2,8 @@ package love.distributedrebirth.demo4d.music;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public enum MusicSongType {
INTRO,

View file

@ -14,8 +14,8 @@ import love.distributedrebirth.numberxd.base2t.facet.BasePart;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class BasePartRenderer extends ImGuiRendererMain {

View file

@ -8,8 +8,8 @@ import love.distributedrebirth.demo4d.ImGuiRendererMain;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class BasicConsoleRenderer extends ImGuiRendererMain {

View file

@ -10,8 +10,8 @@ import love.distributedrebirth.numberxd.Gê̄ldGetậl;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class HebrewWalletRenderer extends ImGuiRendererMain {

View file

@ -7,8 +7,8 @@ import love.distributedrebirth.demo4d.music.MusicSongType;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenCredits extends ScrollScreenAdapter {
private final String creditsText = String.join("\n",

View file

@ -9,8 +9,8 @@ import love.distributedrebirth.demo4d.Demo4DMain;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenDefault extends ScreenAdapter {
private final Demo4DMain main;

View file

@ -6,8 +6,8 @@ import love.distributedrebirth.demo4d.Demo4DMain;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenHelp extends ScrollScreenAdapter {
private final String creditsText = String.join("\n",

View file

@ -11,8 +11,8 @@ import love.distributedrebirth.demo4d.music.MusicSongType;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenIntro extends ScreenAdapter {
private final Demo4DMain main;

View file

@ -7,8 +7,8 @@ import love.distributedrebirth.demo4d.music.MusicSongType;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenIntroMission extends ScrollScreenAdapter {
private final String missionText = String.join("\n",

View file

@ -10,8 +10,8 @@ import love.distributedrebirth.demo4d.Demo4DMainAdapter;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
public class ScreenUnicode4D extends Demo4DMainAdapter {

View file

@ -11,8 +11,8 @@ import love.distributedrebirth.demo4d.Demo4DMainAdapter;
/**
*
* @author willemtsade ©Δ 仙上主天
*
* @author willemtsade ©Δ 仙上主天
*/
abstract public class ScrollScreenAdapter extends Demo4DMainAdapter {
private static final int LINE_HEIGHT = 16;