From 0cdcc1b0f6f156947dea5f27c1497d1b2611b91f Mon Sep 17 00:00:00 2001 From: 13766800364 <13766800364@qq.com> Date: Thu, 9 Oct 2025 16:07:49 +0800 Subject: [PATCH] Add File --- .../github/drinkjava2/frog/util/EggTool.java | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 history/002_first_eye/src/main/java/com/github/drinkjava2/frog/util/EggTool.java diff --git a/history/002_first_eye/src/main/java/com/github/drinkjava2/frog/util/EggTool.java b/history/002_first_eye/src/main/java/com/github/drinkjava2/frog/util/EggTool.java new file mode 100644 index 0000000..13a1df4 --- /dev/null +++ b/history/002_first_eye/src/main/java/com/github/drinkjava2/frog/util/EggTool.java @@ -0,0 +1,107 @@ +/* + * Copyright 2018 the original author or authors. + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by + * applicable law or agreed to in writing, software distributed under the + * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS + * OF ANY KIND, either express or implied. See the License for the specific + * language governing permissions and limitations under the License. + */ +package com.github.drinkjava2.frog.util; + +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; + +import com.github.drinkjava2.frog.Frog; +import com.github.drinkjava2.frog.egg.Egg; +import com.github.drinkjava2.frog.env.Application; +import com.github.drinkjava2.frog.env.Env; + +/** + * EggTool store public static methods of egg + * + * @author Yong Zhu + * @since 1.0 + */ +public class EggTool { + + /** + * 利用Java串行机制存盘。 能量多(也就是吃的更多,更fat)的Frog下蛋并存盘, 以进行下一伦测试,能量少的Frog被淘汰,没有下蛋的资格。 + */ + public static void layEggs(Env env) { + sortFrogsOrderByEnergyDesc(env); + System.out.print("First frog has " + env.frogs.get(0).cellGroups.length + " cellgroups, energy=" + + env.frogs.get(0).energy); + System.out.print(", Last frog energy=" + env.frogs.get(env.frogs.size() - 1).energy + ", "); + try { + List newEggs = new ArrayList<>(); + for (int i = 0; i < Env.EGG_QTY; i++) + newEggs.add(new Egg(env.frogs.get(i))); + System.out.print("EggCellGroups=" + newEggs.get(0).cellGroups.length + ", "); + + FileOutputStream fo = new FileOutputStream(Application.CLASSPATH + "eggs.ser"); + ObjectOutputStream so = new ObjectOutputStream(fo); + so.writeObject(newEggs); + so.close(); + + env.eggs = newEggs; + System.out + .println("Saved " + env.eggs.size() + " eggs to file '" + Application.CLASSPATH + "eggs.ser" + "'"); + } catch (IOException e) { + System.out.println(e); + } + } + + private static void sortFrogsOrderByEnergyDesc(Env env) { + Collections.sort(env.frogs, new Comparator() { + + public int compare(Frog a, Frog b) { + if (a.energy > b.energy) + return -1; + else if (a.energy == b.energy) + return 0; + else + return 1; + } + }); + } + + public static void deleteEggs() { + FrogFileUtils.deleteFile(Application.CLASSPATH + "eggs.json"); + FrogFileUtils.deleteFile(Application.CLASSPATH + "eggs.ser"); + } + + /** + * 从磁盘读入一批Egg + */ + @SuppressWarnings("unchecked") + public static void loadEggs(Env env) { + boolean errorfound = false; + try { + FileInputStream eggsFile = new FileInputStream(Application.CLASSPATH + "eggs.ser"); + ObjectInputStream eggsInputStream = new ObjectInputStream(eggsFile); + env.eggs = (List) eggsInputStream.readObject(); + System.out.println( + "Loaded " + env.eggs.size() + " eggs from file '" + Application.CLASSPATH + "eggs.ser" + "'."); + eggsInputStream.close(); + } catch (Exception e) { + errorfound = true; + } + if (errorfound) { + System.out.println("Fail to load egg file at path '" + Application.CLASSPATH + "', created " + Env.EGG_QTY + + " new eggs to do test."); + env.eggs = new ArrayList(); + for (int i = 0; i < Env.EGG_QTY; i++) + env.eggs.add(Egg.createBrandNewEgg()); + } + } + +}