public code v1

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:32:57 +02:00
commit 759a8968a2
4357 changed files with 163763 additions and 0 deletions
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>flintstones.group</groupId>
<artifactId>flintstones.bundles</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>flintstones.helper.debug</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<name>[bundle] Debug</name>
</project>
+45
View File
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>flintstones.helper.debug</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1779484362609</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
@@ -0,0 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Debug
Bundle-SymbolicName: flintstones.helper.debug
Bundle-Version: 1.0.0.qualifier
Automatic-Module-Name: flintstones.helper.debug
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: flintstones.helper.debug
@@ -0,0 +1,4 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.
@@ -0,0 +1,6 @@
package flintstones.helper.debug;
public class DH extends DebugHelper {
}
@@ -0,0 +1,102 @@
package flintstones.helper.debug;
import java.util.Arrays;
import java.util.HashMap;
class DebugHelper {
static DebugHelper instance;
private HashMap<String, Boolean> hiddenTypes = new HashMap<>();
protected DebugHelper() {
}
// Modify output here
private static void _out(String text) {
System.out.println(text);
}
private static void _l() {
System.out.println();
}
private static void _iout(int index, String text) {
_out(index + " -> " + text);
}
public static void hide(String type) {
DebugHelper.getInstance().hiddenTypes.put(type, true);
}
private static boolean isHidden(String type) {
Boolean val = DebugHelper.getInstance().hiddenTypes.get(type);
if (val == null)
return false;
return val;
}
public static DebugHelper getInstance() {
if (instance == null)
instance = new DebugHelper();
return instance;
}
// APIS
public static void out(String text) {
_out(text);
}
public static void out(Object obj) {
String x = obj != null ? obj.toString() : "null";
_out(x);
}
public static void out(String type, String text) {
if (!isHidden(type))
_out(text);
};
public static void l() {
_l();
}
public static void l(int lines) {
for (int i = 0; i < lines; i++)
_l();
}
public static void out(Object[] arr) {
_out(Arrays.toString(arr));
}
public static void out(double[] arr) {
_out(Arrays.toString(arr));
}
public static void out(int[] arr) {
_out(Arrays.toString(arr));
}
public static void out(float[] arr) {
_out(Arrays.toString(arr));
}
public static void out(int index, Object[] arr) {
_iout(index, Arrays.toString(arr));
}
public static void out(int index, double[] arr) {
_iout(index, Arrays.toString(arr));
}
public static void out(int index, int[] arr) {
_iout(index, Arrays.toString(arr));
}
public static void out(int index, float[] arr) {
_iout(index, Arrays.toString(arr));
}
}