mirror of
https://github.com/fooflington/wordbubbles.git
synced 2025-04-05 10:39:06 +00:00
allow dictionary picking
This commit is contained in:
parent
acd359f2be
commit
6e5eb2b2c5
@ -1,12 +1,31 @@
|
|||||||
<html>
|
<html>
|
||||||
<head><title>Wordbubbles solver</title></head>
|
<head><title>Wordbubbles solver</title></head>
|
||||||
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
|
<%@ page import="uk.org.mafoo.wordbubbles.*" %>
|
||||||
|
<%@ page import="java.io.File" %>
|
||||||
|
<%@ page import="java.util.*" %>
|
||||||
<body>
|
<body>
|
||||||
<h1>Wordbubbles or Boggle solver</h1>
|
<h1>Wordbubbles or Boggle solver</h1>
|
||||||
<h2>Input grid</h2>
|
<h2>Input grid</h2>
|
||||||
<form action="solver.jsp">
|
<form action="solver.jsp">
|
||||||
<input type="radio" name="dictionary" checked>twl06</input><br />
|
<%
|
||||||
|
File directory = new File(application.getRealPath("WEB-INF/dicts"));
|
||||||
|
File[] fList = directory.listFiles();
|
||||||
|
boolean first = true;
|
||||||
|
List<String> filelist = new ArrayList<String>();
|
||||||
|
for (File file : fList) {
|
||||||
|
if(file.getName().matches("^[a-z\\-_]+$")) {
|
||||||
|
filelist.add(file.getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Collections.sort(filelist);
|
||||||
|
for(String file : filelist) {
|
||||||
|
%>
|
||||||
|
<input type="radio" name="dict" value="<%= file %>" <% if(first) { %>checked<%}%>><%= file %></input>
|
||||||
|
<%
|
||||||
|
first = false;
|
||||||
|
}
|
||||||
|
%>
|
||||||
|
<br />
|
||||||
<textarea name="grid" rows="10" cols="10" style="font-family: monospace;">
|
<textarea name="grid" rows="10" cols="10" style="font-family: monospace;">
|
||||||
som e
|
som e
|
||||||
te xt
|
te xt
|
||||||
|
@ -8,7 +8,16 @@
|
|||||||
|
|
||||||
// String dict = request.getParameter("dictionary");
|
// String dict = request.getParameter("dictionary");
|
||||||
// if(dict != "twl06") throw new Exception("failed to get dictionary");
|
// if(dict != "twl06") throw new Exception("failed to get dictionary");
|
||||||
String dict = "/usr/share/dict/twl06";
|
String dict_file = "words";
|
||||||
|
if(request.getParameter("dict") != null) {
|
||||||
|
if(request.getParameter("dict").matches("^[a-z\\-_]+$")) {
|
||||||
|
dict_file = request.getParameter("dict");
|
||||||
|
} else {
|
||||||
|
throw new Exception ("invalict dict paramter");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String dict = application.getRealPath("WEB-INF/dicts") + "/" + dict_file;
|
||||||
|
|
||||||
uk.org.mafoo.wordbubbles.Lexicon words = uk.org.mafoo.wordbubbles.Lexicon.loadLexiconFromFile(dict);
|
uk.org.mafoo.wordbubbles.Lexicon words = uk.org.mafoo.wordbubbles.Lexicon.loadLexiconFromFile(dict);
|
||||||
ArrayList<ArrayList<Character>> grid = new ArrayList<ArrayList<Character>>();
|
ArrayList<ArrayList<Character>> grid = new ArrayList<ArrayList<Character>>();
|
||||||
@ -65,13 +74,18 @@ for ( LinkedHashSet<Cell> w : found ) {
|
|||||||
%>
|
%>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<% if(desired_active) { %> Looking for words of length(s): <%= desired %> <% } %>
|
<% if(desired_active) { %> Looking for words of length(s): <%= desired %> <% } %><br />
|
||||||
<h2>Results</h2>
|
Using dictionary: <%= dict_file %>
|
||||||
|
|
||||||
<ul style="font-family: monospace;">
|
|
||||||
<%
|
<%
|
||||||
List<String> output = new ArrayList<String>(foundwords);
|
List<String> output = new ArrayList<String>(foundwords);
|
||||||
Collections.sort(output);
|
Collections.sort(output);
|
||||||
|
%>
|
||||||
|
|
||||||
|
<h2>Results</h2>
|
||||||
|
Count: <%= output.size() %>
|
||||||
|
<ul style="font-family: monospace;">
|
||||||
|
<%
|
||||||
for (String word : output) { %>
|
for (String word : output) { %>
|
||||||
<li><%= word %></li>
|
<li><%= word %></li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user