Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyydotp committed Nov 25, 2020
0 parents commit 4a0957b
Show file tree
Hide file tree
Showing 7 changed files with 303 additions and 0 deletions.
113 changes: 113 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
# User-specific stuff
.idea/

*.iml
*.ipr
*.iws

# IntelliJ
out/

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

target/

pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next

release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
.flattened-pom.xml

# Common working directory
run/
82 changes: 82 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>me.lucyy</groupId>
<artifactId>ProNouns</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>ProNouns</name>

<description>Putting the "pro" in "pronouns".</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>https://lucyy.me</url>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>

<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.9</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
17 changes: 17 additions & 0 deletions src/main/java/me/lucyy/pronouns/ProNouns.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package me.lucyy.pronouns;

import org.bukkit.plugin.java.JavaPlugin;

public final class ProNouns extends JavaPlugin {

@Override
public void onEnable() {
// Plugin startup logic

}

@Override
public void onDisable() {
// Plugin shutdown logic
}
}
46 changes: 46 additions & 0 deletions src/main/java/me/lucyy/pronouns/PronounHandler.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package me.lucyy.pronouns;

import me.lucyy.pronouns.storage.Storage;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;

public class PronounHandler {

private static Storage storage;

private static HashMap<String, PronounSet> SetIndex = new HashMap<>();

static {
SetIndex.put("he/him", new PronounSet("he", "him",
"he's", "his", "his", "himself"));
SetIndex.put("she/her", new PronounSet("she", "her",
"she's", "her", "hers", "herself"));
SetIndex.put("they/them", new PronounSet("they", "them",
"they're", "their", "theirs", "themself"));
}

public void SetStorage(Storage storage) {
this.storage = storage;
}

public static List<String> GetAllPronouns() {
List<String> pronouns = new ArrayList<>();
SetIndex.values().forEach(set -> pronouns.add(set.toString()));
return pronouns;
}

public static PronounSet fromString(String set) {
String[] pronouns = set.split("/");
if ( pronouns.length < 2 ) throw new IllegalArgumentException(set);
if ( SetIndex.containsKey(pronouns[0] + "/" + pronouns[1]) ) return SetIndex.get(set);

if ( pronouns.length != 6 ) throw new IllegalArgumentException(set);

PronounSet newSet = new PronounSet(pronouns[0], pronouns[1], pronouns[2], pronouns[3], pronouns[4], pronouns[5]);
SetIndex.putIfAbsent(newSet.getName(), newSet);
return SetIndex.get(set);
}
}
32 changes: 32 additions & 0 deletions src/main/java/me/lucyy/pronouns/PronounSet.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package me.lucyy.pronouns;

public class PronounSet {
public String Subjective;
public String Objective;
public String Progressive;
public String PossessiveAdjectival;
public String PossessivePronoun;
public String Reflexive;

public static String Capitalise(String input) {
return input.substring(0,1).toUpperCase() + input.substring(1).toLowerCase();
}

public PronounSet(String subjective, String objective, String progressive, String possessiveAdjectival, String possessivePronoun, String reflexive) {
Subjective = subjective;
Objective = objective;
Progressive = progressive;
PossessiveAdjectival = possessiveAdjectival;
PossessivePronoun = possessivePronoun;
Reflexive = reflexive;
}

public String getName() {
return Capitalise(Subjective) + "/" + Capitalise(Objective);
}

@Override
public String toString() {
return Subjective + "/" + Objective + "/" + Progressive + "/" + PossessiveAdjectival + "/" + PossessivePronoun + "/" + Reflexive;
}
}
5 changes: 5 additions & 0 deletions src/main/java/me/lucyy/pronouns/storage/Storage.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package me.lucyy.pronouns.storage;

public interface Storage {
public PronounS
}
8 changes: 8 additions & 0 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: ProNouns
version: ${project.version}
main: me.lucyy.pronouns.ProNouns
api-version: 1.15
depend: [ PlaceholderAPI ]
authors: [ __lucyy ]
description: Putting the "pro" in "pronouns".
website: https://lucyy.me

0 comments on commit 4a0957b

Please sign in to comment.