Cubitect / cubiomes-viewer

An efficient graphical Minecraft seed finder and map viewer.
GNU General Public License v3.0
1.09k stars 63 forks source link

suggestion: add new search types for text seeds and random seeds #342

Open elenaran opened 3 days ago

elenaran commented 3 days ago

Text seeds would be super easy - just do incremental search from -2^48 to +2^48

Random seeds would also be very easy, since you've already got the nextLong() function in the library, just loop through 0 to 2^48 as inputs into the nextLong() call.

69b69t commented 3 days ago

text seeds would be from -2^31 to 2^31. it is already very easy to do that. as with the "natural" nextlong seeds, sounds like a good idea

On Tue, Nov 5, 2024, 9:39 AM elenaran @.***> wrote:

Text seeds would be super easy - just do incremental search from -2^48 to +2^48

Random seeds would also be very easy, since you've already got the nextLong() function in the library, just loop through 0 to 2^48 as inputs into the nextLong() call.

— Reply to this email directly, view it on GitHub https://github.com/Cubitect/cubiomes-viewer/issues/342, or unsubscribe https://github.com/notifications/unsubscribe-auth/AVRMB4IOTAGBBE56A5MHKITZ7D7DPAVCNFSM6AAAAABRHCRO4KVHI2DSMVQWIX3LMV43ASLTON2WKOZSGYZTMMBYG4YTMOI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

elenaran commented 1 day ago

Submitted a PR

343